diff --git a/descriptions/api.github.com/api.github.com.2022-11-28.json b/descriptions/api.github.com/api.github.com.2022-11-28.json index b7663f168..4651c1823 100644 --- a/descriptions/api.github.com/api.github.com.2022-11-28.json +++ b/descriptions/api.github.com/api.github.com.2022-11-28.json @@ -7908,121 +7908,6 @@ } } }, - "/organizations/{org}/org-properties/values": { - "get": { - "summary": "Get all custom property values for an organization", - "description": "Gets all custom property values that are set for an organization.\n\nThe organization must belong to an enterprise.\n\nAccess requirements:\n- Organization admins\n- OAuth tokens and personal access tokens (classic) with the `read:org` scope\n- Actors with the organization-level \"read custom properties for an organization\" fine-grained permission or above", - "tags": [ - "orgs" - ], - "operationId": "orgs/custom-properties-for-orgs-get-organization-values", - "externalDocs": { - "description": "API method documentation", - "url": "https://docs.github.com/rest/orgs/custom-properties-for-orgs#get-all-custom-property-values-for-an-organization" - }, - "parameters": [ - { - "$ref": "#/components/parameters/org" - } - ], - "responses": { - "200": { - "description": "Response", - "content": { - "application/json": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/custom-property-value" - } - }, - "examples": { - "default": { - "$ref": "#/components/examples/custom-property-values" - } - } - } - } - }, - "403": { - "$ref": "#/components/responses/forbidden" - }, - "404": { - "$ref": "#/components/responses/not_found" - } - }, - "x-github": { - "githubCloudOnly": false, - "enabledForGitHubApps": true, - "category": "orgs", - "subcategory": "custom-properties-for-orgs" - } - }, - "patch": { - "summary": "Create or update custom property values for an organization", - "description": "Create new or update existing custom property values for an organization.\nTo remove a custom property value from an organization, set the property value to `null`.\n\nThe organization must belong to an enterprise.\n\nAccess requirements:\n- Organization admins\n- OAuth tokens and personal access tokens (classic) with the `admin:org` scope\n- Actors with the organization-level \"edit custom properties for an organization\" fine-grained permission", - "tags": [ - "orgs" - ], - "operationId": "orgs/custom-properties-for-orgs-create-or-update-organization-values", - "externalDocs": { - "description": "API method documentation", - "url": "https://docs.github.com/rest/orgs/custom-properties-for-orgs#create-or-update-custom-property-values-for-an-organization" - }, - "parameters": [ - { - "$ref": "#/components/parameters/org" - } - ], - "requestBody": { - "required": true, - "content": { - "application/json": { - "schema": { - "type": "object", - "properties": { - "properties": { - "type": "array", - "description": "A list of custom property names and associated values to apply to the organization.", - "items": { - "$ref": "#/components/schemas/custom-property-value" - } - } - }, - "required": [ - "properties" - ] - }, - "examples": { - "default": { - "$ref": "#/components/examples/create-or-update-custom-properties-values" - } - } - } - } - }, - "responses": { - "204": { - "description": "No Content when custom property values are successfully created or updated" - }, - "403": { - "$ref": "#/components/responses/forbidden" - }, - "404": { - "$ref": "#/components/responses/not_found" - }, - "422": { - "$ref": "#/components/responses/validation_failed" - } - }, - "x-github": { - "githubCloudOnly": false, - "enabledForGitHubApps": true, - "category": "orgs", - "subcategory": "custom-properties-for-orgs" - } - } - }, "/organizations/{org}/settings/billing/budgets": { "get": { "summary": "Get all budgets for an organization", @@ -108427,36 +108312,6 @@ }, "additionalProperties": false }, - "custom-property-value": { - "title": "Custom Property Value", - "description": "Custom property name and associated value", - "type": "object", - "properties": { - "property_name": { - "type": "string", - "description": "The name of the property" - }, - "value": { - "oneOf": [ - { - "type": "string" - }, - { - "type": "array", - "items": { - "type": "string" - } - } - ], - "description": "The value assigned to the property", - "nullable": true - } - }, - "required": [ - "property_name", - "value" - ] - }, "budget": { "type": "object", "properties": { @@ -115160,6 +115015,36 @@ "value_type" ] }, + "custom-property-value": { + "title": "Custom Property Value", + "description": "Custom property name and associated value", + "type": "object", + "properties": { + "property_name": { + "type": "string", + "description": "The name of the property" + }, + "value": { + "oneOf": [ + { + "type": "string" + }, + { + "type": "array", + "items": { + "type": "string" + } + } + ], + "description": "The value assigned to the property", + "nullable": true + } + }, + "required": [ + "property_name", + "value" + ] + }, "org-repo-custom-property-values": { "title": "Organization Repository Custom Property Values", "description": "List of custom property values for a repository", @@ -281773,40 +281658,6 @@ ] } }, - "custom-property-values": { - "value": [ - { - "property_name": "environment", - "value": "production" - }, - { - "property_name": "service", - "value": "web" - }, - { - "property_name": "team", - "value": "octocat" - } - ] - }, - "create-or-update-custom-properties-values": { - "value": { - "properties": [ - { - "property_name": "environment", - "value": "production" - }, - { - "property_name": "service", - "value": "web" - }, - { - "property_name": "team", - "value": "octocat" - } - ] - } - }, "get_all_budgets": { "value": { "budgets": [ @@ -299564,6 +299415,40 @@ } } }, + "custom-property-values": { + "value": [ + { + "property_name": "environment", + "value": "production" + }, + { + "property_name": "service", + "value": "web" + }, + { + "property_name": "team", + "value": "octocat" + } + ] + }, + "create-or-update-custom-properties-values": { + "value": { + "properties": [ + { + "property_name": "environment", + "value": "production" + }, + { + "property_name": "service", + "value": "web" + }, + { + "property_name": "team", + "value": "octocat" + } + ] + } + }, "pull-request": { "value": { "url": "https://api.github.com/repos/octocat/Hello-World/pulls/1347", diff --git a/descriptions/api.github.com/api.github.com.2022-11-28.yaml b/descriptions/api.github.com/api.github.com.2022-11-28.yaml index ccbab471c..912f0836d 100644 --- a/descriptions/api.github.com/api.github.com.2022-11-28.yaml +++ b/descriptions/api.github.com/api.github.com.2022-11-28.yaml @@ -5577,100 +5577,6 @@ paths: enabledForGitHubApps: true category: dependabot subcategory: repository-access - "/organizations/{org}/org-properties/values": - get: - summary: Get all custom property values for an organization - description: |- - Gets all custom property values that are set for an organization. - - The organization must belong to an enterprise. - - Access requirements: - - Organization admins - - OAuth tokens and personal access tokens (classic) with the `read:org` scope - - Actors with the organization-level "read custom properties for an organization" fine-grained permission or above - tags: - - orgs - operationId: orgs/custom-properties-for-orgs-get-organization-values - externalDocs: - description: API method documentation - url: https://docs.github.com/rest/orgs/custom-properties-for-orgs#get-all-custom-property-values-for-an-organization - parameters: - - "$ref": "#/components/parameters/org" - responses: - '200': - description: Response - content: - application/json: - schema: - type: array - items: - "$ref": "#/components/schemas/custom-property-value" - examples: - default: - "$ref": "#/components/examples/custom-property-values" - '403': - "$ref": "#/components/responses/forbidden" - '404': - "$ref": "#/components/responses/not_found" - x-github: - githubCloudOnly: false - enabledForGitHubApps: true - category: orgs - subcategory: custom-properties-for-orgs - patch: - summary: Create or update custom property values for an organization - description: |- - Create new or update existing custom property values for an organization. - To remove a custom property value from an organization, set the property value to `null`. - - The organization must belong to an enterprise. - - Access requirements: - - Organization admins - - OAuth tokens and personal access tokens (classic) with the `admin:org` scope - - Actors with the organization-level "edit custom properties for an organization" fine-grained permission - tags: - - orgs - operationId: orgs/custom-properties-for-orgs-create-or-update-organization-values - externalDocs: - description: API method documentation - url: https://docs.github.com/rest/orgs/custom-properties-for-orgs#create-or-update-custom-property-values-for-an-organization - parameters: - - "$ref": "#/components/parameters/org" - requestBody: - required: true - content: - application/json: - schema: - type: object - properties: - properties: - type: array - description: A list of custom property names and associated values - to apply to the organization. - items: - "$ref": "#/components/schemas/custom-property-value" - required: - - properties - examples: - default: - "$ref": "#/components/examples/create-or-update-custom-properties-values" - responses: - '204': - description: No Content when custom property values are successfully created - or updated - '403': - "$ref": "#/components/responses/forbidden" - '404': - "$ref": "#/components/responses/not_found" - '422': - "$ref": "#/components/responses/validation_failed" - x-github: - githubCloudOnly: false - enabledForGitHubApps: true - category: orgs - subcategory: custom-properties-for-orgs "/organizations/{org}/settings/billing/budgets": get: summary: Get all budgets for an organization @@ -78878,25 +78784,6 @@ components: items: "$ref": "#/components/schemas/nullable-simple-repository" additionalProperties: false - custom-property-value: - title: Custom Property Value - description: Custom property name and associated value - type: object - properties: - property_name: - type: string - description: The name of the property - value: - oneOf: - - type: string - - type: array - items: - type: string - description: The value assigned to the property - nullable: true - required: - - property_name - - value budget: type: object properties: @@ -84290,6 +84177,25 @@ components: description: Who can edit the values of the property required: - value_type + custom-property-value: + title: Custom Property Value + description: Custom property name and associated value + type: object + properties: + property_name: + type: string + description: The name of the property + value: + oneOf: + - type: string + - type: array + items: + type: string + description: The value assigned to the property + nullable: true + required: + - property_name + - value org-repo-custom-property-values: title: Organization Repository Custom Property Values description: List of custom property values for a repository @@ -211006,23 +210912,6 @@ components: teams_url: https://api.github.com/repos/octocat/example-repo/teams trees_url: https://api.github.com/repos/octocat/example-repo/git/trees{/sha} hooks_url: https://api.github.com/repos/octocat/example-repo/hooks - custom-property-values: - value: - - property_name: environment - value: production - - property_name: service - value: web - - property_name: team - value: octocat - create-or-update-custom-properties-values: - value: - properties: - - property_name: environment - value: production - - property_name: service - value: web - - property_name: team - value: octocat get_all_budgets: value: budgets: @@ -226061,6 +225950,23 @@ components: https_error: is_https_eligible: true caa_error: + custom-property-values: + value: + - property_name: environment + value: production + - property_name: service + value: web + - property_name: team + value: octocat + create-or-update-custom-properties-values: + value: + properties: + - property_name: environment + value: production + - property_name: service + value: web + - property_name: team + value: octocat pull-request: value: url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 diff --git a/descriptions/api.github.com/api.github.com.json b/descriptions/api.github.com/api.github.com.json index b7663f168..4651c1823 100644 --- a/descriptions/api.github.com/api.github.com.json +++ b/descriptions/api.github.com/api.github.com.json @@ -7908,121 +7908,6 @@ } } }, - "/organizations/{org}/org-properties/values": { - "get": { - "summary": "Get all custom property values for an organization", - "description": "Gets all custom property values that are set for an organization.\n\nThe organization must belong to an enterprise.\n\nAccess requirements:\n- Organization admins\n- OAuth tokens and personal access tokens (classic) with the `read:org` scope\n- Actors with the organization-level \"read custom properties for an organization\" fine-grained permission or above", - "tags": [ - "orgs" - ], - "operationId": "orgs/custom-properties-for-orgs-get-organization-values", - "externalDocs": { - "description": "API method documentation", - "url": "https://docs.github.com/rest/orgs/custom-properties-for-orgs#get-all-custom-property-values-for-an-organization" - }, - "parameters": [ - { - "$ref": "#/components/parameters/org" - } - ], - "responses": { - "200": { - "description": "Response", - "content": { - "application/json": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/custom-property-value" - } - }, - "examples": { - "default": { - "$ref": "#/components/examples/custom-property-values" - } - } - } - } - }, - "403": { - "$ref": "#/components/responses/forbidden" - }, - "404": { - "$ref": "#/components/responses/not_found" - } - }, - "x-github": { - "githubCloudOnly": false, - "enabledForGitHubApps": true, - "category": "orgs", - "subcategory": "custom-properties-for-orgs" - } - }, - "patch": { - "summary": "Create or update custom property values for an organization", - "description": "Create new or update existing custom property values for an organization.\nTo remove a custom property value from an organization, set the property value to `null`.\n\nThe organization must belong to an enterprise.\n\nAccess requirements:\n- Organization admins\n- OAuth tokens and personal access tokens (classic) with the `admin:org` scope\n- Actors with the organization-level \"edit custom properties for an organization\" fine-grained permission", - "tags": [ - "orgs" - ], - "operationId": "orgs/custom-properties-for-orgs-create-or-update-organization-values", - "externalDocs": { - "description": "API method documentation", - "url": "https://docs.github.com/rest/orgs/custom-properties-for-orgs#create-or-update-custom-property-values-for-an-organization" - }, - "parameters": [ - { - "$ref": "#/components/parameters/org" - } - ], - "requestBody": { - "required": true, - "content": { - "application/json": { - "schema": { - "type": "object", - "properties": { - "properties": { - "type": "array", - "description": "A list of custom property names and associated values to apply to the organization.", - "items": { - "$ref": "#/components/schemas/custom-property-value" - } - } - }, - "required": [ - "properties" - ] - }, - "examples": { - "default": { - "$ref": "#/components/examples/create-or-update-custom-properties-values" - } - } - } - } - }, - "responses": { - "204": { - "description": "No Content when custom property values are successfully created or updated" - }, - "403": { - "$ref": "#/components/responses/forbidden" - }, - "404": { - "$ref": "#/components/responses/not_found" - }, - "422": { - "$ref": "#/components/responses/validation_failed" - } - }, - "x-github": { - "githubCloudOnly": false, - "enabledForGitHubApps": true, - "category": "orgs", - "subcategory": "custom-properties-for-orgs" - } - } - }, "/organizations/{org}/settings/billing/budgets": { "get": { "summary": "Get all budgets for an organization", @@ -108427,36 +108312,6 @@ }, "additionalProperties": false }, - "custom-property-value": { - "title": "Custom Property Value", - "description": "Custom property name and associated value", - "type": "object", - "properties": { - "property_name": { - "type": "string", - "description": "The name of the property" - }, - "value": { - "oneOf": [ - { - "type": "string" - }, - { - "type": "array", - "items": { - "type": "string" - } - } - ], - "description": "The value assigned to the property", - "nullable": true - } - }, - "required": [ - "property_name", - "value" - ] - }, "budget": { "type": "object", "properties": { @@ -115160,6 +115015,36 @@ "value_type" ] }, + "custom-property-value": { + "title": "Custom Property Value", + "description": "Custom property name and associated value", + "type": "object", + "properties": { + "property_name": { + "type": "string", + "description": "The name of the property" + }, + "value": { + "oneOf": [ + { + "type": "string" + }, + { + "type": "array", + "items": { + "type": "string" + } + } + ], + "description": "The value assigned to the property", + "nullable": true + } + }, + "required": [ + "property_name", + "value" + ] + }, "org-repo-custom-property-values": { "title": "Organization Repository Custom Property Values", "description": "List of custom property values for a repository", @@ -281773,40 +281658,6 @@ ] } }, - "custom-property-values": { - "value": [ - { - "property_name": "environment", - "value": "production" - }, - { - "property_name": "service", - "value": "web" - }, - { - "property_name": "team", - "value": "octocat" - } - ] - }, - "create-or-update-custom-properties-values": { - "value": { - "properties": [ - { - "property_name": "environment", - "value": "production" - }, - { - "property_name": "service", - "value": "web" - }, - { - "property_name": "team", - "value": "octocat" - } - ] - } - }, "get_all_budgets": { "value": { "budgets": [ @@ -299564,6 +299415,40 @@ } } }, + "custom-property-values": { + "value": [ + { + "property_name": "environment", + "value": "production" + }, + { + "property_name": "service", + "value": "web" + }, + { + "property_name": "team", + "value": "octocat" + } + ] + }, + "create-or-update-custom-properties-values": { + "value": { + "properties": [ + { + "property_name": "environment", + "value": "production" + }, + { + "property_name": "service", + "value": "web" + }, + { + "property_name": "team", + "value": "octocat" + } + ] + } + }, "pull-request": { "value": { "url": "https://api.github.com/repos/octocat/Hello-World/pulls/1347", diff --git a/descriptions/api.github.com/api.github.com.yaml b/descriptions/api.github.com/api.github.com.yaml index ccbab471c..912f0836d 100644 --- a/descriptions/api.github.com/api.github.com.yaml +++ b/descriptions/api.github.com/api.github.com.yaml @@ -5577,100 +5577,6 @@ paths: enabledForGitHubApps: true category: dependabot subcategory: repository-access - "/organizations/{org}/org-properties/values": - get: - summary: Get all custom property values for an organization - description: |- - Gets all custom property values that are set for an organization. - - The organization must belong to an enterprise. - - Access requirements: - - Organization admins - - OAuth tokens and personal access tokens (classic) with the `read:org` scope - - Actors with the organization-level "read custom properties for an organization" fine-grained permission or above - tags: - - orgs - operationId: orgs/custom-properties-for-orgs-get-organization-values - externalDocs: - description: API method documentation - url: https://docs.github.com/rest/orgs/custom-properties-for-orgs#get-all-custom-property-values-for-an-organization - parameters: - - "$ref": "#/components/parameters/org" - responses: - '200': - description: Response - content: - application/json: - schema: - type: array - items: - "$ref": "#/components/schemas/custom-property-value" - examples: - default: - "$ref": "#/components/examples/custom-property-values" - '403': - "$ref": "#/components/responses/forbidden" - '404': - "$ref": "#/components/responses/not_found" - x-github: - githubCloudOnly: false - enabledForGitHubApps: true - category: orgs - subcategory: custom-properties-for-orgs - patch: - summary: Create or update custom property values for an organization - description: |- - Create new or update existing custom property values for an organization. - To remove a custom property value from an organization, set the property value to `null`. - - The organization must belong to an enterprise. - - Access requirements: - - Organization admins - - OAuth tokens and personal access tokens (classic) with the `admin:org` scope - - Actors with the organization-level "edit custom properties for an organization" fine-grained permission - tags: - - orgs - operationId: orgs/custom-properties-for-orgs-create-or-update-organization-values - externalDocs: - description: API method documentation - url: https://docs.github.com/rest/orgs/custom-properties-for-orgs#create-or-update-custom-property-values-for-an-organization - parameters: - - "$ref": "#/components/parameters/org" - requestBody: - required: true - content: - application/json: - schema: - type: object - properties: - properties: - type: array - description: A list of custom property names and associated values - to apply to the organization. - items: - "$ref": "#/components/schemas/custom-property-value" - required: - - properties - examples: - default: - "$ref": "#/components/examples/create-or-update-custom-properties-values" - responses: - '204': - description: No Content when custom property values are successfully created - or updated - '403': - "$ref": "#/components/responses/forbidden" - '404': - "$ref": "#/components/responses/not_found" - '422': - "$ref": "#/components/responses/validation_failed" - x-github: - githubCloudOnly: false - enabledForGitHubApps: true - category: orgs - subcategory: custom-properties-for-orgs "/organizations/{org}/settings/billing/budgets": get: summary: Get all budgets for an organization @@ -78878,25 +78784,6 @@ components: items: "$ref": "#/components/schemas/nullable-simple-repository" additionalProperties: false - custom-property-value: - title: Custom Property Value - description: Custom property name and associated value - type: object - properties: - property_name: - type: string - description: The name of the property - value: - oneOf: - - type: string - - type: array - items: - type: string - description: The value assigned to the property - nullable: true - required: - - property_name - - value budget: type: object properties: @@ -84290,6 +84177,25 @@ components: description: Who can edit the values of the property required: - value_type + custom-property-value: + title: Custom Property Value + description: Custom property name and associated value + type: object + properties: + property_name: + type: string + description: The name of the property + value: + oneOf: + - type: string + - type: array + items: + type: string + description: The value assigned to the property + nullable: true + required: + - property_name + - value org-repo-custom-property-values: title: Organization Repository Custom Property Values description: List of custom property values for a repository @@ -211006,23 +210912,6 @@ components: teams_url: https://api.github.com/repos/octocat/example-repo/teams trees_url: https://api.github.com/repos/octocat/example-repo/git/trees{/sha} hooks_url: https://api.github.com/repos/octocat/example-repo/hooks - custom-property-values: - value: - - property_name: environment - value: production - - property_name: service - value: web - - property_name: team - value: octocat - create-or-update-custom-properties-values: - value: - properties: - - property_name: environment - value: production - - property_name: service - value: web - - property_name: team - value: octocat get_all_budgets: value: budgets: @@ -226061,6 +225950,23 @@ components: https_error: is_https_eligible: true caa_error: + custom-property-values: + value: + - property_name: environment + value: production + - property_name: service + value: web + - property_name: team + value: octocat + create-or-update-custom-properties-values: + value: + properties: + - property_name: environment + value: production + - property_name: service + value: web + - property_name: team + value: octocat pull-request: value: url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 diff --git a/descriptions/api.github.com/dereferenced/api.github.com.2022-11-28.deref.json b/descriptions/api.github.com/dereferenced/api.github.com.2022-11-28.deref.json index c3eed1230..f88151a98 100644 --- a/descriptions/api.github.com/dereferenced/api.github.com.2022-11-28.deref.json +++ b/descriptions/api.github.com/dereferenced/api.github.com.2022-11-28.deref.json @@ -65854,373 +65854,6 @@ } } }, - "/organizations/{org}/org-properties/values": { - "get": { - "summary": "Get all custom property values for an organization", - "description": "Gets all custom property values that are set for an organization.\n\nThe organization must belong to an enterprise.\n\nAccess requirements:\n- Organization admins\n- OAuth tokens and personal access tokens (classic) with the `read:org` scope\n- Actors with the organization-level \"read custom properties for an organization\" fine-grained permission or above", - "tags": [ - "orgs" - ], - "operationId": "orgs/custom-properties-for-orgs-get-organization-values", - "externalDocs": { - "description": "API method documentation", - "url": "https://docs.github.com/rest/orgs/custom-properties-for-orgs#get-all-custom-property-values-for-an-organization" - }, - "parameters": [ - { - "name": "org", - "description": "The organization name. The name is not case sensitive.", - "in": "path", - "required": true, - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "description": "Response", - "content": { - "application/json": { - "schema": { - "type": "array", - "items": { - "title": "Custom Property Value", - "description": "Custom property name and associated value", - "type": "object", - "properties": { - "property_name": { - "type": "string", - "description": "The name of the property" - }, - "value": { - "oneOf": [ - { - "type": "string" - }, - { - "type": "array", - "items": { - "type": "string" - } - } - ], - "description": "The value assigned to the property", - "nullable": true - } - }, - "required": [ - "property_name", - "value" - ] - } - }, - "examples": { - "default": { - "value": [ - { - "property_name": "environment", - "value": "production" - }, - { - "property_name": "service", - "value": "web" - }, - { - "property_name": "team", - "value": "octocat" - } - ] - } - } - } - } - }, - "403": { - "description": "Forbidden", - "content": { - "application/json": { - "schema": { - "title": "Basic Error", - "description": "Basic Error", - "type": "object", - "properties": { - "message": { - "type": "string" - }, - "documentation_url": { - "type": "string" - }, - "url": { - "type": "string" - }, - "status": { - "type": "string" - } - } - } - } - } - }, - "404": { - "description": "Resource not found", - "content": { - "application/json": { - "schema": { - "title": "Basic Error", - "description": "Basic Error", - "type": "object", - "properties": { - "message": { - "type": "string" - }, - "documentation_url": { - "type": "string" - }, - "url": { - "type": "string" - }, - "status": { - "type": "string" - } - } - } - } - } - } - }, - "x-github": { - "githubCloudOnly": false, - "enabledForGitHubApps": true, - "category": "orgs", - "subcategory": "custom-properties-for-orgs" - } - }, - "patch": { - "summary": "Create or update custom property values for an organization", - "description": "Create new or update existing custom property values for an organization.\nTo remove a custom property value from an organization, set the property value to `null`.\n\nThe organization must belong to an enterprise.\n\nAccess requirements:\n- Organization admins\n- OAuth tokens and personal access tokens (classic) with the `admin:org` scope\n- Actors with the organization-level \"edit custom properties for an organization\" fine-grained permission", - "tags": [ - "orgs" - ], - "operationId": "orgs/custom-properties-for-orgs-create-or-update-organization-values", - "externalDocs": { - "description": "API method documentation", - "url": "https://docs.github.com/rest/orgs/custom-properties-for-orgs#create-or-update-custom-property-values-for-an-organization" - }, - "parameters": [ - { - "name": "org", - "description": "The organization name. The name is not case sensitive.", - "in": "path", - "required": true, - "schema": { - "type": "string" - } - } - ], - "requestBody": { - "required": true, - "content": { - "application/json": { - "schema": { - "type": "object", - "properties": { - "properties": { - "type": "array", - "description": "A list of custom property names and associated values to apply to the organization.", - "items": { - "title": "Custom Property Value", - "description": "Custom property name and associated value", - "type": "object", - "properties": { - "property_name": { - "type": "string", - "description": "The name of the property" - }, - "value": { - "oneOf": [ - { - "type": "string" - }, - { - "type": "array", - "items": { - "type": "string" - } - } - ], - "description": "The value assigned to the property", - "nullable": true - } - }, - "required": [ - "property_name", - "value" - ] - } - } - }, - "required": [ - "properties" - ] - }, - "examples": { - "default": { - "value": { - "properties": [ - { - "property_name": "environment", - "value": "production" - }, - { - "property_name": "service", - "value": "web" - }, - { - "property_name": "team", - "value": "octocat" - } - ] - } - } - } - } - } - }, - "responses": { - "204": { - "description": "No Content when custom property values are successfully created or updated" - }, - "403": { - "description": "Forbidden", - "content": { - "application/json": { - "schema": { - "title": "Basic Error", - "description": "Basic Error", - "type": "object", - "properties": { - "message": { - "type": "string" - }, - "documentation_url": { - "type": "string" - }, - "url": { - "type": "string" - }, - "status": { - "type": "string" - } - } - } - } - } - }, - "404": { - "description": "Resource not found", - "content": { - "application/json": { - "schema": { - "title": "Basic Error", - "description": "Basic Error", - "type": "object", - "properties": { - "message": { - "type": "string" - }, - "documentation_url": { - "type": "string" - }, - "url": { - "type": "string" - }, - "status": { - "type": "string" - } - } - } - } - } - }, - "422": { - "description": "Validation failed, or the endpoint has been spammed.", - "content": { - "application/json": { - "schema": { - "title": "Validation Error", - "description": "Validation Error", - "type": "object", - "required": [ - "message", - "documentation_url" - ], - "properties": { - "message": { - "type": "string" - }, - "documentation_url": { - "type": "string" - }, - "errors": { - "type": "array", - "items": { - "type": "object", - "required": [ - "code" - ], - "properties": { - "resource": { - "type": "string" - }, - "field": { - "type": "string" - }, - "message": { - "type": "string" - }, - "code": { - "type": "string" - }, - "index": { - "type": "integer" - }, - "value": { - "oneOf": [ - { - "type": "string", - "nullable": true - }, - { - "type": "integer", - "nullable": true - }, - { - "type": "array", - "nullable": true, - "items": { - "type": "string" - } - } - ] - } - } - } - } - } - } - } - } - } - }, - "x-github": { - "githubCloudOnly": false, - "enabledForGitHubApps": true, - "category": "orgs", - "subcategory": "custom-properties-for-orgs" - } - } - }, "/organizations/{org}/settings/billing/budgets": { "get": { "summary": "Get all budgets for an organization", diff --git a/descriptions/api.github.com/dereferenced/api.github.com.2022-11-28.deref.yaml b/descriptions/api.github.com/dereferenced/api.github.com.2022-11-28.deref.yaml index 8937bd543..cd5e9112e 100644 --- a/descriptions/api.github.com/dereferenced/api.github.com.2022-11-28.deref.yaml +++ b/descriptions/api.github.com/dereferenced/api.github.com.2022-11-28.deref.yaml @@ -988,7 +988,7 @@ paths: description: Validation failed, or the endpoint has been spammed. content: application/json: - schema: &122 + schema: &121 title: Validation Error Simple description: Validation Error Simple type: object @@ -1021,7 +1021,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/global-advisories#get-a-global-security-advisory parameters: - - &639 + - &637 name: ghsa_id description: The GHSA (GitHub Security Advisory) identifier of the advisory. in: path @@ -1577,7 +1577,7 @@ paths: schema: type: integer default: 30 - - &205 + - &204 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 @@ -1593,7 +1593,7 @@ paths: application/json: schema: type: array - items: &206 + items: &205 title: Simple webhook delivery description: Delivery made by a webhook, without request and response information. @@ -1673,7 +1673,7 @@ paths: - installation_id - repository_id examples: - default: &207 + default: &206 value: - id: 12345678 guid: 0b989ba4-242f-11e5-81e1-c7b6966d2516 @@ -1732,7 +1732,7 @@ paths: description: Validation failed, or the endpoint has been spammed. content: application/json: - schema: &121 + schema: &120 title: Validation Error description: Validation Error type: object @@ -1801,7 +1801,7 @@ paths: description: Response content: application/json: - schema: &208 + schema: &207 title: Webhook delivery description: Delivery made by a webhook. type: object @@ -1915,7 +1915,7 @@ paths: - request - response examples: - default: &209 + default: &208 value: id: 12345678 guid: 0b989ba4-242f-11e5-81e1-c7b6966d2516 @@ -5116,7 +5116,7 @@ paths: responses: '202': *39 '422': *7 - '500': &112 + '500': &111 description: Internal Error content: application/json: @@ -7795,7 +7795,7 @@ paths: description: Response content: application/json: - schema: &181 + schema: &180 type: array description: A list of default code security configurations items: @@ -7811,7 +7811,7 @@ paths: default configuration: *47 examples: - default: &182 + default: &181 value: - default_for_new_repos: public configuration: @@ -8143,7 +8143,7 @@ paths: - *40 - *49 responses: - '204': &183 + '204': &182 description: A header with no content is returned. '400': *14 '403': *29 @@ -8270,7 +8270,7 @@ paths: default: value: default_for_new_repos: all - configuration: &180 + configuration: &179 value: id: 1325 target_type: organization @@ -8355,7 +8355,7 @@ paths: application/json: schema: type: array - items: &184 + items: &183 type: object description: Repositories associated with a code security configuration and attachment status @@ -8656,7 +8656,7 @@ paths: summary: Example of code security configuration repositories value: - status: attached - repository: &185 + repository: &184 value: id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -8750,7 +8750,7 @@ paths: url: https://docs.github.com/rest/dependabot/alerts#list-dependabot-alerts-for-an-enterprise parameters: - *40 - - &190 + - &189 name: state in: query description: |- @@ -8759,7 +8759,7 @@ paths: Can be: `auto_dismissed`, `dismissed`, `fixed`, `open` schema: type: string - - &191 + - &190 name: severity in: query description: |- @@ -8768,7 +8768,7 @@ paths: Can be: `low`, `medium`, `high`, `critical` schema: type: string - - &192 + - &191 name: ecosystem in: query description: |- @@ -8777,14 +8777,14 @@ paths: Can be: `composer`, `go`, `maven`, `npm`, `nuget`, `pip`, `pub`, `rubygems`, `rust` schema: type: string - - &193 + - &192 name: package in: query description: A comma-separated list of package names. If specified, only alerts for these packages will be returned. schema: type: string - - &194 + - &193 name: epss_percentage in: query description: |- @@ -8810,7 +8810,7 @@ paths: type: string enum: - patch - - &195 + - &194 name: scope in: query description: The scope of the vulnerable dependency. If specified, only alerts @@ -8820,7 +8820,7 @@ paths: enum: - development - runtime - - &196 + - &195 name: sort in: query description: |- @@ -8846,11 +8846,11 @@ paths: application/json: schema: type: array - items: &197 + items: &196 type: object description: A Dependabot alert. properties: - number: &170 + number: &169 type: integer description: The security alert number. readOnly: true @@ -9115,29 +9115,29 @@ paths: - withdrawn_at additionalProperties: false security_vulnerability: *57 - url: &173 + url: &172 type: string description: The REST API URL of the alert resource. format: uri readOnly: true - html_url: &174 + html_url: &173 type: string description: The GitHub URL of the alert resource. format: uri readOnly: true - created_at: &171 + created_at: &170 type: string description: 'The time that the alert was created in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`.' format: date-time readOnly: true - updated_at: &172 + updated_at: &171 type: string description: 'The time that the alert was last updated in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`.' format: date-time readOnly: true - dismissed_at: &176 + dismissed_at: &175 type: string description: 'The time that the alert was dismissed in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`.' @@ -9167,7 +9167,7 @@ paths: dismissal. nullable: true maxLength: 280 - fixed_at: &175 + fixed_at: &174 type: string description: 'The time that the alert was no longer detected and was considered fixed in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`.' @@ -9238,7 +9238,7 @@ paths: - repository additionalProperties: false examples: - default: &198 + default: &197 value: - number: 2 state: dismissed @@ -10022,7 +10022,7 @@ paths: title: Organization Simple description: A GitHub organization. type: object - properties: &187 + properties: &186 login: type: string example: github @@ -10063,7 +10063,7 @@ paths: type: string example: A great organization nullable: true - required: &188 + required: &187 - login - url - id @@ -10543,7 +10543,7 @@ paths: properties: action: type: string - discussion: &731 + discussion: &729 title: Discussion description: A Discussion in a repository. type: object @@ -11024,7 +11024,7 @@ paths: description: A collection of related issues and pull requests. type: object - properties: &264 + properties: &263 url: type: string format: uri @@ -11094,7 +11094,7 @@ paths: format: date-time example: '2012-10-09T23:39:01Z' nullable: true - required: &265 + required: &264 - closed_issues - creator - description @@ -11173,7 +11173,7 @@ paths: timeline_url: type: string format: uri - type: &227 + type: &226 title: Issue Type description: The type of issue. type: object @@ -11287,7 +11287,7 @@ paths: - hooray - eyes - rocket - sub_issues_summary: &651 + sub_issues_summary: &649 title: Sub-issues Summary type: object properties: @@ -11307,7 +11307,7 @@ paths: type: string format: uri nullable: true - issue_dependencies_summary: &652 + issue_dependencies_summary: &650 title: Issue Dependencies Summary type: object properties: @@ -11326,7 +11326,7 @@ paths: - total_blocking issue_field_values: type: array - items: &653 + items: &651 title: Issue Field Value description: A value assigned to an issue field type: object @@ -12144,7 +12144,7 @@ paths: type: string release: allOf: - - &584 + - &582 title: Release description: A release. type: object @@ -12215,7 +12215,7 @@ paths: author: *4 assets: type: array - items: &585 + items: &583 title: Release Asset description: Data related to a release. type: object @@ -12382,7 +12382,7 @@ paths: created_at: '2022-06-07T07:50:26Z' '304': *37 '403': *29 - '503': &113 + '503': &112 description: Service unavailable content: application/json: @@ -12806,7 +12806,7 @@ paths: url: type: string format: uri - user: &659 + user: &657 title: Public User description: Public User type: object @@ -14676,7 +14676,7 @@ paths: - closed - all default: open - - &230 + - &229 name: labels description: 'A list of comma separated label names. Example: `bug,ui,@high`' in: query @@ -14727,7 +14727,7 @@ paths: type: array items: *75 examples: - default: &231 + default: &230 value: - id: 1 node_id: MDU6SXNzdWUx @@ -16252,11 +16252,11 @@ paths: properties: id: type: string - repository: &152 + repository: &151 title: Minimal Repository description: Minimal Repository type: object - properties: &200 + properties: &199 id: type: integer format: int64 @@ -16606,7 +16606,7 @@ paths: the repository. The keys are the custom property names, and the values are the corresponding custom property values. additionalProperties: true - required: &201 + required: &200 - archive_url - assignees_url - blobs_url @@ -17661,124 +17661,6 @@ paths: enabledForGitHubApps: true category: dependabot subcategory: repository-access - "/organizations/{org}/org-properties/values": - get: - summary: Get all custom property values for an organization - description: |- - Gets all custom property values that are set for an organization. - - The organization must belong to an enterprise. - - Access requirements: - - Organization admins - - OAuth tokens and personal access tokens (classic) with the `read:org` scope - - Actors with the organization-level "read custom properties for an organization" fine-grained permission or above - tags: - - orgs - operationId: orgs/custom-properties-for-orgs-get-organization-values - externalDocs: - description: API method documentation - url: https://docs.github.com/rest/orgs/custom-properties-for-orgs#get-all-custom-property-values-for-an-organization - parameters: - - *68 - responses: - '200': - description: Response - content: - application/json: - schema: - type: array - items: &111 - title: Custom Property Value - description: Custom property name and associated value - type: object - properties: - property_name: - type: string - description: The name of the property - value: - oneOf: - - type: string - - type: array - items: - type: string - description: The value assigned to the property - nullable: true - required: - - property_name - - value - examples: - default: &567 - value: - - property_name: environment - value: production - - property_name: service - value: web - - property_name: team - value: octocat - '403': *29 - '404': *6 - x-github: - githubCloudOnly: false - enabledForGitHubApps: true - category: orgs - subcategory: custom-properties-for-orgs - patch: - summary: Create or update custom property values for an organization - description: |- - Create new or update existing custom property values for an organization. - To remove a custom property value from an organization, set the property value to `null`. - - The organization must belong to an enterprise. - - Access requirements: - - Organization admins - - OAuth tokens and personal access tokens (classic) with the `admin:org` scope - - Actors with the organization-level "edit custom properties for an organization" fine-grained permission - tags: - - orgs - operationId: orgs/custom-properties-for-orgs-create-or-update-organization-values - externalDocs: - description: API method documentation - url: https://docs.github.com/rest/orgs/custom-properties-for-orgs#create-or-update-custom-property-values-for-an-organization - parameters: - - *68 - requestBody: - required: true - content: - application/json: - schema: - type: object - properties: - properties: - type: array - description: A list of custom property names and associated values - to apply to the organization. - items: *111 - required: - - properties - examples: - default: &568 - value: - properties: - - property_name: environment - value: production - - property_name: service - value: web - - property_name: team - value: octocat - responses: - '204': - description: No Content when custom property values are successfully created - or updated - '403': *29 - '404': *6 - '422': *15 - x-github: - githubCloudOnly: false - enabledForGitHubApps: true - category: orgs - subcategory: custom-properties-for-orgs "/organizations/{org}/settings/billing/budgets": get: summary: Get all budgets for an organization @@ -17915,7 +17797,7 @@ paths: alert_recipients: [] '404': *6 '403': *29 - '500': *112 + '500': *111 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -17937,7 +17819,7 @@ paths: url: https://docs.github.com/rest/billing/budgets#get-a-budget-by-id-for-an-organization parameters: - *68 - - &114 + - &113 name: budget_id description: The ID corresponding to the budget. in: path @@ -18030,8 +17912,8 @@ paths: '400': *14 '404': *6 '403': *29 - '500': *112 - '503': *113 + '500': *111 + '503': *112 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -18052,7 +17934,7 @@ paths: url: https://docs.github.com/rest/billing/budgets#update-a-budget-for-an-organization parameters: - *68 - - *114 + - *113 requestBody: required: true content: @@ -18238,7 +18120,7 @@ paths: url: https://docs.github.com/rest/billing/budgets#delete-a-budget-for-an-organization parameters: - *68 - - *114 + - *113 responses: '200': description: Response when deleting a budget @@ -18264,8 +18146,8 @@ paths: '400': *14 '404': *6 '403': *29 - '500': *112 - '503': *113 + '500': *111 + '503': *112 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -18286,7 +18168,7 @@ paths: url: https://docs.github.com/rest/billing/usage#get-billing-premium-request-usage-report-for-an-organization parameters: - *68 - - &115 + - &114 name: year description: If specified, only return results for a single year. The value of `year` is an integer with four digits representing a year. For example, @@ -18295,7 +18177,7 @@ paths: required: false schema: type: integer - - &117 + - &116 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 @@ -18304,7 +18186,7 @@ paths: required: false schema: type: integer - - &116 + - &115 name: day description: If specified, only return results for a single day. The value of `day` is an integer between `1` and `31`. If no `year` or `month` is @@ -18319,14 +18201,14 @@ paths: required: false schema: type: string - - &708 + - &706 name: model description: The model name to query usage for. The name is not case sensitive. in: query required: false schema: type: string - - &118 + - &117 name: product description: The product name to query usage for. The name is not case sensitive. in: query @@ -18442,8 +18324,8 @@ paths: '400': *14 '403': *29 '404': *6 - '500': *112 - '503': *113 + '500': *111 + '503': *112 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -18464,8 +18346,8 @@ paths: url: https://docs.github.com/rest/billing/usage#get-billing-usage-report-for-an-organization parameters: - *68 - - *115 - - &709 + - *114 + - &707 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 @@ -18474,7 +18356,7 @@ paths: required: false schema: type: integer - - *116 + - *115 responses: '200': description: Billing usage report response for an organization @@ -18549,8 +18431,8 @@ paths: repositoryName: github/example '400': *14 '403': *29 - '500': *112 - '503': *113 + '500': *111 + '503': *112 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -18574,18 +18456,18 @@ paths: url: https://docs.github.com/rest/billing/usage#get-billing-usage-summary-for-an-organization parameters: - *68 - - *115 - - *117 + - *114 - *116 - - &710 + - *115 + - &708 name: repository description: The repository name to query for usage in the format owner/repository. in: query required: false schema: type: string - - *118 - - &711 + - *117 + - &709 name: sku description: The SKU to query for usage. in: query @@ -18695,8 +18577,8 @@ paths: netAmount: 8.0 '400': *14 '403': *29 - '500': *112 - '503': *113 + '500': *111 + '503': *112 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -18728,7 +18610,7 @@ paths: description: Response content: application/json: - schema: &119 + schema: &118 title: Organization Full description: Organization Full type: object @@ -19047,7 +18929,7 @@ paths: - updated_at - archived_at examples: - default-response: &120 + default-response: &119 value: login: github id: 1 @@ -19363,17 +19245,17 @@ paths: description: Response content: application/json: - schema: *119 + schema: *118 examples: - default: *120 + default: *119 '422': description: Validation failed content: application/json: schema: oneOf: + - *120 - *121 - - *122 '409': *52 x-github: githubCloudOnly: false @@ -19560,7 +19442,7 @@ paths: type: integer runners: type: array - items: &123 + items: &122 title: GitHub-hosted hosted runner description: A Github-hosted hosted runner. type: object @@ -19614,7 +19496,7 @@ paths: - display_name - source nullable: true - machine_size_details: &131 + machine_size_details: &130 title: Github-owned VM details. description: Provides details of a particular machine spec. type: object @@ -19710,7 +19592,7 @@ paths: - public_ip_enabled - platform examples: - default: &151 + default: &150 value: total_count: 2 runners: @@ -19847,9 +19729,9 @@ paths: description: Response content: application/json: - schema: *123 + schema: *122 examples: - default: &132 + default: &131 value: id: 5 name: My hosted ubuntu runner @@ -19906,7 +19788,7 @@ paths: type: integer images: type: array - items: &124 + items: &123 title: GitHub-hosted runner custom image details description: Provides details of a custom runner image type: object @@ -19957,7 +19839,7 @@ paths: - latest_version - state examples: - default: &126 + default: &125 value: total_count: 2 image_versions: @@ -19989,7 +19871,7 @@ paths: url: https://docs.github.com/rest/actions/hosted-runners#get-a-custom-image-definition-for-github-actions-hosted-runners parameters: - *68 - - &125 + - &124 name: image_definition_id description: Image definition ID of custom image in: path @@ -20001,7 +19883,7 @@ paths: description: Response content: application/json: - schema: *124 + schema: *123 examples: default: value: @@ -20032,7 +19914,7 @@ paths: url: https://docs.github.com/rest/actions/hosted-runners#delete-a-custom-image-from-the-organization parameters: - *68 - - *125 + - *124 responses: '204': description: Response @@ -20055,7 +19937,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/hosted-runners#list-image-versions-of-a-custom-image-for-an-organization parameters: - - *125 + - *124 - *68 responses: '200': @@ -20072,7 +19954,7 @@ paths: type: integer image_versions: type: array - items: &127 + items: &126 title: GitHub-hosted runner custom image version details. description: Provides details of a hosted runner custom image version @@ -20105,7 +19987,7 @@ paths: - created_on - state_details examples: - default: *126 + default: *125 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -20126,8 +20008,8 @@ paths: url: https://docs.github.com/rest/actions/hosted-runners#get-an-image-version-of-a-custom-image-for-github-actions-hosted-runners parameters: - *68 - - *125 - - &128 + - *124 + - &127 name: version description: Version of a custom image in: path @@ -20140,7 +20022,7 @@ paths: description: Response content: application/json: - schema: *127 + schema: *126 examples: default: value: @@ -20167,8 +20049,8 @@ paths: url: https://docs.github.com/rest/actions/hosted-runners#delete-an-image-version-of-custom-image-from-the-organization parameters: - *68 - - *125 - - *128 + - *124 + - *127 responses: '204': description: Response @@ -20205,7 +20087,7 @@ paths: type: integer images: type: array - items: &129 + items: &128 title: GitHub-hosted runner image details. description: Provides details of a hosted runner image type: object @@ -20241,7 +20123,7 @@ paths: - display_name - source examples: - default: &130 + default: &129 value: id: ubuntu-20.04 platform: linux-x64 @@ -20281,9 +20163,9 @@ paths: type: integer images: type: array - items: *129 + items: *128 examples: - default: *130 + default: *129 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -20369,7 +20251,7 @@ paths: type: integer machine_specs: type: array - items: *131 + items: *130 examples: default: value: @@ -20439,7 +20321,7 @@ paths: url: https://docs.github.com/rest/actions/hosted-runners#get-a-github-hosted-runner-for-an-organization parameters: - *68 - - &133 + - &132 name: hosted_runner_id description: Unique identifier of the GitHub-hosted runner. in: path @@ -20451,9 +20333,9 @@ paths: description: Response content: application/json: - schema: *123 + schema: *122 examples: - default: *132 + default: *131 headers: Link: *59 x-github: @@ -20474,7 +20356,7 @@ paths: url: https://docs.github.com/rest/actions/hosted-runners#update-a-github-hosted-runner-for-an-organization parameters: - *68 - - *133 + - *132 requestBody: required: true content: @@ -20517,9 +20399,9 @@ paths: description: Response content: application/json: - schema: *123 + schema: *122 examples: - default: *132 + default: *131 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -20536,15 +20418,15 @@ paths: url: https://docs.github.com/rest/actions/hosted-runners#delete-a-github-hosted-runner-for-an-organization parameters: - *68 - - *133 + - *132 responses: '202': description: Response content: application/json: - schema: *123 + schema: *122 examples: - default: *132 + default: *131 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -20570,7 +20452,7 @@ paths: description: A JSON serialized template for OIDC subject claim customization content: application/json: - schema: &134 + schema: &133 title: Actions OIDC Subject customization description: Actions OIDC Subject customization type: object @@ -20584,7 +20466,7 @@ paths: required: - include_claim_keys examples: - default: &135 + default: &134 value: include_claim_keys: - repo @@ -20611,15 +20493,15 @@ paths: required: true content: application/json: - schema: *134 + schema: *133 examples: - default: *135 + default: *134 responses: '201': description: Empty response content: application/json: - schema: &161 + schema: &160 title: Empty Object description: An object without any properties. type: object @@ -20658,7 +20540,7 @@ paths: schema: type: object properties: - enabled_repositories: &136 + enabled_repositories: &135 type: string description: The policy that controls the repositories in the organization that are allowed to run GitHub Actions. @@ -20671,7 +20553,7 @@ paths: description: The API URL to use to get or set the selected repositories that are allowed to run GitHub Actions, when `enabled_repositories` is set to `selected`. - allowed_actions: &137 + allowed_actions: &136 type: string description: The permissions policy that controls the actions and reusable workflows that are allowed to run. @@ -20684,7 +20566,7 @@ paths: description: The API URL to use to get or set the actions and reusable workflows that are allowed to run, when `allowed_actions` is set to `selected`. - sha_pinning_required: &138 + sha_pinning_required: &137 type: boolean description: Whether actions must be pinned to a full-length commit SHA. @@ -20726,9 +20608,9 @@ paths: schema: type: object properties: - enabled_repositories: *136 - allowed_actions: *137 - sha_pinning_required: *138 + enabled_repositories: *135 + allowed_actions: *136 + sha_pinning_required: *137 required: - enabled_repositories examples: @@ -20847,7 +20729,7 @@ paths: description: Response content: application/json: - schema: &139 + schema: &138 type: object properties: approval_policy: @@ -20892,7 +20774,7 @@ paths: required: true content: application/json: - schema: *139 + schema: *138 examples: default: summary: Set approval policy to first time contributors @@ -20946,7 +20828,7 @@ paths: description: Whether workflows triggered by pull requests from forks require approval from a repository administrator to run. examples: - default: &140 + default: &139 value: run_workflows_from_fork_pull_requests: true send_write_tokens_to_workflows: false @@ -20997,7 +20879,7 @@ paths: description: Whether workflows triggered by pull requests from forks require approval from a repository administrator to run. examples: - default: *140 + default: *139 responses: '204': description: Empty response for successful settings update @@ -21047,7 +20929,7 @@ paths: type: array items: *71 examples: - default: &144 + default: &143 value: total_count: 1 repositories: @@ -21232,7 +21114,7 @@ paths: url: https://docs.github.com/rest/actions/permissions#enable-a-selected-repository-for-github-actions-in-an-organization parameters: - *68 - - &141 + - &140 name: repository_id description: The unique identifier of the repository. in: path @@ -21261,7 +21143,7 @@ paths: url: https://docs.github.com/rest/actions/permissions#disable-a-selected-repository-for-github-actions-in-an-organization parameters: - *68 - - *141 + - *140 responses: '204': description: Response @@ -21290,7 +21172,7 @@ paths: description: Response content: application/json: - schema: &142 + schema: &141 type: object properties: github_owned_allowed: @@ -21312,7 +21194,7 @@ paths: items: type: string examples: - default: &143 + default: &142 value: github_owned_allowed: true verified_allowed: false @@ -21345,9 +21227,9 @@ paths: required: false content: application/json: - schema: *142 + schema: *141 examples: - selected_actions: *143 + selected_actions: *142 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -21479,7 +21361,7 @@ paths: type: array items: *71 examples: - default: *144 + default: *143 '403': *29 '404': *6 x-github: @@ -21548,7 +21430,7 @@ paths: url: https://docs.github.com/rest/actions/permissions#add-a-repository-to-the-list-of-repositories-allowed-to-use-self-hosted-runners-in-an-organization parameters: - *68 - - *141 + - *140 responses: '204': description: No content @@ -21575,7 +21457,7 @@ paths: url: https://docs.github.com/rest/actions/permissions#remove-a-repository-from-the-list-of-repositories-allowed-to-use-self-hosted-runners-in-an-organization parameters: - *68 - - *141 + - *140 responses: '204': description: No content @@ -21612,14 +21494,14 @@ paths: schema: &350 type: object properties: - default_workflow_permissions: &145 + default_workflow_permissions: &144 type: string description: The default workflow permissions granted to the GITHUB_TOKEN when running workflows. enum: - read - write - can_approve_pull_request_reviews: &146 + can_approve_pull_request_reviews: &145 type: boolean description: Whether GitHub Actions can approve pull requests. Enabling this can be a security risk. @@ -21627,7 +21509,7 @@ paths: - default_workflow_permissions - can_approve_pull_request_reviews examples: - default: &147 + default: &146 summary: Give read-only permission, and allow approving PRs. value: default_workflow_permissions: read @@ -21663,10 +21545,10 @@ paths: schema: &351 type: object properties: - default_workflow_permissions: *145 - can_approve_pull_request_reviews: *146 + default_workflow_permissions: *144 + can_approve_pull_request_reviews: *145 examples: - default: *147 + default: *146 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -21711,7 +21593,7 @@ paths: type: number runner_groups: type: array - items: &148 + items: &147 type: object properties: id: @@ -21899,9 +21781,9 @@ paths: description: Response content: application/json: - schema: *148 + schema: *147 examples: - default: &150 + default: &149 value: id: 2 name: octo-runner-group @@ -21937,7 +21819,7 @@ paths: url: https://docs.github.com/rest/actions/self-hosted-runner-groups#get-a-self-hosted-runner-group-for-an-organization parameters: - *68 - - &149 + - &148 name: runner_group_id description: Unique identifier of the self-hosted runner group. in: path @@ -21949,7 +21831,7 @@ paths: description: Response content: application/json: - schema: *148 + schema: *147 examples: default: value: @@ -21986,7 +21868,7 @@ paths: url: https://docs.github.com/rest/actions/self-hosted-runner-groups#update-a-self-hosted-runner-group-for-an-organization parameters: - *68 - - *149 + - *148 requestBody: required: true content: @@ -22040,9 +21922,9 @@ paths: description: Response content: application/json: - schema: *148 + schema: *147 examples: - default: *150 + default: *149 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -22062,7 +21944,7 @@ paths: url: https://docs.github.com/rest/actions/self-hosted-runner-groups#delete-a-self-hosted-runner-group-from-an-organization parameters: - *68 - - *149 + - *148 responses: '204': description: Response @@ -22086,7 +21968,7 @@ paths: url: https://docs.github.com/rest/actions/self-hosted-runner-groups#list-github-hosted-runners-in-a-group-for-an-organization parameters: - *68 - - *149 + - *148 - *17 - *19 responses: @@ -22104,9 +21986,9 @@ paths: type: number runners: type: array - items: *123 + items: *122 examples: - default: *151 + default: *150 headers: Link: *59 x-github: @@ -22129,7 +22011,7 @@ paths: url: https://docs.github.com/rest/actions/self-hosted-runner-groups#list-repository-access-to-a-self-hosted-runner-group-in-an-organization parameters: - *68 - - *149 + - *148 - *19 - *17 responses: @@ -22147,9 +22029,9 @@ paths: type: number repositories: type: array - items: *152 + items: *151 examples: - default: &662 + default: &660 value: total_count: 1 repositories: @@ -22402,7 +22284,7 @@ paths: url: https://docs.github.com/rest/actions/self-hosted-runner-groups#set-repository-access-for-a-self-hosted-runner-group-in-an-organization parameters: - *68 - - *149 + - *148 requestBody: required: true content: @@ -22447,8 +22329,8 @@ paths: url: https://docs.github.com/rest/actions/self-hosted-runner-groups#add-repository-access-to-a-self-hosted-runner-group-in-an-organization parameters: - *68 - - *149 - - *141 + - *148 + - *140 responses: '204': description: Response @@ -22471,8 +22353,8 @@ paths: url: https://docs.github.com/rest/actions/self-hosted-runner-groups#remove-repository-access-to-a-self-hosted-runner-group-in-an-organization parameters: - *68 - - *149 - - *141 + - *148 + - *140 responses: '204': description: Response @@ -22496,7 +22378,7 @@ paths: url: https://docs.github.com/rest/actions/self-hosted-runner-groups#list-self-hosted-runners-in-a-group-for-an-organization parameters: - *68 - - *149 + - *148 - *17 - *19 responses: @@ -22514,7 +22396,7 @@ paths: type: number runners: type: array - items: &154 + items: &153 title: Self hosted runners description: A self hosted runner type: object @@ -22543,7 +22425,7 @@ paths: type: boolean labels: type: array - items: &157 + items: &156 title: Self hosted runner label description: A label for a self hosted runner type: object @@ -22573,7 +22455,7 @@ paths: - busy - labels examples: - default: &155 + default: &154 value: total_count: 2 runners: @@ -22633,7 +22515,7 @@ paths: url: https://docs.github.com/rest/actions/self-hosted-runner-groups#set-self-hosted-runners-in-a-group-for-an-organization parameters: - *68 - - *149 + - *148 requestBody: required: true content: @@ -22678,8 +22560,8 @@ paths: url: https://docs.github.com/rest/actions/self-hosted-runner-groups#add-a-self-hosted-runner-to-a-group-for-an-organization parameters: - *68 - - *149 - - &153 + - *148 + - &152 name: runner_id description: Unique identifier of the self-hosted runner. in: path @@ -22708,8 +22590,8 @@ paths: url: https://docs.github.com/rest/actions/self-hosted-runner-groups#remove-a-self-hosted-runner-from-a-group-for-an-organization parameters: - *68 - - *149 - - *153 + - *148 + - *152 responses: '204': description: Response @@ -22757,9 +22639,9 @@ paths: type: integer runners: type: array - items: *154 + items: *153 examples: - default: *155 + default: *154 headers: Link: *59 x-github: @@ -22912,7 +22794,7 @@ paths: - runner - encoded_jit_config properties: - runner: *154 + runner: *153 encoded_jit_config: type: string description: The base64 encoded runner configuration. @@ -22975,7 +22857,7 @@ paths: description: Response content: application/json: - schema: &156 + schema: &155 title: Authentication Token description: Authentication Token type: object @@ -23050,7 +22932,7 @@ paths: description: Response content: application/json: - schema: *156 + schema: *155 examples: default: &356 value: @@ -23078,13 +22960,13 @@ paths: url: https://docs.github.com/rest/actions/self-hosted-runners#get-a-self-hosted-runner-for-an-organization parameters: - *68 - - *153 + - *152 responses: '200': description: Response content: application/json: - schema: *154 + schema: *153 examples: default: &357 value: @@ -23128,7 +23010,7 @@ paths: url: https://docs.github.com/rest/actions/self-hosted-runners#delete-a-self-hosted-runner-from-an-organization parameters: - *68 - - *153 + - *152 responses: '204': description: Response @@ -23155,9 +23037,9 @@ paths: url: https://docs.github.com/rest/actions/self-hosted-runners#list-labels-for-a-self-hosted-runner-for-an-organization parameters: - *68 - - *153 + - *152 responses: - '200': &158 + '200': &157 description: Response content: application/json: @@ -23171,7 +23053,7 @@ paths: type: integer labels: type: array - items: *157 + items: *156 examples: default: value: @@ -23211,7 +23093,7 @@ paths: url: https://docs.github.com/rest/actions/self-hosted-runners#add-custom-labels-to-a-self-hosted-runner-for-an-organization parameters: - *68 - - *153 + - *152 requestBody: required: true content: @@ -23235,7 +23117,7 @@ paths: - gpu - accelerated responses: - '200': *158 + '200': *157 '404': *6 '422': *7 x-github: @@ -23260,7 +23142,7 @@ paths: url: https://docs.github.com/rest/actions/self-hosted-runners#set-custom-labels-for-a-self-hosted-runner-for-an-organization parameters: - *68 - - *153 + - *152 requestBody: required: true content: @@ -23285,7 +23167,7 @@ paths: - gpu - accelerated responses: - '200': *158 + '200': *157 '404': *6 '422': *7 x-github: @@ -23310,7 +23192,7 @@ paths: url: https://docs.github.com/rest/actions/self-hosted-runners#remove-all-custom-labels-from-a-self-hosted-runner-for-an-organization parameters: - *68 - - *153 + - *152 responses: '200': &358 description: Response @@ -23326,7 +23208,7 @@ paths: type: integer labels: type: array - items: *157 + items: *156 examples: default: value: @@ -23368,7 +23250,7 @@ paths: url: https://docs.github.com/rest/actions/self-hosted-runners#remove-a-custom-label-from-a-self-hosted-runner-for-an-organization parameters: - *68 - - *153 + - *152 - &359 name: name description: The name of a self-hosted runner's custom label. @@ -23377,7 +23259,7 @@ paths: schema: type: string responses: - '200': *158 + '200': *157 '404': *6 '422': *7 x-github: @@ -23420,7 +23302,7 @@ paths: type: integer secrets: type: array - items: &159 + items: &158 title: Actions Secret for an Organization description: Secrets for GitHub Actions for an organization. type: object @@ -23554,7 +23436,7 @@ paths: url: https://docs.github.com/rest/actions/secrets#get-an-organization-secret parameters: - *68 - - &160 + - &159 name: secret_name description: The name of the secret. in: path @@ -23566,7 +23448,7 @@ paths: description: Response content: application/json: - schema: *159 + schema: *158 examples: default: value: @@ -23597,7 +23479,7 @@ paths: url: https://docs.github.com/rest/actions/secrets#create-or-update-an-organization-secret parameters: - *68 - - *160 + - *159 requestBody: required: true content: @@ -23654,7 +23536,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *161 + schema: *160 examples: default: value: @@ -23681,7 +23563,7 @@ paths: url: https://docs.github.com/rest/actions/secrets#delete-an-organization-secret parameters: - *68 - - *160 + - *159 responses: '204': description: Response @@ -23708,7 +23590,7 @@ paths: url: https://docs.github.com/rest/actions/secrets#list-selected-repositories-for-an-organization-secret parameters: - *68 - - *160 + - *159 - *19 - *17 responses: @@ -23726,9 +23608,9 @@ paths: type: integer repositories: type: array - items: *152 + items: *151 examples: - default: &164 + default: &163 value: total_count: 1 repositories: @@ -23821,7 +23703,7 @@ paths: url: https://docs.github.com/rest/actions/secrets#set-selected-repositories-for-an-organization-secret parameters: - *68 - - *160 + - *159 requestBody: required: true content: @@ -23874,7 +23756,7 @@ paths: url: https://docs.github.com/rest/actions/secrets#add-selected-repository-to-an-organization-secret parameters: - *68 - - *160 + - *159 - name: repository_id in: path required: true @@ -23908,7 +23790,7 @@ paths: url: https://docs.github.com/rest/actions/secrets#remove-selected-repository-from-an-organization-secret parameters: - *68 - - *160 + - *159 - name: repository_id in: path required: true @@ -23965,7 +23847,7 @@ paths: type: integer variables: type: array - items: &162 + items: &161 title: Actions Variable for an Organization description: Organization variable for GitHub Actions. type: object @@ -24098,7 +23980,7 @@ paths: description: Response when creating a variable content: application/json: - schema: *161 + schema: *160 examples: default: value: @@ -24124,7 +24006,7 @@ paths: url: https://docs.github.com/rest/actions/variables#get-an-organization-variable parameters: - *68 - - &163 + - &162 name: name description: The name of the variable. in: path @@ -24136,7 +24018,7 @@ paths: description: Response content: application/json: - schema: *162 + schema: *161 examples: default: value: @@ -24167,7 +24049,7 @@ paths: url: https://docs.github.com/rest/actions/variables#update-an-organization-variable parameters: - *68 - - *163 + - *162 requestBody: required: true content: @@ -24230,7 +24112,7 @@ paths: url: https://docs.github.com/rest/actions/variables#delete-an-organization-variable parameters: - *68 - - *163 + - *162 responses: '204': description: Response @@ -24257,7 +24139,7 @@ paths: url: https://docs.github.com/rest/actions/variables#list-selected-repositories-for-an-organization-variable parameters: - *68 - - *163 + - *162 - *19 - *17 responses: @@ -24275,9 +24157,9 @@ paths: type: integer repositories: type: array - items: *152 + items: *151 examples: - default: *164 + default: *163 '409': description: Response when the visibility of the variable is not set to `selected` @@ -24304,7 +24186,7 @@ paths: url: https://docs.github.com/rest/actions/variables#set-selected-repositories-for-an-organization-variable parameters: - *68 - - *163 + - *162 requestBody: required: true content: @@ -24354,7 +24236,7 @@ paths: url: https://docs.github.com/rest/actions/variables#add-selected-repository-to-an-organization-variable parameters: - *68 - - *163 + - *162 - name: repository_id in: path required: true @@ -24389,7 +24271,7 @@ paths: url: https://docs.github.com/rest/actions/variables#remove-selected-repository-from-an-organization-variable parameters: - *68 - - *163 + - *162 - name: repository_id in: path required: true @@ -24531,7 +24413,7 @@ paths: type: integer deployment_records: type: array - items: &165 + items: &164 title: Artifact Deployment Record description: Artifact Metadata Deployment Record type: object @@ -24575,7 +24457,7 @@ paths: with the deployment record. nullable: true examples: - default: &166 + default: &165 value: total_count: 1 deployment_records: @@ -24748,9 +24630,9 @@ paths: type: integer deployment_records: type: array - items: *165 + items: *164 examples: - default: *166 + default: *165 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -24947,9 +24829,9 @@ paths: type: integer deployment_records: type: array - items: *165 + items: *164 examples: - default: *166 + default: *165 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -25078,12 +24960,12 @@ paths: required: - subject_digests examples: - default: &690 + default: &688 value: subject_digests: - sha256:abc123 - sha512:def456 - withPredicateType: &691 + withPredicateType: &689 value: subject_digests: - sha256:abc123 @@ -25141,7 +25023,7 @@ paths: description: The cursor to the previous page. description: Information about the current page. examples: - default: &692 + default: &690 value: attestations_subject_digests: - sha256:abc: @@ -25709,7 +25591,7 @@ paths: description: If specified, only campaigns with this state will be returned. in: query required: false - schema: &167 + schema: &166 title: Campaign state description: Indicates whether a campaign is open or closed type: string @@ -25735,7 +25617,7 @@ paths: application/json: schema: type: array - items: &168 + items: &167 title: Campaign summary description: The campaign metadata and alert stats. type: object @@ -25766,7 +25648,7 @@ paths: team_managers: description: The campaign team managers type: array - items: &189 + items: &188 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -25841,7 +25723,7 @@ paths: description: Groups of organization members that gives permissions on specified repositories. type: object - properties: &242 + properties: &241 id: description: Unique identifier of the team type: integer @@ -25913,7 +25795,7 @@ paths: description: Unique identifier of the enterprise to which this team belongs example: 42 - required: &243 + required: &242 - id - node_id - url @@ -25956,7 +25838,7 @@ paths: type: string format: date-time nullable: true - state: *167 + state: *166 contact_link: description: The contact link of the campaign. type: string @@ -26053,7 +25935,7 @@ paths: headers: Link: *59 '404': *6 - '503': *113 + '503': *112 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -26176,9 +26058,9 @@ paths: description: Response content: application/json: - schema: *168 + schema: *167 examples: - default: &169 + default: &168 value: number: 3 created_at: '2024-02-14T12:29:18Z' @@ -26227,7 +26109,7 @@ paths: schema: *3 '429': description: Too Many Requests - '503': *113 + '503': *112 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -26261,16 +26143,16 @@ paths: description: Response content: application/json: - schema: *168 + schema: *167 examples: - default: *169 + default: *168 '404': *6 '422': description: Unprocessable Entity content: application/json: schema: *3 - '503': *113 + '503': *112 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -26340,7 +26222,7 @@ paths: type: string format: uri nullable: true - state: *167 + state: *166 examples: default: value: @@ -26350,9 +26232,9 @@ paths: description: Response content: application/json: - schema: *168 + schema: *167 examples: - default: *169 + default: *168 '400': description: Bad Request content: @@ -26364,7 +26246,7 @@ paths: content: application/json: schema: *3 - '503': *113 + '503': *112 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -26396,7 +26278,7 @@ paths: '204': description: Deletion successful '404': *6 - '503': *113 + '503': *112 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -26426,7 +26308,7 @@ paths: but not both. in: query required: false - schema: &177 + schema: &176 type: string description: The name of the tool used to generate the code scanning analysis. - &411 @@ -26437,7 +26319,7 @@ paths: or `tool_name`, but not both. in: query required: false - schema: &178 + schema: &177 nullable: true type: string description: The GUID of the tool used to generate the code scanning analysis, @@ -26504,18 +26386,18 @@ paths: items: type: object properties: - number: *170 - created_at: *171 - updated_at: *172 - url: *173 - html_url: *174 + number: *169 + created_at: *170 + updated_at: *171 + url: *172 + html_url: *173 instances_url: &415 type: string description: The REST API URL for fetching the list of instances for an alert. format: uri readOnly: true - state: &179 + state: &178 type: string description: State of a code scanning alert. nullable: true @@ -26523,7 +26405,7 @@ paths: - open - dismissed - fixed - fixed_at: *175 + fixed_at: *174 dismissed_by: title: Simple User description: A GitHub user. @@ -26531,7 +26413,7 @@ paths: properties: *20 required: *21 nullable: true - dismissed_at: *176 + dismissed_at: *175 dismissed_reason: &416 type: string description: "**Required when the state is dismissed.** The @@ -26603,13 +26485,13 @@ paths: tool: &419 type: object properties: - name: *177 + name: *176 version: nullable: true type: string description: The version of the tool used to generate the code scanning analysis. - guid: *178 + guid: *177 most_recent_instance: &420 type: object properties: @@ -26635,7 +26517,7 @@ paths: analysis was executed. Used to distinguish between multiple analyses for the same tool and commit, but performed on different languages or different parts of the code. - state: *179 + state: *178 commit_sha: type: string message: @@ -26931,7 +26813,7 @@ paths: headers: Link: *59 '404': *6 - '503': *113 + '503': *112 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -27285,7 +27167,7 @@ paths: application/json: schema: *47 examples: - default: *180 + default: *179 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -27313,9 +27195,9 @@ paths: description: Response content: application/json: - schema: *181 + schema: *180 examples: - default: *182 + default: *181 '304': *37 '403': *29 '404': *6 @@ -27367,7 +27249,7 @@ paths: - 32 - 91 responses: - '204': *183 + '204': *182 '400': *14 '403': *29 '404': *6 @@ -27402,7 +27284,7 @@ paths: application/json: schema: *47 examples: - default: *180 + default: *179 '304': *37 '403': *29 '404': *6 @@ -27687,7 +27569,7 @@ paths: - *68 - *49 responses: - '204': *183 + '204': *182 '400': *14 '403': *29 '404': *6 @@ -27825,7 +27707,7 @@ paths: default: value: default_for_new_repos: all - configuration: *180 + configuration: *179 '403': *29 '404': *6 x-github: @@ -27878,13 +27760,13 @@ paths: application/json: schema: type: array - items: *184 + items: *183 examples: default: summary: Example of code security configuration repositories value: - status: attached - repository: *185 + repository: *184 '403': *29 '404': *6 x-github: @@ -27924,7 +27806,7 @@ paths: type: integer codespaces: type: array - items: &232 + items: &231 type: object title: Codespace description: A codespace. @@ -27949,7 +27831,7 @@ paths: nullable: true owner: *4 billable_owner: *4 - repository: *152 + repository: *151 machine: type: object title: Codespace machine @@ -28201,7 +28083,7 @@ paths: - pulls_url - recent_folders examples: - default: &233 + default: &232 value: total_count: 3 codespaces: @@ -28611,7 +28493,7 @@ paths: stop_url: https://api.github.com/user/codespaces/monalisa-octocat-hello-world-f8adfad99a/stop recent_folders: [] '304': *37 - '500': *112 + '500': *111 '401': *25 '403': *29 '404': *6 @@ -28677,7 +28559,7 @@ paths: description: Users are neither members nor collaborators of this organization. '404': *6 '422': *15 - '500': *112 + '500': *111 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -28732,7 +28614,7 @@ paths: description: Users are neither members nor collaborators of this organization. '404': *6 '422': *15 - '500': *112 + '500': *111 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -28786,7 +28668,7 @@ paths: description: Users are neither members nor collaborators of this organization. '404': *6 '422': *15 - '500': *112 + '500': *111 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -28825,7 +28707,7 @@ paths: type: integer secrets: type: array - items: &186 + items: &185 title: Codespaces Secret description: Secrets for a GitHub Codespace. type: object @@ -28955,13 +28837,13 @@ paths: url: https://docs.github.com/rest/codespaces/organization-secrets#get-an-organization-secret parameters: - *68 - - *160 + - *159 responses: '200': description: Response content: application/json: - schema: *186 + schema: *185 examples: default: &452 value: @@ -28991,7 +28873,7 @@ paths: url: https://docs.github.com/rest/codespaces/organization-secrets#create-or-update-an-organization-secret parameters: - *68 - - *160 + - *159 requestBody: required: true content: @@ -29046,7 +28928,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *161 + schema: *160 examples: default: value: @@ -29073,7 +28955,7 @@ paths: url: https://docs.github.com/rest/codespaces/organization-secrets#delete-an-organization-secret parameters: - *68 - - *160 + - *159 responses: '204': description: Response @@ -29099,7 +28981,7 @@ paths: url: https://docs.github.com/rest/codespaces/organization-secrets#list-selected-repositories-for-an-organization-secret parameters: - *68 - - *160 + - *159 - *19 - *17 responses: @@ -29117,9 +28999,9 @@ paths: type: integer repositories: type: array - items: *152 + items: *151 examples: - default: *164 + default: *163 '404': *6 x-github: githubCloudOnly: false @@ -29142,7 +29024,7 @@ paths: url: https://docs.github.com/rest/codespaces/organization-secrets#set-selected-repositories-for-an-organization-secret parameters: - *68 - - *160 + - *159 requestBody: required: true content: @@ -29193,7 +29075,7 @@ paths: url: https://docs.github.com/rest/codespaces/organization-secrets#add-selected-repository-to-an-organization-secret parameters: - *68 - - *160 + - *159 - name: repository_id in: path required: true @@ -29227,7 +29109,7 @@ paths: url: https://docs.github.com/rest/codespaces/organization-secrets#remove-selected-repository-from-an-organization-secret parameters: - *68 - - *160 + - *159 - name: repository_id in: path required: true @@ -29375,7 +29257,7 @@ paths: cli: enabled public_code_suggestions: block plan_type: business - '500': *112 + '500': *111 '401': *25 '403': *29 '404': *6 @@ -29430,7 +29312,7 @@ paths: currently being billed. seats: type: array - items: &235 + items: &234 title: Copilot Business Seat Detail description: Information about a Copilot Business seat assignment for a user, team, or organization. @@ -29447,14 +29329,14 @@ paths: title: Organization Simple description: A GitHub organization. type: object - properties: *187 - required: *188 + properties: *186 + required: *187 nullable: true assigning_team: description: The team through which the assignee is granted access to GitHub Copilot, if applicable. oneOf: - - *189 + - *188 - *60 nullable: true pending_cancellation_date: @@ -29580,7 +29462,7 @@ paths: site_admin: false headers: Link: *59 - '500': *112 + '500': *111 '401': *25 '403': *29 '404': *6 @@ -29655,7 +29537,7 @@ paths: default: value: seats_created: 5 - '500': *112 + '500': *111 '401': *25 '403': *29 '404': *6 @@ -29733,7 +29615,7 @@ paths: default: value: seats_cancelled: 5 - '500': *112 + '500': *111 '401': *25 '403': *29 '404': *6 @@ -29812,7 +29694,7 @@ paths: default: value: seats_created: 5 - '500': *112 + '500': *111 '401': *25 '403': *29 '404': *6 @@ -29890,7 +29772,7 @@ paths: default: value: seats_cancelled: 5 - '500': *112 + '500': *111 '401': *25 '403': *29 '404': *6 @@ -30367,7 +30249,7 @@ paths: custom_model_training_date: '2024-02-01' total_pr_summaries_created: 10 total_engaged_users: 4 - '500': *112 + '500': *111 '403': *29 '404': *6 '422': &320 @@ -30398,11 +30280,11 @@ paths: url: https://docs.github.com/rest/dependabot/alerts#list-dependabot-alerts-for-an-organization parameters: - *68 + - *189 - *190 - *191 - *192 - *193 - - *194 - name: artifact_registry_url in: query description: A comma-separated list of artifact registry URLs. If specified, @@ -30440,8 +30322,8 @@ paths: Can be: `critical-resource`, `internet-exposed`, `sensitive-data`, `lateral-movement` schema: type: string + - *194 - *195 - - *196 - *53 - *45 - *46 @@ -30453,9 +30335,9 @@ paths: application/json: schema: type: array - items: *197 + items: *196 examples: - default: *198 + default: *197 '304': *37 '400': *14 '403': *29 @@ -30499,7 +30381,7 @@ paths: type: integer secrets: type: array - items: &199 + items: &198 title: Dependabot Secret for an Organization description: Secrets for GitHub Dependabot for an organization. type: object @@ -30617,13 +30499,13 @@ paths: url: https://docs.github.com/rest/dependabot/secrets#get-an-organization-secret parameters: - *68 - - *160 + - *159 responses: '200': description: Response content: application/json: - schema: *199 + schema: *198 examples: default: value: @@ -30652,7 +30534,7 @@ paths: url: https://docs.github.com/rest/dependabot/secrets#create-or-update-an-organization-secret parameters: - *68 - - *160 + - *159 requestBody: required: true content: @@ -30711,7 +30593,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *161 + schema: *160 examples: default: value: @@ -30736,7 +30618,7 @@ paths: url: https://docs.github.com/rest/dependabot/secrets#delete-an-organization-secret parameters: - *68 - - *160 + - *159 responses: '204': description: Response @@ -30761,7 +30643,7 @@ paths: url: https://docs.github.com/rest/dependabot/secrets#list-selected-repositories-for-an-organization-secret parameters: - *68 - - *160 + - *159 - *19 - *17 responses: @@ -30779,9 +30661,9 @@ paths: type: integer repositories: type: array - items: *152 + items: *151 examples: - default: *164 + default: *163 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -30803,7 +30685,7 @@ paths: url: https://docs.github.com/rest/dependabot/secrets#set-selected-repositories-for-an-organization-secret parameters: - *68 - - *160 + - *159 requestBody: required: true content: @@ -30854,7 +30736,7 @@ paths: url: https://docs.github.com/rest/dependabot/secrets#add-selected-repository-to-an-organization-secret parameters: - *68 - - *160 + - *159 - name: repository_id in: path required: true @@ -30886,7 +30768,7 @@ paths: url: https://docs.github.com/rest/dependabot/secrets#remove-selected-repository-from-an-organization-secret parameters: - *68 - - *160 + - *159 - name: repository_id in: path required: true @@ -30924,7 +30806,7 @@ paths: application/json: schema: type: array - items: &245 + items: &244 title: Package description: A software package type: object @@ -30974,8 +30856,8 @@ paths: title: Minimal Repository description: Minimal Repository type: object - properties: *200 - required: *201 + properties: *199 + required: *200 nullable: true created_at: type: string @@ -30994,7 +30876,7 @@ paths: - created_at - updated_at examples: - default: &246 + default: &245 value: - id: 197 name: hello_docker @@ -31164,7 +31046,7 @@ paths: application/json: schema: type: array - items: &224 + items: &223 title: Organization Invitation description: Organization Invitation type: object @@ -31211,7 +31093,7 @@ paths: - invitation_teams_url - node_id examples: - default: &225 + default: &224 value: - id: 1 login: monalisa @@ -31278,7 +31160,7 @@ paths: application/json: schema: type: array - items: &202 + items: &201 title: Org Hook description: Org Hook type: object @@ -31449,9 +31331,9 @@ paths: description: Response content: application/json: - schema: *202 + schema: *201 examples: - default: &203 + default: &202 value: id: 1 url: https://api.github.com/orgs/octocat/hooks/1 @@ -31499,7 +31381,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#get-an-organization-webhook parameters: - *68 - - &204 + - &203 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. @@ -31512,9 +31394,9 @@ paths: description: Response content: application/json: - schema: *202 + schema: *201 examples: - default: *203 + default: *202 '404': *6 x-github: githubCloudOnly: false @@ -31542,7 +31424,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#update-an-organization-webhook parameters: - *68 - - *204 + - *203 requestBody: required: false content: @@ -31587,7 +31469,7 @@ paths: description: Response content: application/json: - schema: *202 + schema: *201 examples: default: value: @@ -31629,7 +31511,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#delete-an-organization-webhook parameters: - *68 - - *204 + - *203 responses: '204': description: Response @@ -31657,7 +31539,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#get-a-webhook-configuration-for-an-organization parameters: - *68 - - *204 + - *203 responses: '200': description: Response @@ -31688,7 +31570,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#update-a-webhook-configuration-for-an-organization parameters: - *68 - - *204 + - *203 requestBody: required: false content: @@ -31739,9 +31621,9 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#list-deliveries-for-an-organization-webhook parameters: - *68 - - *204 + - *203 - *17 - - *205 + - *204 responses: '200': description: Response @@ -31749,9 +31631,9 @@ paths: application/json: schema: type: array - items: *206 + items: *205 examples: - default: *207 + default: *206 '400': *14 '422': *15 x-github: @@ -31777,16 +31659,16 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#get-a-webhook-delivery-for-an-organization-webhook parameters: - *68 - - *204 + - *203 - *16 responses: '200': description: Response content: application/json: - schema: *208 + schema: *207 examples: - default: *209 + default: *208 '400': *14 '422': *15 x-github: @@ -31812,7 +31694,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#redeliver-a-delivery-for-an-organization-webhook parameters: - *68 - - *204 + - *203 - *16 responses: '202': *39 @@ -31842,7 +31724,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#ping-an-organization-webhook parameters: - *68 - - *204 + - *203 responses: '204': description: Response @@ -31865,7 +31747,7 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-route-stats-by-actor parameters: - *68 - - &214 + - &213 name: actor_type in: path description: The type of the actor @@ -31878,14 +31760,14 @@ paths: - fine_grained_pat - oauth_app - github_app_user_to_server - - &215 + - &214 name: actor_id in: path description: The ID of the actor required: true schema: type: integer - - &210 + - &209 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`.' @@ -31893,7 +31775,7 @@ paths: required: true schema: type: string - - &211 + - &210 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) @@ -31987,12 +31869,12 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-subject-stats parameters: - *68 + - *209 - *210 - - *211 - *19 - *17 - *53 - - &220 + - &219 name: sort description: The property to sort the results by. in: query @@ -32071,14 +31953,14 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-summary-stats parameters: - *68 + - *209 - *210 - - *211 responses: '200': description: Response content: application/json: - schema: &212 + schema: &211 title: Summary Stats description: API Insights usage summary stats for an organization type: object @@ -32094,7 +31976,7 @@ paths: type: integer format: int64 examples: - default: &213 + default: &212 value: total_request_count: 34225 rate_limited_request_count: 23 @@ -32115,23 +31997,23 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-summary-stats-by-user parameters: - *68 - - &216 + - &215 name: user_id in: path description: The ID of the user to query for stats required: true schema: type: string + - *209 - *210 - - *211 responses: '200': description: Response content: application/json: - schema: *212 + schema: *211 examples: - default: *213 + default: *212 x-github: enabledForGitHubApps: true category: orgs @@ -32150,18 +32032,18 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-summary-stats-by-actor parameters: - *68 + - *209 - *210 - - *211 + - *213 - *214 - - *215 responses: '200': description: Response content: application/json: - schema: *212 + schema: *211 examples: - default: *213 + default: *212 x-github: enabledForGitHubApps: true category: orgs @@ -32179,9 +32061,9 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-time-stats parameters: - *68 + - *209 - *210 - - *211 - - &217 + - &216 name: timestamp_increment description: The increment of time used to breakdown the query results (5m, 10m, 1h, etc.) @@ -32194,7 +32076,7 @@ paths: description: Response content: application/json: - schema: &218 + schema: &217 title: Time Stats description: API Insights usage time stats for an organization type: array @@ -32210,7 +32092,7 @@ paths: type: integer format: int64 examples: - default: &219 + default: &218 value: - timestamp: '2024-09-11T15:00:00Z' total_request_count: 34225 @@ -32247,18 +32129,18 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-time-stats-by-user parameters: - *68 - - *216 + - *215 + - *209 - *210 - - *211 - - *217 + - *216 responses: '200': description: Response content: application/json: - schema: *218 + schema: *217 examples: - default: *219 + default: *218 x-github: enabledForGitHubApps: true category: orgs @@ -32276,19 +32158,19 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-time-stats-by-actor parameters: - *68 + - *213 - *214 - - *215 + - *209 - *210 - - *211 - - *217 + - *216 responses: '200': description: Response content: application/json: - schema: *218 + schema: *217 examples: - default: *219 + default: *218 x-github: enabledForGitHubApps: true category: orgs @@ -32306,13 +32188,13 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-user-stats parameters: - *68 - - *216 + - *215 + - *209 - *210 - - *211 - *19 - *17 - *53 - - *220 + - *219 - name: actor_name_substring in: query description: Providing a substring will filter results where the actor name @@ -32559,12 +32441,12 @@ paths: application/json: schema: anyOf: - - &222 + - &221 title: Interaction Limits description: Interaction limit settings. type: object properties: - limit: &221 + limit: &220 type: string description: The type of GitHub user that can comment, open issues, or create pull requests while the interaction limit @@ -32589,7 +32471,7 @@ paths: properties: {} additionalProperties: false examples: - default: &223 + default: &222 value: limit: collaborators_only origin: organization @@ -32624,7 +32506,7 @@ paths: duration type: object properties: - limit: *221 + limit: *220 expiry: type: string description: 'The duration of the interaction restriction. Default: @@ -32648,9 +32530,9 @@ paths: description: Response content: application/json: - schema: *222 + schema: *221 examples: - default: *223 + default: *222 '422': *15 x-github: githubCloudOnly: false @@ -32726,9 +32608,9 @@ paths: application/json: schema: type: array - items: *224 + items: *223 examples: - default: *225 + default: *224 headers: Link: *59 '404': *6 @@ -32805,7 +32687,7 @@ paths: description: Response content: application/json: - schema: *224 + schema: *223 examples: default: value: @@ -32860,7 +32742,7 @@ paths: url: https://docs.github.com/rest/orgs/members#cancel-an-organization-invitation parameters: - *68 - - &226 + - &225 name: invitation_id description: The unique identifier of the invitation. in: path @@ -32891,7 +32773,7 @@ paths: url: https://docs.github.com/rest/orgs/members#list-organization-invitation-teams parameters: - *68 - - *226 + - *225 - *17 - *19 responses: @@ -32901,9 +32783,9 @@ paths: application/json: schema: type: array - items: *189 + items: *188 examples: - default: &244 + default: &243 value: - id: 1 node_id: MDQ6VGVhbTE= @@ -32946,7 +32828,7 @@ paths: application/json: schema: type: array - items: *227 + items: *226 examples: default: value: @@ -33031,9 +32913,9 @@ paths: description: Response content: application/json: - schema: *227 + schema: *226 examples: - default: &228 + default: &227 value: id: 410 node_id: IT_kwDNAd3NAZo @@ -33066,7 +32948,7 @@ paths: url: https://docs.github.com/rest/orgs/issue-types#update-issue-type-for-an-organization parameters: - *68 - - &229 + - &228 name: issue_type_id description: The unique identifier of the issue type. in: path @@ -33119,9 +33001,9 @@ paths: description: Response content: application/json: - schema: *227 + schema: *226 examples: - default: *228 + default: *227 '404': *6 '422': *7 x-github: @@ -33146,7 +33028,7 @@ paths: url: https://docs.github.com/rest/orgs/issue-types#delete-issue-type-for-an-organization parameters: - *68 - - *229 + - *228 responses: '204': description: Response @@ -33209,7 +33091,7 @@ paths: - closed - all default: open - - *230 + - *229 - name: type description: Can be the name of an issue type. in: query @@ -33240,7 +33122,7 @@ paths: type: array items: *75 examples: - default: *231 + default: *230 headers: Link: *59 '404': *6 @@ -33399,11 +33281,11 @@ paths: type: integer codespaces: type: array - items: *232 + items: *231 examples: - default: *233 + default: *232 '304': *37 - '500': *112 + '500': *111 '401': *25 '403': *29 '404': *6 @@ -33428,7 +33310,7 @@ paths: parameters: - *68 - *64 - - &234 + - &233 name: codespace_name in: path required: true @@ -33438,7 +33320,7 @@ paths: responses: '202': *39 '304': *37 - '500': *112 + '500': *111 '401': *25 '403': *29 '404': *6 @@ -33463,13 +33345,13 @@ paths: parameters: - *68 - *64 - - *234 + - *233 responses: '200': description: Response content: application/json: - schema: *232 + schema: *231 examples: default: &445 value: @@ -33613,7 +33495,7 @@ paths: recent_folders: [] template: '304': *37 - '500': *112 + '500': *111 '401': *25 '403': *29 '404': *6 @@ -33651,7 +33533,7 @@ paths: description: The user's GitHub Copilot seat details, including usage. content: application/json: - schema: *235 + schema: *234 examples: default: value: @@ -33695,7 +33577,7 @@ paths: members_url: https://api.github.com/teams/1/members{/member} repositories_url: https://api.github.com/teams/1/repos parent: - '500': *112 + '500': *111 '401': *25 '403': *29 '404': *6 @@ -33727,7 +33609,7 @@ paths: description: Response content: application/json: - schema: &236 + schema: &235 title: Org Membership description: Org Membership type: object @@ -33794,7 +33676,7 @@ paths: - organization - user examples: - response-if-user-has-an-active-admin-membership-with-organization: &237 + response-if-user-has-an-active-admin-membership-with-organization: &236 summary: Response if user has an active admin membership with organization value: url: https://api.github.com/orgs/octocat/memberships/defunkt @@ -33895,9 +33777,9 @@ paths: description: Response content: application/json: - schema: *236 + schema: *235 examples: - response-if-user-already-had-membership-with-organization: *237 + response-if-user-already-had-membership-with-organization: *236 '422': *15 '403': *29 x-github: @@ -33968,7 +33850,7 @@ paths: application/json: schema: type: array - items: &238 + items: &237 title: Migration description: A migration. type: object @@ -34297,7 +34179,7 @@ paths: description: Response content: application/json: - schema: *238 + schema: *237 examples: default: value: @@ -34476,7 +34358,7 @@ paths: url: https://docs.github.com/rest/migrations/orgs#get-an-organization-migration-status parameters: - *68 - - &239 + - &238 name: migration_id description: The unique identifier of the migration. in: path @@ -34503,7 +34385,7 @@ paths: * `failed`, which means the migration failed. content: application/json: - schema: *238 + schema: *237 examples: default: value: @@ -34673,7 +34555,7 @@ paths: url: https://docs.github.com/rest/migrations/orgs#download-an-organization-migration-archive parameters: - *68 - - *239 + - *238 responses: '302': description: Response @@ -34695,7 +34577,7 @@ paths: url: https://docs.github.com/rest/migrations/orgs#delete-an-organization-migration-archive parameters: - *68 - - *239 + - *238 responses: '204': description: Response @@ -34719,8 +34601,8 @@ paths: url: https://docs.github.com/rest/migrations/orgs#unlock-an-organization-repository parameters: - *68 - - *239 - - &675 + - *238 + - &673 name: repo_name description: repo_name parameter in: path @@ -34748,7 +34630,7 @@ paths: url: https://docs.github.com/rest/migrations/orgs#list-repositories-in-an-organization-migration parameters: - *68 - - *239 + - *238 - *17 - *19 responses: @@ -34758,9 +34640,9 @@ paths: application/json: schema: type: array - items: *152 + items: *151 examples: - default: &251 + default: &250 value: - id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -34913,7 +34795,7 @@ paths: roles: type: array description: The list of organization roles available to the organization. - items: &241 + items: &240 title: Organization Role description: Organization roles type: object @@ -35088,7 +34970,7 @@ paths: parameters: - *68 - *69 - - &240 + - &239 name: role_id description: The unique identifier of the role. in: path @@ -35125,7 +35007,7 @@ paths: parameters: - *68 - *69 - - *240 + - *239 responses: '204': description: Response @@ -35178,7 +35060,7 @@ paths: parameters: - *68 - *64 - - *240 + - *239 responses: '204': description: Response @@ -35210,7 +35092,7 @@ paths: parameters: - *68 - *64 - - *240 + - *239 responses: '204': description: Response @@ -35239,13 +35121,13 @@ paths: url: https://docs.github.com/rest/orgs/organization-roles#get-an-organization-role parameters: - *68 - - *240 + - *239 responses: '200': description: Response content: application/json: - schema: *241 + schema: *240 examples: default: value: @@ -35296,7 +35178,7 @@ paths: url: https://docs.github.com/rest/orgs/organization-roles#list-teams-that-are-assigned-to-an-organization-role parameters: - *68 - - *240 + - *239 - *17 - *19 responses: @@ -35374,8 +35256,8 @@ paths: description: Groups of organization members that gives permissions on specified repositories. type: object - properties: *242 - required: *243 + properties: *241 + required: *242 nullable: true type: description: The ownership type of the team @@ -35407,7 +35289,7 @@ paths: - type - parent examples: - default: *244 + default: *243 headers: Link: *59 '404': @@ -35437,7 +35319,7 @@ paths: url: https://docs.github.com/rest/orgs/organization-roles#list-users-that-are-assigned-to-an-organization-role parameters: - *68 - - *240 + - *239 - *17 - *19 responses: @@ -35470,8 +35352,8 @@ paths: description: Groups of organization members that gives permissions on specified repositories. type: object - properties: *242 - required: *243 + properties: *241 + required: *242 name: nullable: true type: string @@ -35759,7 +35641,7 @@ paths: - nuget - container - *68 - - &676 + - &674 name: visibility description: |- The selected visibility of the packages. This parameter is optional and only filters an existing result set. @@ -35795,12 +35677,12 @@ paths: application/json: schema: type: array - items: *245 + items: *244 examples: - default: *246 + default: *245 '403': *29 '401': *25 - '400': &678 + '400': &676 description: The value of `per_page` multiplied by `page` cannot be greater than 10000. x-github: @@ -35822,7 +35704,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-for-an-organization parameters: - - &247 + - &246 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 @@ -35840,7 +35722,7 @@ paths: - docker - nuget - container - - &248 + - &247 name: package_name description: The name of the package. in: path @@ -35853,7 +35735,7 @@ paths: description: Response content: application/json: - schema: *245 + schema: *244 examples: default: value: @@ -35905,8 +35787,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-a-package-for-an-organization parameters: + - *246 - *247 - - *248 - *68 responses: '204': @@ -35939,8 +35821,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-a-package-for-an-organization parameters: + - *246 - *247 - - *248 - *68 - name: token description: package token @@ -35973,8 +35855,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: + - *246 - *247 - - *248 - *68 - *19 - *17 @@ -35995,7 +35877,7 @@ paths: application/json: schema: type: array - items: &249 + items: &248 title: Package Version description: A version of a software package type: object @@ -36120,10 +36002,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-version-for-an-organization parameters: + - *246 - *247 - - *248 - *68 - - &250 + - &249 name: package_version_id description: Unique identifier of the package version. in: path @@ -36135,7 +36017,7 @@ paths: description: Response content: application/json: - schema: *249 + schema: *248 examples: default: value: @@ -36171,10 +36053,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-package-version-for-an-organization parameters: + - *246 - *247 - - *248 - *68 - - *250 + - *249 responses: '204': description: Response @@ -36206,10 +36088,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-package-version-for-an-organization parameters: + - *246 - *247 - - *248 - *68 - - *250 + - *249 responses: '204': description: Response @@ -36239,7 +36121,7 @@ paths: - *68 - *17 - *19 - - &252 + - &251 name: sort description: The property by which to sort the results. in: query @@ -36250,7 +36132,7 @@ paths: - created_at default: created_at - *53 - - &253 + - &252 name: owner description: A list of owner usernames to use to filter the results. in: query @@ -36261,7 +36143,7 @@ paths: items: type: string example: owner[]=octocat1,owner[]=octocat2 - - &254 + - &253 name: repository description: The name of the repository to use to filter the results. in: query @@ -36269,7 +36151,7 @@ paths: schema: type: string example: Hello-World - - &255 + - &254 name: permission description: The permission to use to filter the results. in: query @@ -36277,7 +36159,7 @@ paths: schema: type: string example: issues_read - - &256 + - &255 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) @@ -36287,7 +36169,7 @@ paths: schema: type: string format: date-time - - &257 + - &256 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) @@ -36297,7 +36179,7 @@ paths: schema: type: string format: date-time - - &258 + - &257 name: token_id description: The ID of the token in: query @@ -36309,7 +36191,7 @@ paths: type: string example: token_id[]=1,token_id[]=2 responses: - '500': *112 + '500': *111 '422': *15 '404': *6 '403': *29 @@ -36502,7 +36384,7 @@ paths: action: deny reason: Access is too broad. responses: - '500': *112 + '500': *111 '422': *15 '404': *6 '403': *29 @@ -36563,11 +36445,11 @@ paths: action: deny reason: This request is denied because the access is too broad. responses: - '500': *112 + '500': *111 '422': *15 '404': *6 '403': *29 - '204': *183 + '204': *182 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -36599,7 +36481,7 @@ paths: - *17 - *19 responses: - '500': *112 + '500': *111 '404': *6 '403': *29 '200': @@ -36608,9 +36490,9 @@ paths: application/json: schema: type: array - items: *152 + items: *151 examples: - default: *251 + default: *250 headers: Link: *59 x-github: @@ -36636,16 +36518,16 @@ paths: - *68 - *17 - *19 - - *252 + - *251 - *53 + - *252 - *253 - *254 - *255 - *256 - *257 - - *258 responses: - '500': *112 + '500': *111 '422': *15 '404': *6 '403': *29 @@ -36827,7 +36709,7 @@ paths: - 1296269 - 1296280 responses: - '500': *112 + '500': *111 '404': *6 '202': *39 '403': *29 @@ -36880,9 +36762,9 @@ paths: value: action: revoke responses: - '500': *112 + '500': *111 '404': *6 - '204': *183 + '204': *182 '403': *29 '422': *15 x-github: @@ -36914,7 +36796,7 @@ paths: - *17 - *19 responses: - '500': *112 + '500': *111 '404': *6 '403': *29 '200': @@ -36923,9 +36805,9 @@ paths: application/json: schema: type: array - items: *152 + items: *151 examples: - default: *251 + default: *250 headers: Link: *59 x-github: @@ -36967,7 +36849,7 @@ paths: type: integer configurations: type: array - items: &259 + items: &258 title: Organization private registry description: Private registry configuration for an organization type: object @@ -37257,7 +37139,7 @@ paths: - created_at - updated_at examples: - org-private-registry-with-selected-visibility: &260 + org-private-registry-with-selected-visibility: &259 value: name: MAVEN_REPOSITORY_SECRET registry_type: maven_repository @@ -37347,15 +37229,15 @@ paths: url: https://docs.github.com/rest/private-registries/organization-configurations#get-a-private-registry-for-an-organization parameters: - *68 - - *160 + - *159 responses: '200': description: The specified private registry configuration for the organization content: application/json: - schema: *259 + schema: *258 examples: - default: *260 + default: *259 '404': *6 x-github: githubCloudOnly: false @@ -37377,7 +37259,7 @@ paths: url: https://docs.github.com/rest/private-registries/organization-configurations#update-a-private-registry-for-an-organization parameters: - *68 - - *160 + - *159 requestBody: required: true content: @@ -37482,7 +37364,7 @@ paths: url: https://docs.github.com/rest/private-registries/organization-configurations#delete-a-private-registry-for-an-organization parameters: - *68 - - *160 + - *159 responses: '204': description: Response @@ -37522,7 +37404,7 @@ paths: application/json: schema: type: array - items: &261 + items: &260 title: Projects v2 Project description: A projects v2 project type: object @@ -37592,7 +37474,7 @@ paths: title: Projects v2 Status Update description: An status update belonging to a project type: object - properties: &762 + properties: &760 id: type: number description: The unique identifier of the status update. @@ -37640,7 +37522,7 @@ paths: example: The project is off to a great start! type: string nullable: true - required: &763 + required: &761 - id - node_id - created_at @@ -37665,7 +37547,7 @@ paths: - deleted_at - deleted_by examples: - default: &262 + default: &261 value: id: 2 node_id: MDc6UHJvamVjdDEwMDI2MDM= @@ -37768,7 +37650,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/projects#get-project-for-organization parameters: - - &263 + - &262 name: project_number description: The project's number. in: path @@ -37781,9 +37663,9 @@ paths: description: Response content: application/json: - schema: *261 + schema: *260 examples: - default: *262 + default: *261 headers: Link: *59 '304': *37 @@ -37806,7 +37688,7 @@ paths: url: https://docs.github.com/rest/projects/drafts#create-draft-item-for-organization-owned-project parameters: - *68 - - *263 + - *262 requestBody: required: true description: Details of the draft item to create in the project. @@ -37840,7 +37722,7 @@ paths: description: Response content: application/json: - schema: &269 + schema: &268 title: Projects v2 Item description: An item belonging to a project type: object @@ -37960,8 +37842,8 @@ paths: title: Milestone description: A collection of related issues and pull requests. type: object - properties: *264 - required: *265 + properties: *263 + required: *264 nullable: true active_lock_reason: type: string @@ -38006,7 +37888,7 @@ paths: nullable: true requested_teams: type: array - items: *189 + items: *188 nullable: true head: type: object @@ -38057,7 +37939,7 @@ paths: _links: type: object properties: - comments: &266 + comments: &265 title: Link description: Hypermedia Link type: object @@ -38066,13 +37948,13 @@ paths: type: string required: - href - commits: *266 - statuses: *266 - html: *266 - issue: *266 - review_comments: *266 - review_comment: *266 - self: *266 + commits: *265 + statuses: *265 + html: *265 + issue: *265 + review_comments: *265 + review_comment: *265 + self: *265 required: - comments - commits @@ -38083,7 +37965,7 @@ paths: - review_comment - self author_association: *76 - auto_merge: &570 + auto_merge: &568 title: Auto merge description: The status of auto merging a pull request. type: object @@ -38185,7 +38067,7 @@ paths: - created_at - updated_at description: The content represented by the item. - content_type: &268 + content_type: &267 title: Projects v2 Item Content Type description: The type of content tracked in a project item type: string @@ -38225,7 +38107,7 @@ paths: - updated_at - archived_at examples: - draft_issue: &270 + draft_issue: &269 value: id: 17 node_id: PVTI_lADOANN5s84ACbL0zgBueEI @@ -38299,7 +38181,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/fields#list-project-fields-for-organization parameters: - - *263 + - *262 - *68 - *17 - *45 @@ -38311,7 +38193,7 @@ paths: application/json: schema: type: array - items: &267 + items: &266 title: Projects v2 Field description: A field inside a projects v2 project type: object @@ -38458,7 +38340,7 @@ paths: - updated_at - project_url examples: - default: &695 + default: &693 value: - id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -38588,7 +38470,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/fields#add-a-field-to-an-organization-owned-project parameters: - - *263 + - *262 - *68 requestBody: required: true @@ -38635,7 +38517,7 @@ paths: description: The options available for single select fields. At least one option must be provided when creating a single select field. - items: &696 + items: &694 type: object properties: name: @@ -38671,7 +38553,7 @@ paths: description: The field's data type. enum: - iteration - iteration_configuration: &697 + iteration_configuration: &695 type: object description: The configuration for iteration fields. properties: @@ -38720,7 +38602,7 @@ paths: value: name: Due date data_type: date - single_select_field: &698 + single_select_field: &696 summary: Create a single select field value: name: Priority @@ -38747,7 +38629,7 @@ paths: description: raw: High priority items html: High priority items - iteration_field: &699 + iteration_field: &697 summary: Create an iteration field value: name: Sprint @@ -38771,9 +38653,9 @@ paths: description: Response for adding a field to an organization-owned project. content: application/json: - schema: *267 + schema: *266 examples: - text_field: &700 + text_field: &698 value: id: 24680 node_id: PVTF_lADOABCD2468024680 @@ -38782,7 +38664,7 @@ paths: project_url: https://api.github.com/projects/67890 created_at: '2022-05-15T08:00:00Z' updated_at: '2022-05-15T08:00:00Z' - number_field: &701 + number_field: &699 value: id: 13579 node_id: PVTF_lADOABCD1357913579 @@ -38791,7 +38673,7 @@ paths: project_url: https://api.github.com/projects/67890 created_at: '2022-06-01T14:30:00Z' updated_at: '2022-06-01T14:30:00Z' - date_field: &702 + date_field: &700 value: id: 98765 node_id: PVTF_lADOABCD9876598765 @@ -38800,7 +38682,7 @@ paths: project_url: https://api.github.com/projects/67890 created_at: '2022-06-10T09:15:00Z' updated_at: '2022-06-10T09:15:00Z' - single_select_field: &703 + single_select_field: &701 value: id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -38834,7 +38716,7 @@ paths: raw: High priority items created_at: '2022-04-28T12:00:00Z' updated_at: '2022-04-28T12:00:00Z' - iteration_field: &704 + iteration_field: &702 value: id: 11223 node_id: PVTF_lADOABCD1122311223 @@ -38879,8 +38761,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/fields#get-project-field-for-organization parameters: - - *263 - - &705 + - *262 + - &703 name: field_id description: The unique identifier of the field. in: path @@ -38893,9 +38775,9 @@ paths: description: Response content: application/json: - schema: *267 + schema: *266 examples: - default: &706 + default: &704 value: id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -38951,7 +38833,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#list-items-for-an-organization-owned-project parameters: - - *263 + - *262 - *68 - 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) @@ -38984,7 +38866,7 @@ paths: application/json: schema: type: array - items: &271 + items: &270 title: Projects v2 Item description: An item belonging to a project type: object @@ -39000,7 +38882,7 @@ paths: format: uri example: https://api.github.com/users/monalisa/2/projectsV2/3 description: The API URL of the project that contains this item. - content_type: *268 + content_type: *267 content: type: object additionalProperties: true @@ -39043,7 +38925,7 @@ paths: - updated_at - archived_at examples: - default: &272 + default: &271 value: id: 13 node_id: PVTI_lAAFAQ0 @@ -39740,7 +39622,7 @@ paths: url: https://docs.github.com/rest/projects/items#add-item-to-organization-owned-project parameters: - *68 - - *263 + - *262 requestBody: required: true description: Details of the item to add to the project. You can specify either @@ -39810,22 +39692,22 @@ paths: description: Response content: application/json: - schema: *269 + schema: *268 examples: issue_with_id: summary: Response for adding an issue using its unique ID - value: *270 + value: *269 pull_request_with_id: summary: Response for adding a pull request using its unique ID - value: *270 + value: *269 issue_with_nwo: summary: Response for adding an issue using repository owner, name, and issue number - value: *270 + value: *269 pull_request_with_nwo: summary: Response for adding a pull request using repository owner, name, and PR number - value: *270 + value: *269 '304': *37 '403': *29 '401': *25 @@ -39845,9 +39727,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#get-an-item-for-an-organization-owned-project parameters: - - *263 + - *262 - *68 - - &273 + - &272 name: item_id description: The unique identifier of the project item. in: path @@ -39873,9 +39755,9 @@ paths: description: Response content: application/json: - schema: *271 + schema: *270 examples: - default: *272 + default: *271 headers: Link: *59 '304': *37 @@ -39896,9 +39778,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#update-project-item-for-organization parameters: - - *263 + - *262 - *68 - - *273 + - *272 requestBody: required: true description: Field updates to apply to the project item. Only text, number, @@ -39968,13 +39850,13 @@ paths: description: Response content: application/json: - schema: *271 + schema: *270 examples: - text_field: *272 - number_field: *272 - date_field: *272 - single_select_field: *272 - iteration_field: *272 + text_field: *271 + number_field: *271 + date_field: *271 + single_select_field: *271 + iteration_field: *271 '401': *25 '403': *29 '404': *6 @@ -39994,9 +39876,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#delete-project-item-for-organization parameters: - - *263 + - *262 - *68 - - *273 + - *272 responses: '204': description: Response @@ -40019,9 +39901,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#list-items-for-an-organization-project-view parameters: - - *263 + - *262 - *68 - - &707 + - &705 name: view_number description: The number that identifies the project view. in: path @@ -40053,9 +39935,9 @@ paths: application/json: schema: type: array - items: *271 + items: *270 examples: - default: *272 + default: *271 headers: Link: *59 '304': *37 @@ -40088,7 +39970,7 @@ paths: application/json: schema: type: array - items: &274 + items: &273 title: Organization Custom Property description: Custom property defined on an organization type: object @@ -40153,7 +40035,7 @@ paths: - property_name - value_type examples: - default: &275 + default: &274 value: - property_name: environment url: https://api.github.com/orgs/github/properties/schema/environment @@ -40212,7 +40094,7 @@ paths: properties: type: array description: The array of custom properties to create or update. - items: *274 + items: *273 minItems: 1 maxItems: 100 required: @@ -40242,9 +40124,9 @@ paths: application/json: schema: type: array - items: *274 + items: *273 examples: - default: *275 + default: *274 '403': *29 '404': *6 x-github: @@ -40266,7 +40148,7 @@ paths: url: https://docs.github.com/rest/orgs/custom-properties#get-a-custom-property-for-an-organization parameters: - *68 - - &276 + - &275 name: custom_property_name description: The custom property name in: path @@ -40278,9 +40160,9 @@ paths: description: Response content: application/json: - schema: *274 + schema: *273 examples: - default: &277 + default: &276 value: property_name: environment url: https://api.github.com/orgs/github/properties/schema/environment @@ -40315,7 +40197,7 @@ paths: url: https://docs.github.com/rest/orgs/custom-properties#create-or-update-a-custom-property-for-an-organization parameters: - *68 - - *276 + - *275 requestBody: required: true content: @@ -40383,9 +40265,9 @@ paths: description: Response content: application/json: - schema: *274 + schema: *273 examples: - default: *277 + default: *276 '403': *29 '404': *6 x-github: @@ -40409,9 +40291,9 @@ paths: url: https://docs.github.com/rest/orgs/custom-properties#remove-a-custom-property-for-an-organization parameters: - *68 - - *276 + - *275 responses: - '204': *183 + '204': *182 '403': *29 '404': *6 x-github: @@ -40470,7 +40352,25 @@ paths: example: octocat/Hello-World properties: type: array - items: *111 + items: &277 + title: Custom Property Value + description: Custom property name and associated value + type: object + properties: + property_name: + type: string + description: The name of the property + value: + oneOf: + - type: string + - type: array + items: + type: string + description: The value assigned to the property + nullable: true + required: + - property_name + - value description: List of custom property names and associated values required: - repository_id @@ -40539,7 +40439,7 @@ paths: type: array description: List of custom property names and associated values to apply to the repositories. - items: *111 + items: *277 required: - repository_names - properties @@ -40729,9 +40629,9 @@ paths: application/json: schema: type: array - items: *152 + items: *151 examples: - default: *251 + default: *250 headers: Link: *59 x-github: @@ -41952,7 +41852,7 @@ paths: - *68 - *17 - *19 - - &592 + - &590 name: targets description: | A comma-separated list of rule targets to filter by. @@ -42233,7 +42133,7 @@ paths: - repository_property rules: type: array - items: &593 + items: &591 title: Repository Rule type: object description: A repository rule. @@ -42295,7 +42195,7 @@ paths: type: string enum: - required_linear_history - - &591 + - &589 title: merge_queue description: Merges must be performed via a merge queue. type: object @@ -43025,7 +42925,7 @@ paths: created_at: '2023-08-15T08:43:03Z' updated_at: '2023-09-23T16:29:47Z' '404': *6 - '500': *112 + '500': *111 post: summary: Create an organization repository ruleset description: Create a repository ruleset for an organization. @@ -43176,7 +43076,7 @@ paths: created_at: '2023-08-15T08:43:03Z' updated_at: '2023-09-23T16:29:47Z' '404': *6 - '500': *112 + '500': *111 "/orgs/{org}/rulesets/rule-suites": get: summary: List organization rule suites @@ -43191,7 +43091,7 @@ paths: url: https://docs.github.com/rest/orgs/rule-suites#list-organization-rule-suites parameters: - *68 - - &594 + - &592 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 @@ -43206,7 +43106,7 @@ paths: in: query schema: type: string - - &595 + - &593 name: time_period description: |- The time period to filter by. @@ -43222,14 +43122,14 @@ paths: - week - month default: day - - &596 + - &594 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 - - &597 + - &595 name: rule_suite_result description: The rule suite results to filter on. When specified, only suites with this result will be returned. @@ -43249,7 +43149,7 @@ paths: description: Response content: application/json: - schema: &598 + schema: &596 title: Rule Suites description: Response type: array @@ -43304,7 +43204,7 @@ paths: whether rules would pass or fail if all rules in the rule suite were `active`. examples: - default: &599 + default: &597 value: - id: 21 actor_id: 12 @@ -43328,7 +43228,7 @@ paths: result: pass evaluation_result: fail '404': *6 - '500': *112 + '500': *111 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -43348,7 +43248,7 @@ paths: url: https://docs.github.com/rest/orgs/rule-suites#get-an-organization-rule-suite parameters: - *68 - - &600 + - &598 name: rule_suite_id description: |- The unique identifier of the rule suite result. @@ -43364,7 +43264,7 @@ paths: description: Response content: application/json: - schema: &601 + schema: &599 title: Rule Suite description: Response type: object @@ -43463,7 +43363,7 @@ paths: description: The detailed failure message for the rule. Null if the rule passed. examples: - default: &602 + default: &600 value: id: 21 actor_id: 12 @@ -43498,7 +43398,7 @@ paths: result: fail rule_type: commit_message_pattern '404': *6 - '500': *112 + '500': *111 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -43540,7 +43440,7 @@ paths: examples: default: *308 '404': *6 - '500': *112 + '500': *111 put: summary: Update an organization repository ruleset description: Update a ruleset for an organization. @@ -43630,7 +43530,7 @@ paths: examples: default: *308 '404': *6 - '500': *112 + '500': *111 delete: summary: Delete an organization repository ruleset description: Delete a ruleset for an organization. @@ -43657,7 +43557,7 @@ paths: '204': description: Response '404': *6 - '500': *112 + '500': *111 "/orgs/{org}/rulesets/{ruleset_id}/history": get: summary: Get organization ruleset history @@ -43709,7 +43609,7 @@ paths: type: string format: date-time examples: - default: &604 + default: &602 value: - version_id: 3 actor: @@ -43727,7 +43627,7 @@ paths: type: User updated_at: '2024-08-23T16:29:47Z' '404': *6 - '500': *112 + '500': *111 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -43762,7 +43662,7 @@ paths: description: Response content: application/json: - schema: &605 + schema: &603 allOf: - *310 - type: object @@ -43811,7 +43711,7 @@ paths: operator: contains pattern: github '404': *6 - '500': *112 + '500': *111 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -43834,7 +43734,7 @@ paths: url: https://docs.github.com/rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-an-organization parameters: - *68 - - &606 + - &604 name: state in: query description: Set to `open` or `resolved` to only list secret scanning alerts @@ -43845,7 +43745,7 @@ paths: enum: - open - resolved - - &607 + - &605 name: secret_type in: query description: A comma-separated list of secret types to return. All default @@ -43855,7 +43755,7 @@ paths: required: false schema: type: string - - &608 + - &606 name: resolution in: query description: A comma-separated list of resolutions. Only secret scanning alerts @@ -43864,7 +43764,7 @@ paths: required: false schema: type: string - - &609 + - &607 name: assignee in: query description: Filters alerts by assignee. Use `*` to get all assigned alerts, @@ -43883,7 +43783,7 @@ paths: all-unassigned: value: none summary: Filter for all unassigned alerts - - &610 + - &608 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. @@ -43898,7 +43798,7 @@ paths: - *53 - *19 - *17 - - &611 + - &609 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 @@ -43908,7 +43808,7 @@ paths: required: false schema: type: string - - &612 + - &610 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 @@ -43918,7 +43818,7 @@ paths: required: false schema: type: string - - &613 + - &611 name: validity in: query description: A comma-separated list of validities that, when present, will @@ -43927,7 +43827,7 @@ paths: required: false schema: type: string - - &614 + - &612 name: is_publicly_leaked in: query description: A boolean value representing whether or not to filter alerts @@ -43936,7 +43836,7 @@ paths: schema: type: boolean default: false - - &615 + - &613 name: is_multi_repo in: query description: A boolean value representing whether or not to filter alerts @@ -43945,7 +43845,7 @@ paths: schema: type: boolean default: false - - &616 + - &614 name: hide_secret in: query description: A boolean value representing whether or not to hide literal secrets @@ -43964,8 +43864,8 @@ paths: items: type: object properties: - number: *170 - created_at: *171 + number: *169 + created_at: *170 updated_at: type: string description: 'The time that the alert was last updated in ISO @@ -43973,21 +43873,21 @@ paths: format: date-time readOnly: true nullable: true - url: *173 - html_url: *174 + url: *172 + html_url: *173 locations_url: type: string format: uri description: The REST API URL of the code locations for this alert. - state: &617 + state: &615 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: &618 + resolution: &616 type: string description: "**Required when the `state` is `resolved`.** The reason for resolving the alert." @@ -44094,8 +43994,8 @@ paths: pull request. ' - oneOf: &619 - - &621 + oneOf: &617 + - &619 description: Represents a 'commit' secret scanning location type. This location type shows that a secret was detected inside a commit to a repository. @@ -44147,7 +44047,7 @@ paths: - blob_url - commit_sha - commit_url - - &622 + - &620 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. @@ -44202,7 +44102,7 @@ paths: - page_url - commit_sha - commit_url - - &623 + - &621 description: Represents an 'issue_title' secret scanning location type. This location type shows that a secret was detected in the title of an issue. @@ -44216,7 +44116,7 @@ paths: example: https://api.github.com/repos/octocat/Hello-World/issues/1347 required: - issue_title_url - - &624 + - &622 description: Represents an 'issue_body' secret scanning location type. This location type shows that a secret was detected in the body of an issue. @@ -44230,7 +44130,7 @@ paths: example: https://api.github.com/repos/octocat/Hello-World/issues/1347 required: - issue_body_url - - &625 + - &623 description: Represents an 'issue_comment' secret scanning location type. This location type shows that a secret was detected in a comment on an issue. @@ -44244,7 +44144,7 @@ paths: example: https://api.github.com/repos/octocat/Hello-World/issues/comments/1081119451 required: - issue_comment_url - - &626 + - &624 description: Represents a 'discussion_title' secret scanning location type. This location type shows that a secret was detected in the title of a discussion. @@ -44258,7 +44158,7 @@ paths: example: https://github.com/community/community/discussions/39082 required: - discussion_title_url - - &627 + - &625 description: Represents a 'discussion_body' secret scanning location type. This location type shows that a secret was detected in the body of a discussion. @@ -44272,7 +44172,7 @@ paths: example: https://github.com/community/community/discussions/39082#discussion-4566270 required: - discussion_body_url - - &628 + - &626 description: Represents a 'discussion_comment' secret scanning location type. This location type shows that a secret was detected in a comment on a discussion. @@ -44286,7 +44186,7 @@ paths: example: https://github.com/community/community/discussions/39082#discussioncomment-4158232 required: - discussion_comment_url - - &629 + - &627 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. @@ -44300,7 +44200,7 @@ paths: example: https://api.github.com/repos/octocat/Hello-World/pulls/2846 required: - pull_request_title_url - - &630 + - &628 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. @@ -44314,7 +44214,7 @@ paths: example: https://api.github.com/repos/octocat/Hello-World/pulls/2846 required: - pull_request_body_url - - &631 + - &629 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. @@ -44328,7 +44228,7 @@ paths: example: https://api.github.com/repos/octocat/Hello-World/issues/comments/1081119451 required: - pull_request_comment_url - - &632 + - &630 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. @@ -44342,7 +44242,7 @@ paths: example: https://api.github.com/repos/octocat/Hello-World/pulls/2846/reviews/80 required: - pull_request_review_url - - &633 + - &631 description: Represents a 'pull_request_review_comment' secret scanning location type. This location type shows that a secret was detected in a review comment on a pull request. @@ -44547,7 +44447,7 @@ paths: headers: Link: *59 '404': *6 - '503': *113 + '503': *112 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -44840,7 +44740,7 @@ paths: application/json: schema: type: array - items: &637 + items: &635 description: A repository security advisory. type: object properties: @@ -45094,7 +44994,7 @@ paths: type: array description: A list of teams that collaborate on the advisory. nullable: true - items: *189 + items: *188 private_fork: readOnly: true nullable: true @@ -45131,7 +45031,7 @@ paths: - private_fork additionalProperties: false examples: - default: &638 + default: &636 value: - ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -45520,7 +45420,7 @@ paths: type: array items: *314 examples: - default: *244 + default: *243 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -45721,9 +45621,9 @@ paths: type: integer repositories: type: array - items: *152 + items: *151 examples: - default: *164 + default: *163 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -45792,7 +45692,7 @@ paths: url: https://docs.github.com/rest/orgs/orgs#enable-a-selected-repository-for-immutable-releases-in-an-organization parameters: - *68 - - *141 + - *140 responses: '204': description: Response @@ -45815,7 +45715,7 @@ paths: url: https://docs.github.com/rest/orgs/orgs#disable-a-selected-repository-for-immutable-releases-in-an-organization parameters: - *68 - - *141 + - *140 responses: '204': description: Response @@ -46259,7 +46159,7 @@ paths: items: *318 examples: default: *319 - '500': *112 + '500': *111 '403': *29 '404': *6 '422': *320 @@ -46290,9 +46190,9 @@ paths: application/json: schema: type: array - items: *189 + items: *188 examples: - default: *244 + default: *243 headers: Link: *59 '403': *29 @@ -46449,8 +46349,8 @@ paths: description: Groups of organization members that gives permissions on specified repositories. type: object - properties: *242 - required: *243 + properties: *241 + required: *242 nullable: true members_count: type: integer @@ -46946,9 +46846,9 @@ paths: application/json: schema: type: array - items: *224 + items: *223 examples: - default: *225 + default: *224 headers: Link: *59 x-github: @@ -47059,7 +46959,7 @@ paths: - state - url examples: - response-if-user-is-a-team-maintainer: &655 + response-if-user-is-a-team-maintainer: &653 summary: Response if user is a team maintainer value: url: https://api.github.com/teams/1/memberships/octocat @@ -47124,7 +47024,7 @@ paths: application/json: schema: *323 examples: - response-if-users-membership-with-team-is-now-pending: &656 + response-if-users-membership-with-team-is-now-pending: &654 summary: Response if user's membership with team is now pending value: url: https://api.github.com/teams/1/memberships/octocat @@ -47198,9 +47098,9 @@ paths: application/json: schema: type: array - items: *152 + items: *151 examples: - default: *251 + default: *250 headers: Link: *59 x-github: @@ -47238,7 +47138,7 @@ paths: description: Alternative response with repository permissions content: application/json: - schema: &657 + schema: &655 title: Team Repository description: A team's access to a repository. type: object @@ -47893,9 +47793,9 @@ paths: application/json: schema: type: array - items: *189 + items: *188 examples: - response-if-child-teams-exist: &658 + response-if-child-teams-exist: &656 value: - id: 2 node_id: MDQ6VGVhbTI= @@ -50062,7 +49962,7 @@ paths: description: Response content: application/json: - schema: *161 + schema: *160 examples: default: value: @@ -50172,7 +50072,7 @@ paths: description: Empty response content: application/json: - schema: *161 + schema: *160 examples: default: value: @@ -50368,9 +50268,9 @@ paths: enabled: &342 type: boolean description: Whether GitHub Actions is enabled on the repository. - allowed_actions: *137 + allowed_actions: *136 selected_actions_url: *341 - sha_pinning_required: *138 + sha_pinning_required: *137 required: - enabled examples: @@ -50411,8 +50311,8 @@ paths: type: object properties: enabled: *342 - allowed_actions: *137 - sha_pinning_required: *138 + allowed_actions: *136 + sha_pinning_required: *137 required: - enabled examples: @@ -50595,7 +50495,7 @@ paths: description: Response content: application/json: - schema: *139 + schema: *138 examples: default: *347 '404': *6 @@ -50627,7 +50527,7 @@ paths: required: true content: application/json: - schema: *139 + schema: *138 examples: default: summary: Set approval policy to first time contributors @@ -50660,7 +50560,7 @@ paths: application/json: schema: *348 examples: - default: *140 + default: *139 '403': *29 '404': *6 x-github: @@ -50688,7 +50588,7 @@ paths: application/json: schema: *349 examples: - default: *140 + default: *139 responses: '204': description: Empty response for successful settings update @@ -50719,9 +50619,9 @@ paths: description: Response content: application/json: - schema: *142 + schema: *141 examples: - default: *143 + default: *142 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -50749,9 +50649,9 @@ paths: required: false content: application/json: - schema: *142 + schema: *141 examples: - selected_actions: *143 + selected_actions: *142 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -50782,7 +50682,7 @@ paths: application/json: schema: *350 examples: - default: *147 + default: *146 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -50817,7 +50717,7 @@ paths: application/json: schema: *351 examples: - default: *147 + default: *146 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -50863,9 +50763,9 @@ paths: type: integer runners: type: array - items: *154 + items: *153 examples: - default: *155 + default: *154 headers: Link: *59 x-github: @@ -51004,7 +50904,7 @@ paths: description: Response content: application/json: - schema: *156 + schema: *155 examples: default: *355 x-github: @@ -51041,7 +50941,7 @@ paths: description: Response content: application/json: - schema: *156 + schema: *155 examples: default: *356 x-github: @@ -51067,13 +50967,13 @@ paths: parameters: - *324 - *325 - - *153 + - *152 responses: '200': description: Response content: application/json: - schema: *154 + schema: *153 examples: default: *357 x-github: @@ -51098,7 +50998,7 @@ paths: parameters: - *324 - *325 - - *153 + - *152 responses: '204': description: Response @@ -51126,9 +51026,9 @@ paths: parameters: - *324 - *325 - - *153 + - *152 responses: - '200': *158 + '200': *157 '404': *6 x-github: githubCloudOnly: false @@ -51152,7 +51052,7 @@ paths: parameters: - *324 - *325 - - *153 + - *152 requestBody: required: true content: @@ -51176,7 +51076,7 @@ paths: - gpu - accelerated responses: - '200': *158 + '200': *157 '404': *6 '422': *7 x-github: @@ -51202,7 +51102,7 @@ paths: parameters: - *324 - *325 - - *153 + - *152 requestBody: required: true content: @@ -51227,7 +51127,7 @@ paths: - gpu - accelerated responses: - '200': *158 + '200': *157 '404': *6 '422': *7 x-github: @@ -51253,7 +51153,7 @@ paths: parameters: - *324 - *325 - - *153 + - *152 responses: '200': *358 '404': *6 @@ -51284,10 +51184,10 @@ paths: parameters: - *324 - *325 - - *153 + - *152 - *359 responses: - '200': *158 + '200': *157 '404': *6 '422': *7 x-github: @@ -51621,8 +51521,8 @@ paths: - author - committer nullable: true - repository: *152 - head_repository: *152 + repository: *151 + head_repository: *151 head_repository_id: type: integer example: 5 @@ -52308,7 +52208,7 @@ paths: description: Response content: application/json: - schema: *161 + schema: *160 examples: default: value: @@ -52598,7 +52498,7 @@ paths: description: Response content: application/json: - schema: *161 + schema: *160 examples: default: value: @@ -52702,7 +52602,7 @@ paths: description: Response content: application/json: - schema: *161 + schema: *160 examples: default: value: @@ -52824,7 +52724,7 @@ paths: '204': description: Response '403': *29 - '500': *112 + '500': *111 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -52918,7 +52818,7 @@ paths: reviewer: anyOf: - *4 - - *189 + - *188 required: - environment - wait_timer @@ -53227,7 +53127,7 @@ paths: description: Response content: application/json: - schema: *161 + schema: *160 examples: default: value: @@ -53273,7 +53173,7 @@ paths: description: Response content: application/json: - schema: *161 + schema: *160 examples: default: value: @@ -53523,7 +53423,7 @@ paths: parameters: - *324 - *325 - - *160 + - *159 responses: '200': description: Response @@ -53559,7 +53459,7 @@ paths: parameters: - *324 - *325 - - *160 + - *159 requestBody: required: true content: @@ -53590,7 +53490,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *161 + schema: *160 examples: default: value: @@ -53618,7 +53518,7 @@ paths: parameters: - *324 - *325 - - *160 + - *159 responses: '204': description: Response @@ -53715,7 +53615,7 @@ paths: description: Response content: application/json: - schema: *161 + schema: *160 examples: default: value: @@ -53742,7 +53642,7 @@ paths: parameters: - *324 - *325 - - *163 + - *162 responses: '200': description: Response @@ -53778,7 +53678,7 @@ paths: parameters: - *324 - *325 - - *163 + - *162 requestBody: required: true content: @@ -53822,7 +53722,7 @@ paths: parameters: - *324 - *325 - - *163 + - *162 responses: '204': description: Response @@ -55095,7 +54995,7 @@ paths: description: The list of teams with review dismissal access. type: array - items: *189 + items: *188 apps: description: The list of apps with review dismissal access. @@ -55124,7 +55024,7 @@ paths: description: The list of teams allowed to bypass pull request requirements. type: array - items: *189 + items: *188 apps: description: The list of apps allowed to bypass pull request requirements. @@ -55213,7 +55113,7 @@ paths: type: string teams: type: array - items: *189 + items: *188 apps: type: array items: @@ -55555,12 +55455,12 @@ paths: nullable: true oneOf: - *4 - - *161 + - *160 committer: nullable: true oneOf: - *4 - - *161 + - *160 parents: type: array items: @@ -56339,7 +56239,7 @@ paths: items: *4 teams: type: array - items: *189 + items: *188 apps: type: array items: *5 @@ -56357,7 +56257,7 @@ paths: items: *4 teams: type: array - items: *189 + items: *188 apps: type: array items: *5 @@ -57744,9 +57644,9 @@ paths: application/json: schema: type: array - items: *189 + items: *188 examples: - default: *244 + default: *243 '404': *6 x-github: githubCloudOnly: false @@ -57804,9 +57704,9 @@ paths: application/json: schema: type: array - items: *189 + items: *188 examples: - default: *244 + default: *243 '422': *15 x-github: githubCloudOnly: false @@ -57865,9 +57765,9 @@ paths: application/json: schema: type: array - items: *189 + items: *188 examples: - default: *244 + default: *243 '422': *15 x-github: githubCloudOnly: false @@ -57925,9 +57825,9 @@ paths: application/json: schema: type: array - items: *189 + items: *188 examples: - default: *244 + default: *243 '422': *15 x-github: githubCloudOnly: false @@ -58707,7 +58607,7 @@ paths: check. type: array items: *80 - deployment: &720 + deployment: &718 title: Deployment description: A deployment created as the result of an Actions check run from a workflow that references an environment @@ -59472,7 +59372,7 @@ paths: description: Response content: application/json: - schema: *161 + schema: *160 examples: default: value: @@ -59610,7 +59510,7 @@ paths: nullable: true properties: *72 required: *73 - repository: *152 + repository: *151 created_at: type: string format: date-time @@ -59619,7 +59519,7 @@ paths: type: string format: date-time nullable: true - head_commit: &746 + head_commit: &744 title: Simple Commit description: A commit. type: object @@ -60026,7 +59926,7 @@ paths: required: - app_id - setting - repository: *152 + repository: *151 examples: default: value: @@ -60474,7 +60374,7 @@ paths: description: Response content: application/json: - schema: *161 + schema: *160 examples: default: value: @@ -60565,14 +60465,14 @@ paths: items: type: object properties: - number: *170 - created_at: *171 - updated_at: *172 - url: *173 - html_url: *174 + number: *169 + created_at: *170 + updated_at: *171 + url: *172 + html_url: *173 instances_url: *415 - state: *179 - fixed_at: *175 + state: *178 + fixed_at: *174 dismissed_by: title: Simple User description: A GitHub user. @@ -60580,7 +60480,7 @@ paths: properties: *20 required: *21 nullable: true - dismissed_at: *176 + dismissed_at: *175 dismissed_reason: *416 dismissed_comment: *417 rule: *418 @@ -60718,7 +60618,7 @@ paths: application/json: schema: *3 '404': *6 - '503': *113 + '503': *112 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -60748,7 +60648,7 @@ paths: field in the response from the `GET /repos/{owner}/{repo}/code-scanning/alerts` operation. required: true - schema: *170 + schema: *169 responses: '200': description: Response @@ -60757,14 +60657,14 @@ paths: schema: &423 type: object properties: - number: *170 - created_at: *171 - updated_at: *172 - url: *173 - html_url: *174 + number: *169 + created_at: *170 + updated_at: *171 + url: *172 + html_url: *173 instances_url: *415 - state: *179 - fixed_at: *175 + state: *178 + fixed_at: *174 dismissed_by: title: Simple User description: A GitHub user. @@ -60772,7 +60672,7 @@ paths: properties: *20 required: *21 nullable: true - dismissed_at: *176 + dismissed_at: *175 dismissed_reason: *416 dismissed_comment: *417 rule: @@ -60930,7 +60830,7 @@ paths: '304': *37 '403': *421 '404': *6 - '503': *113 + '503': *112 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -61077,7 +60977,7 @@ paths: application/json: schema: *3 '404': *6 - '503': *113 + '503': *112 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -61150,7 +61050,7 @@ paths: status: '400' '403': *421 '404': *6 - '503': *113 + '503': *112 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -61205,7 +61105,7 @@ paths: '404': *6 '422': description: Unprocessable Entity - '503': *113 + '503': *112 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -61279,7 +61179,7 @@ paths: '404': *6 '422': description: Unprocessable Entity - '503': *113 + '503': *112 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -61383,7 +61283,7 @@ paths: - source '403': *421 '404': *6 - '503': *113 + '503': *112 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -61558,7 +61458,7 @@ paths: warning: '' '403': *421 '404': *6 - '503': *113 + '503': *112 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -61667,7 +61567,7 @@ paths: content: application/json: schema: *3 - '503': *113 + '503': *112 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -61803,7 +61703,7 @@ paths: '400': *14 '403': *427 '404': *6 - '503': *113 + '503': *112 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -61945,7 +61845,7 @@ paths: commit_oid: 1927de39fefa25a9d0e64e3f540ff824a72f538c '403': *421 '404': *6 - '503': *113 + '503': *112 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -62021,7 +61921,7 @@ paths: description: Found '403': *421 '404': *6 - '503': *113 + '503': *112 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -62054,7 +61954,7 @@ paths: description: Response '403': *427 '404': *6 - '503': *113 + '503': *112 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -62504,7 +62404,7 @@ paths: content: application/json: schema: *3 - '503': *113 + '503': *112 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -62542,7 +62442,7 @@ paths: examples: default: *441 '404': *6 - '503': *113 + '503': *112 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -62702,7 +62602,7 @@ paths: source_location_prefix: "/" artifact_url: https://example.com '404': *6 - '503': *113 + '503': *112 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -62811,7 +62711,7 @@ paths: schedule: weekly '403': *421 '404': *6 - '503': *113 + '503': *112 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -62898,7 +62798,7 @@ paths: description: Response content: application/json: - schema: *161 + schema: *160 examples: default: value: @@ -62937,7 +62837,7 @@ paths: content: application/json: schema: *3 - '503': *113 + '503': *112 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -63079,7 +62979,7 @@ paths: '404': *6 '413': description: Payload Too Large if the sarif field is too large - '503': *113 + '503': *112 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -63148,7 +63048,7 @@ paths: '403': *421 '404': description: Not Found if the sarif id does not match any upload - '503': *113 + '503': *112 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -63227,7 +63127,7 @@ paths: html_url: https://github.com/organizations/octo-org/settings/security_products/configurations/edit/1325 created_at: '2024-05-01T00:00:00Z' updated_at: '2024-05-01T00:00:00Z' - '204': *183 + '204': *182 '304': *37 '403': *29 '404': *6 @@ -63390,7 +63290,7 @@ paths: type: integer codespaces: type: array - items: *232 + items: *231 examples: default: value: @@ -63666,7 +63566,7 @@ paths: start_url: https://api.github.com/user/codespaces/monalisa-octocat-hello-world-3f89ada1j3/start stop_url: https://api.github.com/user/codespaces/monalisa-octocat-hello-world-3f89ada1j3/stop recent_folders: [] - '500': *112 + '500': *111 '401': *25 '403': *29 '404': *6 @@ -63752,7 +63652,7 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *232 + schema: *231 examples: default: *445 '202': @@ -63760,14 +63660,14 @@ paths: being retried in the background content: application/json: - schema: *232 + schema: *231 examples: default: *445 '400': *14 '401': *25 '403': *29 '404': *6 - '503': *113 + '503': *112 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -63832,7 +63732,7 @@ paths: - path: ".devcontainer.json" display_name: Default project configuration total_count: 3 - '500': *112 + '500': *111 '400': *14 '401': *25 '403': *29 @@ -63892,14 +63792,14 @@ paths: type: integer machines: type: array - items: &665 + items: &663 type: object title: Codespace machine description: A description of the machine powering a codespace. properties: *446 required: *447 examples: - default: &666 + default: &664 value: total_count: 2 machines: @@ -63916,7 +63816,7 @@ paths: memory_in_bytes: 34359738368 cpus: 8 '304': *37 - '500': *112 + '500': *111 '401': *25 '403': *29 '404': *6 @@ -64070,7 +63970,7 @@ paths: '403': *29 '404': *6 '422': *15 - '503': *113 + '503': *112 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -64184,7 +64084,7 @@ paths: parameters: - *324 - *325 - - *160 + - *159 responses: '200': description: Response @@ -64214,7 +64114,7 @@ paths: parameters: - *324 - *325 - - *160 + - *159 requestBody: required: true content: @@ -64242,7 +64142,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *161 + schema: *160 examples: default: value: @@ -64268,7 +64168,7 @@ paths: parameters: - *324 - *325 - - *160 + - *159 responses: '204': description: Response @@ -64593,7 +64493,7 @@ paths: example: 42 type: integer format: int64 - repository: *152 + repository: *151 invitee: title: Simple User description: A GitHub user. @@ -64771,7 +64671,7 @@ paths: - an Enterprise Managed User (EMU) account was invited to a repository in an enterprise with personal user accounts content: application/json: - schema: *121 + schema: *120 '403': *29 x-github: triggersNotification: true @@ -65537,7 +65437,7 @@ paths: type: array items: *458 examples: - default: &577 + default: &575 value: - url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -65608,7 +65508,7 @@ paths: sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e headers: Link: *59 - '500': *112 + '500': *111 '400': *14 '404': *6 '409': *52 @@ -65828,7 +65728,7 @@ paths: type: array items: *462 examples: - default: &569 + default: &567 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -66472,8 +66372,8 @@ paths: ..... '422': *15 '404': *6 - '500': *112 - '503': *113 + '500': *111 + '503': *112 '409': *52 x-github: githubCloudOnly: false @@ -66861,7 +66761,7 @@ paths: type: string total_count: type: integer - repository: *152 + repository: *151 commit_url: type: string format: uri @@ -67004,7 +66904,7 @@ paths: application/json: schema: type: array - items: &642 + items: &640 title: Status description: The status of a commit. type: object @@ -67627,8 +67527,8 @@ paths: patch: "@@ -132,7 +132,7 @@ module Test @@ -1000,7 +1000,7 @@ module Test" '404': *6 - '500': *112 - '503': *113 + '500': *111 + '503': *112 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -67946,7 +67846,7 @@ paths: - size - type - url - - &582 + - &580 title: Content File description: Content File type: object @@ -68560,7 +68460,7 @@ paths: items: type: object properties: - placeholder_id: &634 + placeholder_id: &632 description: The ID of the push protection bypass placeholder. This value is returned on any push protected routes. @@ -68689,7 +68589,7 @@ paths: '422': *15 '404': *6 '409': *52 - '503': *113 + '503': *112 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -68835,20 +68735,20 @@ paths: parameters: - *324 - *325 + - *189 - *190 - *191 - *192 - - *193 - name: manifest in: query description: A comma-separated list of full manifest paths. If specified, only alerts for these manifests will be returned. schema: type: string - - *194 + - *193 - *475 + - *194 - *195 - - *196 - *53 - name: per_page description: The number of results per page (max 100). For more information, @@ -68871,7 +68771,7 @@ paths: type: object description: A Dependabot alert. properties: - number: *170 + number: *169 state: type: string description: The state of the Dependabot alert. @@ -68915,11 +68815,11 @@ paths: - transitive security_advisory: *476 security_vulnerability: *57 - url: *173 - html_url: *174 - created_at: *171 - updated_at: *172 - dismissed_at: *176 + url: *172 + html_url: *173 + created_at: *170 + updated_at: *171 + dismissed_at: *175 dismissed_by: title: Simple User description: A GitHub user. @@ -68943,7 +68843,7 @@ paths: dismissal. nullable: true maxLength: 280 - fixed_at: *175 + fixed_at: *174 auto_dismissed_at: *477 dismissal_request: *478 required: @@ -69186,7 +69086,7 @@ paths: or in `number` fields in the response from the `GET /repos/{owner}/{repo}/dependabot/alerts` operation. required: true - schema: *170 + schema: *169 responses: '200': description: Response @@ -69584,7 +69484,7 @@ paths: parameters: - *324 - *325 - - *160 + - *159 responses: '200': description: Response @@ -69618,7 +69518,7 @@ paths: parameters: - *324 - *325 - - *160 + - *159 requestBody: required: true content: @@ -69646,7 +69546,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *161 + schema: *160 examples: default: value: @@ -69672,7 +69572,7 @@ paths: parameters: - *324 - *325 - - *160 + - *159 responses: '204': description: Response @@ -71230,7 +71130,7 @@ paths: reviewer: anyOf: - *4 - - *189 + - *188 required: - id - node_id @@ -72260,7 +72160,7 @@ paths: - *324 - *325 - *492 - - *160 + - *159 responses: '200': description: Response @@ -72293,7 +72193,7 @@ paths: - *324 - *325 - *492 - - *160 + - *159 requestBody: required: true content: @@ -72324,7 +72224,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *161 + schema: *160 examples: default: value: @@ -72353,7 +72253,7 @@ paths: - *324 - *325 - *492 - - *160 + - *159 responses: '204': description: Default response @@ -72452,7 +72352,7 @@ paths: description: Response content: application/json: - schema: *161 + schema: *160 examples: default: value: @@ -72480,7 +72380,7 @@ paths: - *324 - *325 - *492 - - *163 + - *162 responses: '200': description: Response @@ -72511,7 +72411,7 @@ paths: parameters: - *324 - *325 - - *163 + - *162 - *492 requestBody: required: true @@ -72556,7 +72456,7 @@ paths: parameters: - *324 - *325 - - *163 + - *162 - *492 responses: '204': @@ -72671,7 +72571,7 @@ paths: application/json: schema: type: array - items: *152 + items: *151 examples: default: value: @@ -72924,7 +72824,7 @@ paths: application/json: schema: oneOf: - - *121 + - *120 - *505 x-github: githubCloudOnly: false @@ -74295,7 +74195,7 @@ paths: type: string format: uri example: https://api.github.com/repos/octocat/Hello-World/hooks/1/deliveries - last_response: &754 + last_response: &752 title: Hook Response type: object properties: @@ -74474,7 +74374,7 @@ paths: parameters: - *324 - *325 - - *204 + - *203 responses: '200': description: Response @@ -74504,7 +74404,7 @@ paths: parameters: - *324 - *325 - - *204 + - *203 requestBody: required: true content: @@ -74574,7 +74474,7 @@ paths: parameters: - *324 - *325 - - *204 + - *203 responses: '204': description: Response @@ -74600,7 +74500,7 @@ paths: parameters: - *324 - *325 - - *204 + - *203 responses: '200': description: Response @@ -74629,7 +74529,7 @@ paths: parameters: - *324 - *325 - - *204 + - *203 requestBody: required: false content: @@ -74675,9 +74575,9 @@ paths: parameters: - *324 - *325 - - *204 + - *203 - *17 - - *205 + - *204 responses: '200': description: Response @@ -74685,9 +74585,9 @@ paths: application/json: schema: type: array - items: *206 + items: *205 examples: - default: *207 + default: *206 '400': *14 '422': *15 x-github: @@ -74708,16 +74608,16 @@ paths: parameters: - *324 - *325 - - *204 + - *203 - *16 responses: '200': description: Response content: application/json: - schema: *208 + schema: *207 examples: - default: *209 + default: *208 '400': *14 '422': *15 x-github: @@ -74738,7 +74638,7 @@ paths: parameters: - *324 - *325 - - *204 + - *203 - *16 responses: '202': *39 @@ -74763,7 +74663,7 @@ paths: parameters: - *324 - *325 - - *204 + - *203 responses: '204': description: Response @@ -74790,7 +74690,7 @@ paths: parameters: - *324 - *325 - - *204 + - *203 responses: '204': description: Response @@ -74863,7 +74763,7 @@ paths: - *324 - *325 responses: - '204': *183 + '204': *182 '409': *52 x-github: githubCloudOnly: false @@ -74884,7 +74784,7 @@ paths: - *324 - *325 responses: - '204': *183 + '204': *182 '409': *52 x-github: githubCloudOnly: false @@ -75346,7 +75246,7 @@ paths: parameters: - *324 - *325 - - &687 + - &685 name: since description: A user ID. Only return users with an ID greater than this ID. in: query @@ -75671,7 +75571,7 @@ paths: application/json: schema: anyOf: - - *222 + - *221 - type: object properties: {} additionalProperties: false @@ -75719,7 +75619,7 @@ paths: description: Response content: application/json: - schema: *222 + schema: *221 examples: default: *522 '409': @@ -75780,7 +75680,7 @@ paths: type: array items: *523 examples: - default: &680 + default: &678 value: - id: 1 repository: @@ -75913,7 +75813,7 @@ paths: parameters: - *324 - *325 - - *226 + - *225 requestBody: required: false content: @@ -76075,7 +75975,7 @@ paths: parameters: - *324 - *325 - - *226 + - *225 responses: '204': description: Response @@ -76155,7 +76055,7 @@ paths: required: false schema: type: string - - *230 + - *229 - name: sort description: What to sort results by. in: query @@ -76596,7 +76496,7 @@ paths: '400': *14 '403': *29 '422': *15 - '503': *113 + '503': *112 '404': *6 '410': *524 x-github: @@ -77076,7 +76976,7 @@ paths: properties: *20 required: *21 nullable: true - requested_team: *189 + requested_team: *188 dismissed_review: title: Issue Event Dismissed Review type: object @@ -77731,7 +77631,7 @@ paths: examples: default: *532 '422': *15 - '503': *113 + '503': *112 '403': *29 '301': *328 '404': *6 @@ -78593,7 +78493,7 @@ paths: properties: *72 required: *73 review_requester: *4 - requested_team: *189 + requested_team: *188 requested_reviewer: *4 required: - review_requester @@ -78640,7 +78540,7 @@ paths: properties: *72 required: *73 review_requester: *4 - requested_team: *189 + requested_team: *188 requested_reviewer: *4 required: - review_requester @@ -79821,7 +79721,7 @@ paths: '403': *29 '404': *6 '422': *7 - '503': *113 + '503': *112 x-github: triggersNotification: true githubCloudOnly: false @@ -80177,7 +80077,7 @@ paths: type: string comments: type: array - items: &571 + items: &569 title: Pull Request Review Comment description: Pull Request Review Comments are comments on a portion of the Pull Request's diff. @@ -81494,8 +81394,8 @@ paths: title: Milestone description: A collection of related issues and pull requests. type: object - properties: *264 - required: *265 + properties: *263 + required: *264 examples: default: value: @@ -82692,7 +82592,7 @@ paths: - *325 - *566 responses: - '204': *183 + '204': *182 '404': *6 x-github: githubCloudOnly: false @@ -82949,7 +82849,7 @@ paths: description: Empty response content: application/json: - schema: *161 + schema: *160 examples: default: value: @@ -83017,7 +82917,7 @@ paths: - *324 - *325 responses: - '204': *183 + '204': *182 '422': *14 x-github: githubCloudOnly: false @@ -83039,7 +82939,7 @@ paths: - *324 - *325 responses: - '204': *183 + '204': *182 '422': *14 x-github: githubCloudOnly: false @@ -83068,9 +82968,16 @@ paths: application/json: schema: type: array - items: *111 + items: *277 examples: - default: *567 + default: + value: + - property_name: environment + value: production + - property_name: service + value: web + - property_name: team + value: octocat '403': *29 '404': *6 x-github: @@ -83105,11 +83012,19 @@ paths: type: array description: A list of custom property names and associated values to apply to the repositories. - items: *111 + items: *277 required: - properties examples: - default: *568 + default: + value: + properties: + - property_name: environment + value: production + - property_name: service + value: web + - property_name: team + value: octocat responses: '204': description: No Content when custom property values are successfully created @@ -83210,7 +83125,7 @@ paths: type: array items: *462 examples: - default: *569 + default: *567 headers: Link: *59 '304': *37 @@ -83308,7 +83223,7 @@ paths: description: Response content: application/json: - schema: &573 + schema: &571 type: object title: Pull Request description: Pull requests let you tell others about changes you've @@ -83419,8 +83334,8 @@ paths: title: Milestone description: A collection of related issues and pull requests. type: object - properties: *264 - required: *265 + properties: *263 + required: *264 nullable: true active_lock_reason: type: string @@ -83504,14 +83419,14 @@ paths: _links: type: object properties: - comments: *266 - commits: *266 - statuses: *266 - html: *266 - issue: *266 - review_comments: *266 - review_comment: *266 - self: *266 + comments: *265 + commits: *265 + statuses: *265 + html: *265 + issue: *265 + review_comments: *265 + review_comment: *265 + self: *265 required: - comments - commits @@ -83522,7 +83437,7 @@ paths: - review_comment - self author_association: *76 - auto_merge: *570 + auto_merge: *568 draft: description: Indicates whether or not the pull request is a draft. example: false @@ -83614,7 +83529,7 @@ paths: - merged_by - review_comments examples: - default: &574 + default: &572 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -84171,9 +84086,9 @@ paths: application/json: schema: type: array - items: *571 + items: *569 examples: - default: &576 + default: &574 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -84258,9 +84173,9 @@ paths: description: Response content: application/json: - schema: *571 + schema: *569 examples: - default: &572 + default: &570 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -84359,9 +84274,9 @@ paths: description: Response content: application/json: - schema: *571 + schema: *569 examples: - default: *572 + default: *570 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -84564,7 +84479,7 @@ paths: parameters: - *324 - *325 - - &575 + - &573 name: pull_number description: The number that identifies the pull request. in: path @@ -84577,9 +84492,9 @@ paths: to fetch diff and patch formats. content: application/json: - schema: *573 + schema: *571 examples: - default: *574 + default: *572 '304': *37 '404': *6 '406': @@ -84587,8 +84502,8 @@ paths: content: application/json: schema: *3 - '500': *112 - '503': *113 + '500': *111 + '503': *112 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -84616,7 +84531,7 @@ paths: parameters: - *324 - *325 - - *575 + - *573 requestBody: required: false content: @@ -84658,9 +84573,9 @@ paths: description: Response content: application/json: - schema: *573 + schema: *571 examples: - default: *574 + default: *572 '422': *15 '403': *29 x-github: @@ -84684,7 +84599,7 @@ paths: parameters: - *324 - *325 - - *575 + - *573 requestBody: required: true content: @@ -84744,7 +84659,7 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *232 + schema: *231 examples: default: *445 '202': @@ -84752,13 +84667,13 @@ paths: being retried in the background content: application/json: - schema: *232 + schema: *231 examples: default: *445 '401': *25 '403': *29 '404': *6 - '503': *113 + '503': *112 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -84786,7 +84701,7 @@ paths: parameters: - *324 - *325 - - *575 + - *573 - *99 - name: direction description: The direction to sort results. Ignored without `sort` parameter. @@ -84807,9 +84722,9 @@ paths: application/json: schema: type: array - items: *571 + items: *569 examples: - default: *576 + default: *574 headers: Link: *59 x-github: @@ -84844,7 +84759,7 @@ paths: parameters: - *324 - *325 - - *575 + - *573 requestBody: required: true content: @@ -84949,7 +84864,7 @@ paths: description: Response content: application/json: - schema: *571 + schema: *569 examples: example-for-a-multi-line-comment: value: @@ -85039,7 +84954,7 @@ paths: parameters: - *324 - *325 - - *575 + - *573 - *91 requestBody: required: true @@ -85062,7 +84977,7 @@ paths: description: Response content: application/json: - schema: *571 + schema: *569 examples: default: value: @@ -85150,7 +85065,7 @@ paths: parameters: - *324 - *325 - - *575 + - *573 - *17 - *19 responses: @@ -85162,7 +85077,7 @@ paths: type: array items: *458 examples: - default: *577 + default: *575 headers: Link: *59 x-github: @@ -85194,7 +85109,7 @@ paths: parameters: - *324 - *325 - - *575 + - *573 - *17 - *19 responses: @@ -85222,8 +85137,8 @@ paths: headers: Link: *59 '422': *15 - '500': *112 - '503': *113 + '500': *111 + '503': *112 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -85244,7 +85159,7 @@ paths: parameters: - *324 - *325 - - *575 + - *573 responses: '204': description: Response if pull request has been merged @@ -85269,7 +85184,7 @@ paths: parameters: - *324 - *325 - - *575 + - *573 requestBody: required: false content: @@ -85382,7 +85297,7 @@ paths: parameters: - *324 - *325 - - *575 + - *573 responses: '200': description: Response @@ -85398,7 +85313,7 @@ paths: items: *4 teams: type: array - items: *189 + items: *188 required: - users - teams @@ -85459,7 +85374,7 @@ paths: parameters: - *324 - *325 - - *575 + - *573 requestBody: required: false content: @@ -86034,7 +85949,7 @@ paths: parameters: - *324 - *325 - - *575 + - *573 requestBody: required: true content: @@ -86575,7 +86490,7 @@ paths: parameters: - *324 - *325 - - *575 + - *573 - *17 - *19 responses: @@ -86585,7 +86500,7 @@ paths: application/json: schema: type: array - items: &578 + items: &576 title: Pull Request Review description: Pull Request Reviews are reviews on pull requests. type: object @@ -86738,7 +86653,7 @@ paths: parameters: - *324 - *325 - - *575 + - *573 requestBody: required: false content: @@ -86824,9 +86739,9 @@ paths: description: Response content: application/json: - schema: *578 + schema: *576 examples: - default: &580 + default: &578 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -86891,8 +86806,8 @@ paths: parameters: - *324 - *325 - - *575 - - &579 + - *573 + - &577 name: review_id description: The unique identifier of the review. in: path @@ -86904,9 +86819,9 @@ paths: description: Response content: application/json: - schema: *578 + schema: *576 examples: - default: &581 + default: &579 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -86967,8 +86882,8 @@ paths: parameters: - *324 - *325 - - *575 - - *579 + - *573 + - *577 requestBody: required: true content: @@ -86991,7 +86906,7 @@ paths: description: Response content: application/json: - schema: *578 + schema: *576 examples: default: value: @@ -87055,16 +86970,16 @@ paths: parameters: - *324 - *325 - - *575 - - *579 + - *573 + - *577 responses: '200': description: Response content: application/json: - schema: *578 + schema: *576 examples: - default: *580 + default: *578 '422': *7 '404': *6 x-github: @@ -87093,8 +87008,8 @@ paths: parameters: - *324 - *325 - - *575 - - *579 + - *573 + - *577 - *17 - *19 responses: @@ -87177,9 +87092,9 @@ paths: _links: type: object properties: - self: *266 - html: *266 - pull_request: *266 + self: *265 + html: *265 + pull_request: *265 required: - self - html @@ -87331,8 +87246,8 @@ paths: parameters: - *324 - *325 - - *575 - - *579 + - *573 + - *577 requestBody: required: true content: @@ -87360,7 +87275,7 @@ paths: description: Response content: application/json: - schema: *578 + schema: *576 examples: default: value: @@ -87425,8 +87340,8 @@ paths: parameters: - *324 - *325 - - *575 - - *579 + - *573 + - *577 requestBody: required: true content: @@ -87461,9 +87376,9 @@ paths: description: Response content: application/json: - schema: *578 + schema: *576 examples: - default: *581 + default: *579 '404': *6 '422': *7 '403': *29 @@ -87487,7 +87402,7 @@ paths: parameters: - *324 - *325 - - *575 + - *573 requestBody: required: false content: @@ -87564,9 +87479,9 @@ paths: description: Response content: application/json: - schema: *582 + schema: *580 examples: - default: &583 + default: &581 value: type: file encoding: base64 @@ -87629,9 +87544,9 @@ paths: description: Response content: application/json: - schema: *582 + schema: *580 examples: - default: *583 + default: *581 '404': *6 '422': *15 x-github: @@ -87664,7 +87579,7 @@ paths: application/json: schema: type: array - items: *584 + items: *582 examples: default: value: @@ -87835,9 +87750,9 @@ paths: description: Response content: application/json: - schema: *584 + schema: *582 examples: - default: &588 + default: &586 value: url: https://api.github.com/repos/octocat/Hello-World/releases/1 html_url: https://github.com/octocat/Hello-World/releases/v1.0.0 @@ -87944,7 +87859,7 @@ paths: parameters: - *324 - *325 - - &586 + - &584 name: asset_id description: The unique identifier of the asset. in: path @@ -87956,9 +87871,9 @@ paths: description: Response content: application/json: - schema: *585 + schema: *583 examples: - default: &587 + default: &585 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 @@ -88011,7 +87926,7 @@ paths: parameters: - *324 - *325 - - *586 + - *584 requestBody: required: false content: @@ -88039,9 +87954,9 @@ paths: description: Response content: application/json: - schema: *585 + schema: *583 examples: - default: *587 + default: *585 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -88059,7 +87974,7 @@ paths: parameters: - *324 - *325 - - *586 + - *584 responses: '204': description: Response @@ -88176,9 +88091,9 @@ paths: description: Response content: application/json: - schema: *584 + schema: *582 examples: - default: *588 + default: *586 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -88209,9 +88124,9 @@ paths: description: Response content: application/json: - schema: *584 + schema: *582 examples: - default: *588 + default: *586 '404': *6 x-github: githubCloudOnly: false @@ -88235,7 +88150,7 @@ paths: parameters: - *324 - *325 - - &589 + - &587 name: release_id description: The unique identifier of the release. in: path @@ -88249,9 +88164,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: *584 + schema: *582 examples: - default: *588 + default: *586 '401': description: Unauthorized x-github: @@ -88271,7 +88186,7 @@ paths: parameters: - *324 - *325 - - *589 + - *587 requestBody: required: false content: @@ -88335,9 +88250,9 @@ paths: description: Response content: application/json: - schema: *584 + schema: *582 examples: - default: *588 + default: *586 '404': description: Not Found if the discussion category name is invalid content: @@ -88360,7 +88275,7 @@ paths: parameters: - *324 - *325 - - *589 + - *587 responses: '204': description: Response @@ -88382,7 +88297,7 @@ paths: parameters: - *324 - *325 - - *589 + - *587 - *17 - *19 responses: @@ -88392,7 +88307,7 @@ paths: application/json: schema: type: array - items: *585 + items: *583 examples: default: value: @@ -88475,7 +88390,7 @@ paths: parameters: - *324 - *325 - - *589 + - *587 - name: name in: query required: true @@ -88501,7 +88416,7 @@ paths: description: Response for successful upload content: application/json: - schema: *585 + schema: *583 examples: response-for-successful-upload: value: @@ -88558,7 +88473,7 @@ paths: parameters: - *324 - *325 - - *589 + - *587 - 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. @@ -88607,7 +88522,7 @@ paths: parameters: - *324 - *325 - - *589 + - *587 requestBody: required: true content: @@ -88670,7 +88585,7 @@ paths: parameters: - *324 - *325 - - *589 + - *587 - *528 responses: '204': @@ -88714,7 +88629,7 @@ paths: oneOf: - allOf: - *286 - - &590 + - &588 title: repository ruleset data for rule description: User-defined metadata to store domain-specific information limited to 8 keys with scalar values. @@ -88735,67 +88650,67 @@ paths: description: The ID of the ruleset that includes this rule. - allOf: - *287 - - *590 + - *588 - allOf: - *288 - - *590 + - *588 - allOf: - *289 - - *590 + - *588 - allOf: - - *591 - - *590 + - *589 + - *588 - allOf: - *290 - - *590 + - *588 - allOf: - *291 - - *590 + - *588 - allOf: - *292 - - *590 + - *588 - allOf: - *293 - - *590 + - *588 - allOf: - *294 - - *590 + - *588 - allOf: - *295 - - *590 + - *588 - allOf: - *296 - - *590 + - *588 - allOf: - *297 - - *590 + - *588 - allOf: - *298 - - *590 + - *588 - allOf: - *299 - - *590 + - *588 - allOf: - *300 - - *590 + - *588 - allOf: - *301 - - *590 + - *588 - allOf: - *302 - - *590 + - *588 - allOf: - *303 - - *590 + - *588 - allOf: - *304 - - *590 + - *588 - allOf: - *305 - - *590 + - *588 - allOf: - *306 - - *590 + - *588 examples: default: value: @@ -88846,7 +88761,7 @@ paths: schema: type: boolean default: true - - *592 + - *590 responses: '200': description: Response @@ -88885,7 +88800,7 @@ paths: created_at: '2023-08-15T08:43:03Z' updated_at: '2023-09-23T16:29:47Z' '404': *6 - '500': *112 + '500': *111 post: summary: Create a repository ruleset description: Create a ruleset for a repository. @@ -88931,7 +88846,7 @@ paths: rules: type: array description: An array of rules within the ruleset. - items: *593 + items: *591 required: - name - enforcement @@ -88964,7 +88879,7 @@ paths: application/json: schema: *307 examples: - default: &603 + default: &601 value: id: 42 name: super cool ruleset @@ -88997,7 +88912,7 @@ paths: created_at: '2023-07-15T08:43:03Z' updated_at: '2023-08-23T16:29:47Z' '404': *6 - '500': *112 + '500': *111 "/repos/{owner}/{repo}/rulesets/rule-suites": get: summary: List repository rule suites @@ -89013,10 +88928,10 @@ paths: parameters: - *324 - *325 + - *592 + - *593 - *594 - *595 - - *596 - - *597 - *17 - *19 responses: @@ -89024,11 +88939,11 @@ paths: description: Response content: application/json: - schema: *598 + schema: *596 examples: - default: *599 + default: *597 '404': *6 - '500': *112 + '500': *111 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -89049,17 +88964,17 @@ paths: parameters: - *324 - *325 - - *600 + - *598 responses: '200': description: Response content: application/json: - schema: *601 + schema: *599 examples: - default: *602 + default: *600 '404': *6 - '500': *112 + '500': *111 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -89108,9 +89023,9 @@ paths: application/json: schema: *307 examples: - default: *603 + default: *601 '404': *6 - '500': *112 + '500': *111 put: summary: Update a repository ruleset description: Update a ruleset for a repository. @@ -89161,7 +89076,7 @@ paths: rules: description: An array of rules within the ruleset. type: array - items: *593 + items: *591 examples: default: value: @@ -89191,9 +89106,9 @@ paths: application/json: schema: *307 examples: - default: *603 + default: *601 '404': *6 - '500': *112 + '500': *111 delete: summary: Delete a repository ruleset description: Delete a ruleset for a repository. @@ -89221,7 +89136,7 @@ paths: '204': description: Response '404': *6 - '500': *112 + '500': *111 "/repos/{owner}/{repo}/rulesets/{ruleset_id}/history": get: summary: Get repository ruleset history @@ -89252,9 +89167,9 @@ paths: type: array items: *310 examples: - default: *604 + default: *602 '404': *6 - '500': *112 + '500': *111 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -89290,7 +89205,7 @@ paths: description: Response content: application/json: - schema: *605 + schema: *603 examples: default: value: @@ -89323,7 +89238,7 @@ paths: operator: contains pattern: github '404': *6 - '500': *112 + '500': *111 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -89347,20 +89262,20 @@ paths: parameters: - *324 - *325 + - *604 + - *605 - *606 - *607 - *608 - - *609 - - *610 - *53 - *19 - *17 + - *609 + - *610 - *611 - *612 - *613 - *614 - - *615 - - *616 responses: '200': description: Response @@ -89368,11 +89283,11 @@ paths: application/json: schema: type: array - items: &620 + items: &618 type: object properties: - number: *170 - created_at: *171 + number: *169 + created_at: *170 updated_at: type: string description: 'The time that the alert was last updated in ISO @@ -89380,15 +89295,15 @@ paths: format: date-time readOnly: true nullable: true - url: *173 - html_url: *174 + url: *172 + html_url: *173 locations_url: type: string format: uri description: The REST API URL of the code locations for this alert. - state: *617 - resolution: *618 + state: *615 + resolution: *616 resolved_at: type: string format: date-time @@ -89484,7 +89399,7 @@ paths: pull request. ' - oneOf: *619 + oneOf: *617 nullable: true has_more_locations: type: boolean @@ -89611,7 +89526,7 @@ paths: '404': description: Repository is public or secret scanning is disabled for the repository - '503': *113 + '503': *112 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -89636,13 +89551,13 @@ paths: - *324 - *325 - *422 - - *616 + - *614 responses: '200': description: Response content: application/json: - schema: *620 + schema: *618 examples: default: value: @@ -89673,7 +89588,7 @@ paths: '404': description: Repository is public, or secret scanning is disabled for the repository, or the resource is not found - '503': *113 + '503': *112 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -89706,8 +89621,8 @@ paths: schema: type: object properties: - state: *617 - resolution: *618 + state: *615 + resolution: *616 resolution_comment: description: An optional comment when closing or reopening an alert. Cannot be updated or deleted. @@ -89741,7 +89656,7 @@ paths: description: Response content: application/json: - schema: *620 + schema: *618 examples: default: value: @@ -89814,7 +89729,7 @@ paths: '422': description: State does not match the resolution or resolution comment, or assignee does not have write access to the repository - '503': *113 + '503': *112 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -89849,7 +89764,7 @@ paths: schema: type: array description: List of locations where the secret was detected - items: &776 + items: &774 type: object properties: type: @@ -89875,6 +89790,8 @@ paths: example: commit details: oneOf: + - *619 + - *620 - *621 - *622 - *623 @@ -89886,8 +89803,6 @@ paths: - *629 - *630 - *631 - - *632 - - *633 examples: default: value: @@ -89951,7 +89866,7 @@ paths: '404': description: Repository is public, or secret scanning is disabled for the repository, or the resource is not found - '503': *113 + '503': *112 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -89982,14 +89897,14 @@ paths: schema: type: object properties: - reason: &635 + reason: &633 description: The reason for bypassing push protection. type: string enum: - false_positive - used_in_tests - will_fix_later - placeholder_id: *634 + placeholder_id: *632 required: - reason - placeholder_id @@ -90006,7 +89921,7 @@ paths: schema: type: object properties: - reason: *635 + reason: *633 expire_at: type: string format: date-time @@ -90029,7 +89944,7 @@ paths: this repository. '422': description: Bad request, input data missing or incorrect. - '503': *113 + '503': *112 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -90058,7 +89973,7 @@ paths: '404': description: Repository does not have GitHub Advanced Security or secret scanning enabled - '503': *113 + '503': *112 '200': description: Response content: @@ -90068,7 +89983,7 @@ paths: properties: incremental_scans: type: array - items: &636 + items: &634 description: Information on a single scan performed by secret scanning on the repository type: object @@ -90094,15 +90009,15 @@ paths: nullable: true pattern_update_scans: type: array - items: *636 + items: *634 backfill_scans: type: array - items: *636 + items: *634 custom_pattern_backfill_scans: type: array items: allOf: - - *636 + - *634 - type: object properties: pattern_name: @@ -90217,9 +90132,9 @@ paths: application/json: schema: type: array - items: *637 + items: *635 examples: - default: *638 + default: *636 '400': *14 '404': *6 x-github: @@ -90403,9 +90318,9 @@ paths: description: Response content: application/json: - schema: *637 + schema: *635 examples: - default: &640 + default: &638 value: ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -90743,7 +90658,7 @@ paths: description: Response content: application/json: - schema: *637 + schema: *635 examples: default: value: @@ -90892,15 +90807,15 @@ paths: parameters: - *324 - *325 - - *639 + - *637 responses: '200': description: Response content: application/json: - schema: *637 + schema: *635 examples: - default: *640 + default: *638 '403': *29 '404': *6 x-github: @@ -90926,7 +90841,7 @@ paths: parameters: - *324 - *325 - - *639 + - *637 requestBody: required: true content: @@ -91085,17 +91000,17 @@ paths: description: Response content: application/json: - schema: *637 + schema: *635 examples: - default: *640 - add_credit: *640 + default: *638 + add_credit: *638 '403': *29 '404': *6 '422': description: Validation failed, or the endpoint has been spammed. content: application/json: - schema: *121 + schema: *120 examples: invalid_state_transition: value: @@ -91128,7 +91043,7 @@ paths: parameters: - *324 - *325 - - *639 + - *637 responses: '202': *39 '400': *14 @@ -91157,7 +91072,7 @@ paths: parameters: - *324 - *325 - - *639 + - *637 responses: '202': description: Response @@ -91301,7 +91216,7 @@ paths: application/json: schema: type: array - items: &641 + items: &639 title: Code Frequency Stat description: Code Frequency Stat type: array @@ -91314,7 +91229,7 @@ paths: - 1124 - -435 '202': *39 - '204': *183 + '204': *182 '422': description: Repository contains more than 10,000 commits x-github: @@ -91384,7 +91299,7 @@ paths: total: 89 week: 1336280400 '202': *39 - '204': *183 + '204': *182 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -91486,7 +91401,7 @@ paths: d: 77 c: 10 '202': *39 - '204': *183 + '204': *182 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -91674,7 +91589,7 @@ paths: application/json: schema: type: array - items: *641 + items: *639 examples: default: value: @@ -91687,7 +91602,7 @@ paths: - - 0 - 2 - 21 - '204': *183 + '204': *182 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -91762,7 +91677,7 @@ paths: description: Response content: application/json: - schema: *642 + schema: *640 examples: default: value: @@ -91856,7 +91771,7 @@ paths: description: if you subscribe to the repository content: application/json: - schema: &643 + schema: &641 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -91951,7 +91866,7 @@ paths: description: Response content: application/json: - schema: *643 + schema: *641 examples: default: value: @@ -92088,7 +92003,7 @@ paths: application/json: schema: type: array - items: &644 + items: &642 title: Tag protection description: Tag protection type: object @@ -92164,7 +92079,7 @@ paths: description: Response content: application/json: - schema: *644 + schema: *642 examples: default: value: @@ -92281,9 +92196,9 @@ paths: application/json: schema: type: array - items: *189 + items: *188 examples: - default: *244 + default: *243 headers: Link: *59 '404': *6 @@ -92312,7 +92227,7 @@ paths: description: Response content: application/json: - schema: &645 + schema: &643 title: Topic description: A topic aggregates entities that are related to a subject. type: object @@ -92324,7 +92239,7 @@ paths: required: - names examples: - default: &646 + default: &644 value: names: - octocat @@ -92379,9 +92294,9 @@ paths: description: Response content: application/json: - schema: *645 + schema: *643 examples: - default: *646 + default: *644 '404': *6 '422': *7 x-github: @@ -92404,7 +92319,7 @@ paths: parameters: - *324 - *325 - - &647 + - &645 name: per description: The time frame to display results for. in: query @@ -92433,7 +92348,7 @@ paths: example: 128 clones: type: array - items: &648 + items: &646 title: Traffic type: object properties: @@ -92674,7 +92589,7 @@ paths: parameters: - *324 - *325 - - *647 + - *645 responses: '200': description: Response @@ -92693,7 +92608,7 @@ paths: example: 3782 views: type: array - items: *648 + items: *646 required: - uniques - count @@ -92807,7 +92722,7 @@ paths: description: Response content: application/json: - schema: *152 + schema: *151 examples: default: value: @@ -93255,7 +93170,7 @@ paths: application/json: schema: type: array - items: *152 + items: *151 examples: default: value: @@ -93444,7 +93359,7 @@ paths: html_url: type: string format: uri - repository: *152 + repository: *151 score: type: number file_size: @@ -93462,7 +93377,7 @@ paths: example: - 73..77 - 77..78 - text_matches: &649 + text_matches: &647 title: Search Result Text Matches type: array items: @@ -93576,7 +93491,7 @@ paths: releases_url: http://api.github.com/repos/octocat/Hello-World/releases{/id} score: 1 '304': *37 - '503': *113 + '503': *112 '422': *15 '403': *29 x-github: @@ -93624,7 +93539,7 @@ paths: enum: - author-date - committer-date - - &650 + - &648 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 @@ -93747,12 +93662,12 @@ paths: type: string sha: type: string - repository: *152 + repository: *151 score: type: number node_id: type: string - text_matches: *649 + text_matches: *647 required: - sha - node_id @@ -93944,7 +93859,7 @@ paths: - interactions - created - updated - - *650 + - *648 - *17 - *19 - name: advanced_search @@ -94041,11 +93956,11 @@ paths: description: type: string nullable: true - sub_issues_summary: *651 - issue_dependencies_summary: *652 + sub_issues_summary: *649 + issue_dependencies_summary: *650 issue_field_values: type: array - items: *653 + items: *651 state: type: string state_reason: @@ -94062,8 +93977,8 @@ paths: title: Milestone description: A collection of related issues and pull requests. type: object - properties: *264 - required: *265 + properties: *263 + required: *264 nullable: true comments: type: integer @@ -94077,7 +93992,7 @@ paths: type: string format: date-time nullable: true - text_matches: *649 + text_matches: *647 pull_request: type: object properties: @@ -94121,7 +94036,7 @@ paths: timeline_url: type: string format: uri - type: *227 + type: *226 performed_via_github_app: title: GitHub app description: GitHub apps are a new way to extend GitHub. @@ -94249,7 +94164,7 @@ paths: locked: true author_association: COLLABORATOR state_reason: completed - '503': *113 + '503': *112 '422': *15 '304': *37 '403': *29 @@ -94302,7 +94217,7 @@ paths: enum: - created - updated - - *650 + - *648 - *17 - *19 responses: @@ -94346,7 +94261,7 @@ paths: nullable: true score: type: number - text_matches: *649 + text_matches: *647 required: - id - node_id @@ -94431,7 +94346,7 @@ paths: - forks - help-wanted-issues - updated - - *650 + - *648 - *17 - *19 responses: @@ -94670,7 +94585,7 @@ paths: - admin - pull - push - text_matches: *649 + text_matches: *647 temp_clone_token: type: string allow_merge_commit: @@ -94872,7 +94787,7 @@ paths: spdx_id: MIT node_id: MDc6TGljZW5zZW1pdA== html_url: https://api.github.com/licenses/mit - '503': *113 + '503': *112 '422': *15 '304': *37 x-github: @@ -94970,7 +94885,7 @@ paths: type: string format: uri nullable: true - text_matches: *649 + text_matches: *647 related: type: array nullable: true @@ -95161,7 +95076,7 @@ paths: - followers - repositories - joined - - *650 + - *648 - *17 - *19 responses: @@ -95265,7 +95180,7 @@ paths: hireable: type: boolean nullable: true - text_matches: *649 + text_matches: *647 blog: type: string nullable: true @@ -95324,7 +95239,7 @@ paths: events_url: https://api.github.com/users/mojombo/events{/privacy} site_admin: true '304': *37 - '503': *113 + '503': *112 '422': *15 x-github: githubCloudOnly: false @@ -95344,7 +95259,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#get-a-team-legacy parameters: - - &654 + - &652 name: team_id description: The unique identifier of the team. in: path @@ -95385,7 +95300,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#update-a-team-legacy parameters: - - *654 + - *652 requestBody: required: true content: @@ -95485,7 +95400,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#delete-a-team-legacy parameters: - - *654 + - *652 responses: '204': description: Response @@ -95514,7 +95429,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#list-pending-team-invitations-legacy parameters: - - *654 + - *652 - *17 - *19 responses: @@ -95524,9 +95439,9 @@ paths: application/json: schema: type: array - items: *224 + items: *223 examples: - default: *225 + default: *224 headers: Link: *59 x-github: @@ -95552,7 +95467,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#list-team-members-legacy parameters: - - *654 + - *652 - name: role description: Filters members returned by their role in the team. in: query @@ -95603,7 +95518,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#get-team-member-legacy parameters: - - *654 + - *652 - *64 responses: '204': @@ -95640,7 +95555,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#add-team-member-legacy parameters: - - *654 + - *652 - *64 responses: '204': @@ -95680,7 +95595,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#remove-team-member-legacy parameters: - - *654 + - *652 - *64 responses: '204': @@ -95717,7 +95632,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#get-team-membership-for-a-user-legacy parameters: - - *654 + - *652 - *64 responses: '200': @@ -95726,7 +95641,7 @@ paths: application/json: schema: *323 examples: - response-if-user-is-a-team-maintainer: *655 + response-if-user-is-a-team-maintainer: *653 '404': *6 x-github: githubCloudOnly: false @@ -95759,7 +95674,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#add-or-update-team-membership-for-a-user-legacy parameters: - - *654 + - *652 - *64 requestBody: required: false @@ -95787,7 +95702,7 @@ paths: application/json: schema: *323 examples: - response-if-users-membership-with-team-is-now-pending: *656 + response-if-users-membership-with-team-is-now-pending: *654 '403': description: Forbidden if team synchronization is set up '422': @@ -95821,7 +95736,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#remove-team-membership-for-a-user-legacy parameters: - - *654 + - *652 - *64 responses: '204': @@ -95849,7 +95764,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#list-team-repositories-legacy parameters: - - *654 + - *652 - *17 - *19 responses: @@ -95859,9 +95774,9 @@ paths: application/json: schema: type: array - items: *152 + items: *151 examples: - default: *251 + default: *250 headers: Link: *59 '404': *6 @@ -95891,7 +95806,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#check-team-permissions-for-a-repository-legacy parameters: - - *654 + - *652 - *324 - *325 responses: @@ -95899,7 +95814,7 @@ paths: description: Alternative response with extra repository information content: application/json: - schema: *657 + schema: *655 examples: alternative-response-with-extra-repository-information: value: @@ -96050,7 +95965,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#add-or-update-team-repository-permissions-legacy parameters: - - *654 + - *652 - *324 - *325 requestBody: @@ -96102,7 +96017,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#remove-a-repository-from-a-team-legacy parameters: - - *654 + - *652 - *324 - *325 responses: @@ -96129,7 +96044,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#list-child-teams-legacy parameters: - - *654 + - *652 - *17 - *19 responses: @@ -96139,9 +96054,9 @@ paths: application/json: schema: type: array - items: *189 + items: *188 examples: - response-if-child-teams-exist: *658 + response-if-child-teams-exist: *656 headers: Link: *59 '404': *6 @@ -96174,7 +96089,7 @@ paths: application/json: schema: oneOf: - - &660 + - &658 title: Private User description: Private User type: object @@ -96377,7 +96292,7 @@ paths: - private_gists - total_private_repos - two_factor_authentication - - *659 + - *657 examples: response-with-public-and-private-profile-information: summary: Response with public and private profile information @@ -96530,7 +96445,7 @@ paths: description: Response content: application/json: - schema: *660 + schema: *658 examples: default: value: @@ -96733,11 +96648,11 @@ paths: type: integer codespaces: type: array - items: *232 + items: *231 examples: - default: *233 + default: *232 '304': *37 - '500': *112 + '500': *111 '401': *25 '403': *29 '404': *6 @@ -96874,7 +96789,7 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *232 + schema: *231 examples: default: *445 '202': @@ -96882,13 +96797,13 @@ paths: being retried in the background content: application/json: - schema: *232 + schema: *231 examples: default: *445 '401': *25 '403': *29 '404': *6 - '503': *113 + '503': *112 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -96928,7 +96843,7 @@ paths: type: integer secrets: type: array - items: &661 + items: &659 title: Codespaces Secret description: Secrets for a GitHub Codespace. type: object @@ -97038,13 +96953,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/secrets#get-a-secret-for-the-authenticated-user parameters: - - *160 + - *159 responses: '200': description: Response content: application/json: - schema: *661 + schema: *659 examples: default: value: @@ -97074,7 +96989,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/secrets#create-or-update-a-secret-for-the-authenticated-user parameters: - - *160 + - *159 requestBody: required: true content: @@ -97119,7 +97034,7 @@ paths: description: Response after successfully creating a secret content: application/json: - schema: *161 + schema: *160 examples: default: value: @@ -97147,7 +97062,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/secrets#delete-a-secret-for-the-authenticated-user parameters: - - *160 + - *159 responses: '204': description: Response @@ -97172,7 +97087,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/secrets#list-selected-repositories-for-a-user-secret parameters: - - *160 + - *159 responses: '200': description: Response @@ -97188,13 +97103,13 @@ paths: type: integer repositories: type: array - items: *152 + items: *151 examples: - default: *662 + default: *660 '401': *25 '403': *29 '404': *6 - '500': *112 + '500': *111 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -97215,7 +97130,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/secrets#set-selected-repositories-for-a-user-secret parameters: - - *160 + - *159 requestBody: required: true content: @@ -97247,7 +97162,7 @@ paths: '401': *25 '403': *29 '404': *6 - '500': *112 + '500': *111 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -97269,7 +97184,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/secrets#add-a-selected-repository-to-a-user-secret parameters: - - *160 + - *159 - name: repository_id in: path required: true @@ -97281,7 +97196,7 @@ paths: '401': *25 '403': *29 '404': *6 - '500': *112 + '500': *111 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -97302,7 +97217,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/secrets#remove-a-selected-repository-from-a-user-secret parameters: - - *160 + - *159 - name: repository_id in: path required: true @@ -97314,7 +97229,7 @@ paths: '401': *25 '403': *29 '404': *6 - '500': *112 + '500': *111 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -97334,17 +97249,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#get-a-codespace-for-the-authenticated-user parameters: - - *234 + - *233 responses: '200': description: Response content: application/json: - schema: *232 + schema: *231 examples: default: *445 '304': *37 - '500': *112 + '500': *111 '401': *25 '403': *29 '404': *6 @@ -97368,7 +97283,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#update-a-codespace-for-the-authenticated-user parameters: - - *234 + - *233 requestBody: required: false content: @@ -97398,7 +97313,7 @@ paths: description: Response content: application/json: - schema: *232 + schema: *231 examples: default: *445 '401': *25 @@ -97422,11 +97337,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#delete-a-codespace-for-the-authenticated-user parameters: - - *234 + - *233 responses: '202': *39 '304': *37 - '500': *112 + '500': *111 '401': *25 '403': *29 '404': *6 @@ -97451,13 +97366,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#export-a-codespace-for-the-authenticated-user parameters: - - *234 + - *233 responses: '202': description: Response content: application/json: - schema: &663 + schema: &661 type: object title: Fetches information about an export of a codespace. description: An export of a codespace. Also, latest export details @@ -97498,7 +97413,7 @@ paths: description: Web url for the exported branch example: https://github.com/octocat/hello-world/tree/:branch examples: - default: &664 + default: &662 value: state: succeeded completed_at: '2022-01-01T14:59:22Z' @@ -97506,7 +97421,7 @@ paths: sha: fd95a81ca01e48ede9f39c799ecbcef817b8a3b2 id: latest export_url: https://api.github.com/user/codespaces/:name/exports/latest - '500': *112 + '500': *111 '401': *25 '403': *29 '404': *6 @@ -97530,7 +97445,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#get-details-about-a-codespace-export parameters: - - *234 + - *233 - name: export_id in: path required: true @@ -97543,9 +97458,9 @@ paths: description: Response content: application/json: - schema: *663 + schema: *661 examples: - default: *664 + default: *662 '404': *6 x-github: githubCloudOnly: false @@ -97566,7 +97481,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/machines#list-machine-types-for-a-codespace parameters: - - *234 + - *233 responses: '200': description: Response @@ -97582,11 +97497,11 @@ paths: type: integer machines: type: array - items: *665 + items: *663 examples: - default: *666 + default: *664 '304': *37 - '500': *112 + '500': *111 '401': *25 '403': *29 '404': *6 @@ -97613,7 +97528,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#create-a-repository-from-an-unpublished-codespace parameters: - - *234 + - *233 requestBody: required: true content: @@ -98443,17 +98358,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#start-a-codespace-for-the-authenticated-user parameters: - - *234 + - *233 responses: '200': description: Response content: application/json: - schema: *232 + schema: *231 examples: default: *445 '304': *37 - '500': *112 + '500': *111 '400': *14 '401': *25 '402': @@ -98483,16 +98398,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#stop-a-codespace-for-the-authenticated-user parameters: - - *234 + - *233 responses: '200': description: Response content: application/json: - schema: *232 + schema: *231 examples: default: *445 - '500': *112 + '500': *111 '401': *25 '403': *29 '404': *6 @@ -98521,9 +98436,9 @@ paths: application/json: schema: type: array - items: *245 + items: *244 examples: - default: &677 + default: &675 value: - id: 197 name: hello_docker @@ -98624,7 +98539,7 @@ paths: application/json: schema: type: array - items: &667 + items: &665 title: Email description: Email type: object @@ -98689,9 +98604,9 @@ paths: application/json: schema: type: array - items: *667 + items: *665 examples: - default: &679 + default: &677 value: - email: octocat@github.com verified: true @@ -98766,7 +98681,7 @@ paths: application/json: schema: type: array - items: *667 + items: *665 examples: default: value: @@ -99022,7 +98937,7 @@ paths: application/json: schema: type: array - items: &668 + items: &666 title: GPG Key description: A unique encryption key type: object @@ -99153,7 +99068,7 @@ paths: - subkeys - revoked examples: - default: &693 + default: &691 value: - id: 3 name: Octocat's GPG Key @@ -99238,9 +99153,9 @@ paths: description: Response content: application/json: - schema: *668 + schema: *666 examples: - default: &669 + default: &667 value: id: 3 name: Octocat's GPG Key @@ -99297,7 +99212,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/gpg-keys#get-a-gpg-key-for-the-authenticated-user parameters: - - &670 + - &668 name: gpg_key_id description: The unique identifier of the GPG key. in: path @@ -99309,9 +99224,9 @@ paths: description: Response content: application/json: - schema: *668 + schema: *666 examples: - default: *669 + default: *667 '404': *6 '304': *37 '403': *29 @@ -99334,7 +99249,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/gpg-keys#delete-a-gpg-key-for-the-authenticated-user parameters: - - *670 + - *668 responses: '204': description: Response @@ -99525,7 +99440,7 @@ paths: type: array items: *71 examples: - default: *144 + default: *143 headers: Link: *59 '404': *6 @@ -99550,7 +99465,7 @@ paths: url: https://docs.github.com/rest/apps/installations#add-a-repository-to-an-app-installation parameters: - *23 - - *141 + - *140 responses: '204': description: Response @@ -99576,7 +99491,7 @@ paths: url: https://docs.github.com/rest/apps/installations#remove-a-repository-from-an-app-installation parameters: - *23 - - *141 + - *140 responses: '204': description: Response @@ -99610,12 +99525,12 @@ paths: application/json: schema: anyOf: - - *222 + - *221 - type: object properties: {} additionalProperties: false examples: - default: *223 + default: *222 '204': description: Response when there are no restrictions x-github: @@ -99650,7 +99565,7 @@ paths: description: Response content: application/json: - schema: *222 + schema: *221 examples: default: value: @@ -99731,7 +99646,7 @@ paths: - closed - all default: open - - *230 + - *229 - name: sort description: What to sort results by. in: query @@ -99756,7 +99671,7 @@ paths: type: array items: *75 examples: - default: *231 + default: *230 headers: Link: *59 '404': *6 @@ -99789,7 +99704,7 @@ paths: application/json: schema: type: array - items: &671 + items: &669 title: Key description: Key type: object @@ -99890,9 +99805,9 @@ paths: description: Response content: application/json: - schema: *671 + schema: *669 examples: - default: &672 + default: &670 value: key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -99931,9 +99846,9 @@ paths: description: Response content: application/json: - schema: *671 + schema: *669 examples: - default: *672 + default: *670 '404': *6 '304': *37 '403': *29 @@ -99989,7 +99904,7 @@ paths: application/json: schema: type: array - items: &673 + items: &671 title: User Marketplace Purchase description: User Marketplace Purchase type: object @@ -100057,7 +99972,7 @@ paths: - account - plan examples: - default: &674 + default: &672 value: - billing_cycle: monthly next_billing_date: '2017-11-11T00:00:00Z' @@ -100119,9 +100034,9 @@ paths: application/json: schema: type: array - items: *673 + items: *671 examples: - default: *674 + default: *672 headers: Link: *59 '304': *37 @@ -100161,7 +100076,7 @@ paths: application/json: schema: type: array - items: *236 + items: *235 examples: default: value: @@ -100275,7 +100190,7 @@ paths: description: Response content: application/json: - schema: *236 + schema: *235 examples: default: value: @@ -100362,7 +100277,7 @@ paths: description: Response content: application/json: - schema: *236 + schema: *235 examples: default: value: @@ -100434,7 +100349,7 @@ paths: application/json: schema: type: array - items: *238 + items: *237 examples: default: value: @@ -100687,7 +100602,7 @@ paths: description: Response content: application/json: - schema: *238 + schema: *237 examples: default: value: @@ -100867,7 +100782,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#get-a-user-migration-status parameters: - - *239 + - *238 - name: exclude in: query required: false @@ -100880,7 +100795,7 @@ paths: description: Response content: application/json: - schema: *238 + schema: *237 examples: default: value: @@ -101074,7 +100989,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#download-a-user-migration-archive parameters: - - *239 + - *238 responses: '302': description: Response @@ -101100,7 +101015,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#delete-a-user-migration-archive parameters: - - *239 + - *238 responses: '204': description: Response @@ -101129,8 +101044,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#unlock-a-user-repository parameters: - - *239 - - *675 + - *238 + - *673 responses: '204': description: Response @@ -101154,7 +101069,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#list-repositories-for-a-user-migration parameters: - - *239 + - *238 - *17 - *19 responses: @@ -101164,9 +101079,9 @@ paths: application/json: schema: type: array - items: *152 + items: *151 examples: - default: *251 + default: *250 headers: Link: *59 '404': *6 @@ -101245,7 +101160,7 @@ paths: - docker - nuget - container - - *676 + - *674 - *19 - *17 responses: @@ -101255,10 +101170,10 @@ paths: application/json: schema: type: array - items: *245 + items: *244 examples: - default: *677 - '400': *678 + default: *675 + '400': *676 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -101278,16 +101193,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-for-the-authenticated-user parameters: + - *246 - *247 - - *248 responses: '200': description: Response content: application/json: - schema: *245 + schema: *244 examples: - default: &694 + default: &692 value: id: 40201 name: octo-name @@ -101400,8 +101315,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-a-package-for-the-authenticated-user parameters: + - *246 - *247 - - *248 responses: '204': description: Response @@ -101431,8 +101346,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-a-package-for-the-authenticated-user parameters: + - *246 - *247 - - *248 - name: token description: package token schema: @@ -101464,8 +101379,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: + - *246 - *247 - - *248 - *19 - *17 - name: state @@ -101485,7 +101400,7 @@ paths: application/json: schema: type: array - items: *249 + items: *248 examples: default: value: @@ -101534,15 +101449,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-version-for-the-authenticated-user parameters: + - *246 - *247 - - *248 - - *250 + - *249 responses: '200': description: Response content: application/json: - schema: *249 + schema: *248 examples: default: value: @@ -101578,9 +101493,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-a-package-version-for-the-authenticated-user parameters: + - *246 - *247 - - *248 - - *250 + - *249 responses: '204': description: Response @@ -101610,9 +101525,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-a-package-version-for-the-authenticated-user parameters: + - *246 - *247 - - *248 - - *250 + - *249 responses: '204': description: Response @@ -101649,9 +101564,9 @@ paths: application/json: schema: type: array - items: *667 + items: *665 examples: - default: *679 + default: *677 headers: Link: *59 '304': *37 @@ -101764,7 +101679,7 @@ paths: type: array items: *71 examples: - default: &686 + default: &684 summary: Default response value: - id: 1296269 @@ -102110,7 +102025,7 @@ paths: type: array items: *523 examples: - default: *680 + default: *678 headers: Link: *59 '304': *37 @@ -102133,7 +102048,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#accept-a-repository-invitation parameters: - - *226 + - *225 responses: '204': description: Response @@ -102156,7 +102071,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#decline-a-repository-invitation parameters: - - *226 + - *225 responses: '204': description: Response @@ -102189,7 +102104,7 @@ paths: application/json: schema: type: array - items: &681 + items: &679 title: Social account description: Social media account type: object @@ -102204,7 +102119,7 @@ paths: - provider - url examples: - default: &682 + default: &680 value: - provider: twitter url: https://twitter.com/github @@ -102266,9 +102181,9 @@ paths: application/json: schema: type: array - items: *681 + items: *679 examples: - default: *682 + default: *680 '422': *15 '304': *37 '404': *6 @@ -102355,7 +102270,7 @@ paths: application/json: schema: type: array - items: &683 + items: &681 title: SSH Signing Key description: A public SSH key used to sign Git commits type: object @@ -102375,7 +102290,7 @@ paths: - title - created_at examples: - default: &712 + default: &710 value: - id: 2 key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -102439,9 +102354,9 @@ paths: description: Response content: application/json: - schema: *683 + schema: *681 examples: - default: &684 + default: &682 value: id: 2 key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -102471,7 +102386,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: - - &685 + - &683 name: ssh_signing_key_id description: The unique identifier of the SSH signing key. in: path @@ -102483,9 +102398,9 @@ paths: description: Response content: application/json: - schema: *683 + schema: *681 examples: - default: *684 + default: *682 '404': *6 '304': *37 '403': *29 @@ -102508,7 +102423,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: - - *685 + - *683 responses: '204': description: Response @@ -102537,7 +102452,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#list-repositories-starred-by-the-authenticated-user parameters: - - &713 + - &711 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 @@ -102562,11 +102477,11 @@ paths: type: array items: *71 examples: - default-response: *686 + default-response: *684 application/vnd.github.v3.star+json: schema: type: array - items: &714 + items: &712 title: Starred Repository description: Starred Repository type: object @@ -102810,9 +102725,9 @@ paths: application/json: schema: type: array - items: *152 + items: *151 examples: - default: *251 + default: *250 headers: Link: *59 '304': *37 @@ -102935,10 +102850,10 @@ paths: application/json: schema: oneOf: - - *660 - - *659 + - *658 + - *657 examples: - default-response: &688 + default-response: &686 summary: Default response value: login: octocat @@ -102973,7 +102888,7 @@ paths: following: 0 created_at: '2008-01-14T04:33:35Z' updated_at: '2008-01-14T04:33:35Z' - response-with-git-hub-plan-information: &689 + response-with-git-hub-plan-information: &687 summary: Response with GitHub plan information value: login: octocat @@ -103036,7 +102951,7 @@ paths: required: true schema: type: string - - *263 + - *262 requestBody: required: true description: Details of the draft item to create in the project. @@ -103070,9 +102985,9 @@ paths: description: Response content: application/json: - schema: *269 + schema: *268 examples: - draft_issue: *270 + draft_issue: *269 '304': *37 '403': *29 '401': *25 @@ -103095,7 +103010,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/users#list-users parameters: - - *687 + - *685 - *17 responses: '200': @@ -103144,11 +103059,11 @@ paths: application/json: schema: oneOf: - - *660 - - *659 + - *658 + - *657 examples: - default-response: *688 - response-with-git-hub-plan-information: *689 + default-response: *686 + response-with-git-hub-plan-information: *687 '404': *6 x-github: githubCloudOnly: false @@ -103198,8 +103113,8 @@ paths: required: - subject_digests examples: - default: *690 - withPredicateType: *691 + default: *688 + withPredicateType: *689 responses: '200': description: Response @@ -103252,7 +103167,7 @@ paths: description: The cursor to the previous page. description: Information about the current page. examples: - default: *692 + default: *690 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -103462,7 +103377,7 @@ paths: description: Response content: application/json: - schema: *161 + schema: *160 examples: default: value: @@ -103496,9 +103411,9 @@ paths: application/json: schema: type: array - items: *245 + items: *244 examples: - default: *677 + default: *675 '403': *29 '401': *25 x-github: @@ -103882,9 +103797,9 @@ paths: application/json: schema: type: array - items: *668 + items: *666 examples: - default: *693 + default: *691 headers: Link: *59 x-github: @@ -104112,7 +104027,7 @@ paths: - docker - nuget - container - - *676 + - *674 - *64 - *19 - *17 @@ -104123,12 +104038,12 @@ paths: application/json: schema: type: array - items: *245 + items: *244 examples: - default: *677 + default: *675 '403': *29 '401': *25 - '400': *678 + '400': *676 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -104148,17 +104063,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-for-a-user parameters: + - *246 - *247 - - *248 - *64 responses: '200': description: Response content: application/json: - schema: *245 + schema: *244 examples: - default: *694 + default: *692 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -104179,8 +104094,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-a-package-for-a-user parameters: + - *246 - *247 - - *248 - *64 responses: '204': @@ -104213,8 +104128,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-a-package-for-a-user parameters: + - *246 - *247 - - *248 - *64 - name: token description: package token @@ -104247,8 +104162,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: + - *246 - *247 - - *248 - *64 responses: '200': @@ -104257,7 +104172,7 @@ paths: application/json: schema: type: array - items: *249 + items: *248 examples: default: value: @@ -104315,16 +104230,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-version-for-a-user parameters: + - *246 - *247 - - *248 - - *250 + - *249 - *64 responses: '200': description: Response content: application/json: - schema: *249 + schema: *248 examples: default: value: @@ -104359,10 +104274,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-package-version-for-a-user parameters: + - *246 - *247 - - *248 - *64 - - *250 + - *249 responses: '204': description: Response @@ -104394,10 +104309,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-package-version-for-a-user parameters: + - *246 - *247 - - *248 - *64 - - *250 + - *249 responses: '204': description: Response @@ -104438,9 +104353,9 @@ paths: application/json: schema: type: array - items: *261 + items: *260 examples: - default: *262 + default: *261 headers: Link: *59 '304': *37 @@ -104462,16 +104377,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/projects#get-project-for-user parameters: - - *263 + - *262 - *64 responses: '200': description: Response content: application/json: - schema: *261 + schema: *260 examples: - default: *262 + default: *261 headers: Link: *59 '304': *37 @@ -104493,7 +104408,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/fields#list-project-fields-for-user parameters: - - *263 + - *262 - *64 - *17 - *45 @@ -104505,9 +104420,9 @@ paths: application/json: schema: type: array - items: *267 + items: *266 examples: - default: *695 + default: *693 headers: Link: *59 '304': *37 @@ -104529,7 +104444,7 @@ paths: url: https://docs.github.com/rest/projects/fields#add-field-to-user-owned-project parameters: - *64 - - *263 + - *262 requestBody: required: true content: @@ -104567,7 +104482,7 @@ paths: description: The options available for single select fields. At least one option must be provided when creating a single select field. - items: *696 + items: *694 required: - name - data_type @@ -104583,7 +104498,7 @@ paths: description: The field's data type. enum: - iteration - iteration_configuration: *697 + iteration_configuration: *695 required: - name - data_type @@ -104605,20 +104520,20 @@ paths: value: name: Due date data_type: date - single_select_field: *698 - iteration_field: *699 + single_select_field: *696 + iteration_field: *697 responses: '201': description: Response content: application/json: - schema: *267 + schema: *266 examples: - text_field: *700 - number_field: *701 - date_field: *702 - single_select_field: *703 - iteration_field: *704 + text_field: *698 + number_field: *699 + date_field: *700 + single_select_field: *701 + iteration_field: *702 '304': *37 '403': *29 '401': *25 @@ -104639,17 +104554,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/fields#get-project-field-for-user parameters: - - *263 - - *705 + - *262 + - *703 - *64 responses: '200': description: Response content: application/json: - schema: *267 + schema: *266 examples: - default: *706 + default: *704 headers: Link: *59 '304': *37 @@ -104672,7 +104587,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#list-items-for-a-user-owned-project parameters: - - *263 + - *262 - *64 - *45 - *46 @@ -104705,9 +104620,9 @@ paths: application/json: schema: type: array - items: *271 + items: *270 examples: - default: *272 + default: *271 headers: Link: *59 '304': *37 @@ -104729,7 +104644,7 @@ paths: url: https://docs.github.com/rest/projects/items#add-item-to-user-owned-project parameters: - *64 - - *263 + - *262 requestBody: required: true description: Details of the item to add to the project. You can specify either @@ -104799,22 +104714,22 @@ paths: description: Response content: application/json: - schema: *269 + schema: *268 examples: issue_with_id: summary: Response for adding an issue using its unique ID - value: *270 + value: *269 pull_request_with_id: summary: Response for adding a pull request using its unique ID - value: *270 + value: *269 issue_with_nwo: summary: Response for adding an issue using repository owner, name, and issue number - value: *270 + value: *269 pull_request_with_nwo: summary: Response for adding a pull request using repository owner, name, and PR number - value: *270 + value: *269 '304': *37 '403': *29 '401': *25 @@ -104834,9 +104749,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#get-an-item-for-a-user-owned-project parameters: - - *263 + - *262 - *64 - - *273 + - *272 - name: fields description: |- Limit results to specific fields, by their IDs. If not specified, the title field will be returned. @@ -104856,9 +104771,9 @@ paths: description: Response content: application/json: - schema: *271 + schema: *270 examples: - default: *272 + default: *271 headers: Link: *59 '304': *37 @@ -104879,9 +104794,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#update-project-item-for-user parameters: - - *263 + - *262 - *64 - - *273 + - *272 requestBody: required: true description: Field updates to apply to the project item. Only text, number, @@ -104951,13 +104866,13 @@ paths: description: Response content: application/json: - schema: *271 + schema: *270 examples: - text_field: *272 - number_field: *272 - date_field: *272 - single_select_field: *272 - iteration_field: *272 + text_field: *271 + number_field: *271 + date_field: *271 + single_select_field: *271 + iteration_field: *271 '401': *25 '403': *29 '404': *6 @@ -104977,9 +104892,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#delete-project-item-for-user parameters: - - *263 + - *262 - *64 - - *273 + - *272 responses: '204': description: Response @@ -105001,9 +104916,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#list-items-for-a-user-project-view parameters: - - *263 + - *262 - *64 - - *707 + - *705 - name: fields description: |- Limit results to specific fields, by their IDs. If not specified, the @@ -105029,9 +104944,9 @@ paths: application/json: schema: type: array - items: *271 + items: *270 examples: - default: *272 + default: *271 headers: Link: *59 '304': *37 @@ -105250,9 +105165,9 @@ paths: application/json: schema: type: array - items: *152 + items: *151 examples: - default: *251 + default: *250 headers: Link: *59 x-github: @@ -105275,11 +105190,11 @@ paths: url: https://docs.github.com/rest/billing/usage#get-billing-premium-request-usage-report-for-a-user parameters: - *64 + - *114 + - *116 - *115 + - *706 - *117 - - *116 - - *708 - - *118 responses: '200': description: Response when getting a billing premium request usage report @@ -105386,8 +105301,8 @@ paths: '400': *14 '403': *29 '404': *6 - '500': *112 - '503': *113 + '500': *111 + '503': *112 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -105408,9 +105323,9 @@ paths: url: https://docs.github.com/rest/billing/usage#get-billing-usage-report-for-a-user parameters: - *64 + - *114 + - *707 - *115 - - *709 - - *116 responses: '200': description: Response when getting a billing usage report @@ -105480,8 +105395,8 @@ paths: repositoryName: user/example '400': *14 '403': *29 - '500': *112 - '503': *113 + '500': *111 + '503': *112 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -105505,12 +105420,12 @@ paths: url: https://docs.github.com/rest/billing/usage#get-billing-usage-summary-for-a-user parameters: - *64 + - *114 + - *116 - *115 + - *708 - *117 - - *116 - - *710 - - *118 - - *711 + - *709 responses: '200': description: Response when getting a billing usage summary @@ -105615,8 +105530,8 @@ paths: '400': *14 '403': *29 '404': *6 - '500': *112 - '503': *113 + '500': *111 + '503': *112 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -105644,9 +105559,9 @@ paths: application/json: schema: type: array - items: *681 + items: *679 examples: - default: *682 + default: *680 headers: Link: *59 x-github: @@ -105676,9 +105591,9 @@ paths: application/json: schema: type: array - items: *683 + items: *681 examples: - default: *712 + default: *710 headers: Link: *59 x-github: @@ -105703,7 +105618,7 @@ paths: url: https://docs.github.com/rest/activity/starring#list-repositories-starred-by-a-user parameters: - *64 - - *713 + - *711 - *53 - *17 - *19 @@ -105715,11 +105630,11 @@ paths: schema: anyOf: - type: array - items: *714 + items: *712 - type: array items: *71 examples: - default-response: *686 + default-response: *684 headers: Link: *59 x-github: @@ -105748,9 +105663,9 @@ paths: application/json: schema: type: array - items: *152 + items: *151 examples: - default: *251 + default: *250 headers: Link: *59 x-github: @@ -105878,7 +105793,7 @@ x-webhooks: type: string enum: - disabled - enterprise: &715 + enterprise: &713 title: Enterprise description: |- An enterprise on GitHub. Webhook payloads contain the `enterprise` property when the webhook is configured @@ -105936,7 +105851,7 @@ x-webhooks: - created_at - updated_at - avatar_url - installation: &716 + installation: &714 title: Simple Installation description: |- The GitHub App installation. Webhook payloads contain the `installation` property when the event is configured @@ -105955,7 +105870,7 @@ x-webhooks: required: - id - node_id - organization: &717 + organization: &715 title: Organization Simple description: |- A GitHub organization. Webhook payloads contain the `organization` property when the webhook is configured for an @@ -106015,13 +105930,13 @@ x-webhooks: - public_members_url - avatar_url - description - repository: &718 + repository: &716 title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: &748 + properties: &746 id: description: Unique identifier of the repository example: 42 @@ -106704,7 +106619,7 @@ x-webhooks: type: boolean description: Whether anonymous git access is enabled for this repository - required: &749 + required: &747 - archive_url - assignees_url - blobs_url @@ -106855,10 +106770,10 @@ x-webhooks: type: string enum: - enabled - enterprise: *715 - installation: *716 - organization: *717 - repository: *718 + enterprise: *713 + installation: *714 + organization: *715 + repository: *716 sender: *4 required: - action @@ -106934,11 +106849,11 @@ x-webhooks: type: string enum: - created - enterprise: *715 - installation: *716 - organization: *717 - repository: *718 - rule: &719 + enterprise: *713 + installation: *714 + organization: *715 + repository: *716 + rule: &717 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) @@ -107161,11 +107076,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *715 - installation: *716 - organization: *717 - repository: *718 - rule: *719 + enterprise: *713 + installation: *714 + organization: *715 + repository: *716 + rule: *717 sender: *4 required: - action @@ -107348,11 +107263,11 @@ x-webhooks: - everyone required: - from - enterprise: *715 - installation: *716 - organization: *717 - repository: *718 - rule: *719 + enterprise: *713 + installation: *714 + organization: *715 + repository: *716 + rule: *717 sender: *4 required: - action @@ -107436,7 +107351,7 @@ x-webhooks: type: string enum: - completed - check_run: &721 + check_run: &719 title: CheckRun description: A check performed on the code of a given code change type: object @@ -107490,7 +107405,7 @@ x-webhooks: pull_requests: type: array items: *80 - repository: *152 + repository: *151 status: example: completed type: string @@ -107527,7 +107442,7 @@ x-webhooks: - skipped - timed_out - action_required - deployment: *720 + deployment: *718 details_url: example: https://example.com type: string @@ -107612,10 +107527,10 @@ x-webhooks: - output - app - pull_requests - installation: *716 - enterprise: *715 - organization: *717 - repository: *718 + installation: *714 + enterprise: *713 + organization: *715 + repository: *716 sender: *4 required: - check_run @@ -108008,11 +107923,11 @@ x-webhooks: type: string enum: - created - check_run: *721 - installation: *716 - enterprise: *715 - organization: *717 - repository: *718 + check_run: *719 + installation: *714 + enterprise: *713 + organization: *715 + repository: *716 sender: *4 required: - check_run @@ -108408,11 +108323,11 @@ x-webhooks: type: string enum: - requested_action - check_run: *721 - installation: *716 - enterprise: *715 - organization: *717 - repository: *718 + check_run: *719 + installation: *714 + enterprise: *713 + organization: *715 + repository: *716 requested_action: description: The action requested by the user. type: object @@ -108817,11 +108732,11 @@ x-webhooks: type: string enum: - rerequested - check_run: *721 - installation: *716 - enterprise: *715 - organization: *717 - repository: *718 + check_run: *719 + installation: *714 + enterprise: *713 + organization: *715 + repository: *716 sender: *4 required: - check_run @@ -109798,10 +109713,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *715 - installation: *716 - organization: *717 - repository: *718 + enterprise: *713 + installation: *714 + organization: *715 + repository: *716 sender: *4 required: - action @@ -110495,10 +110410,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *715 - installation: *716 - organization: *717 - repository: *718 + enterprise: *713 + installation: *714 + organization: *715 + repository: *716 sender: *4 required: - action @@ -111186,10 +111101,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *715 - installation: *716 - organization: *717 - repository: *718 + enterprise: *713 + installation: *714 + organization: *715 + repository: *716 sender: *4 required: - action @@ -111500,20 +111415,20 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: &722 + commit_oid: &720 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: *715 - installation: *716 - organization: *717 - ref: &723 + enterprise: *713 + installation: *714 + organization: *715 + ref: &721 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: *718 + repository: *716 sender: *4 required: - action @@ -111908,12 +111823,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *722 - enterprise: *715 - installation: *716 - organization: *717 - ref: *723 - repository: *718 + commit_oid: *720 + enterprise: *713 + installation: *714 + organization: *715 + ref: *721 + repository: *716 sender: *4 required: - action @@ -112179,12 +112094,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *722 - enterprise: *715 - installation: *716 - organization: *717 - ref: *723 - repository: *718 + commit_oid: *720 + enterprise: *713 + installation: *714 + organization: *715 + ref: *721 + repository: *716 sender: *4 required: - action @@ -112516,12 +112431,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *722 - enterprise: *715 - installation: *716 - organization: *717 - ref: *723 - repository: *718 + commit_oid: *720 + enterprise: *713 + installation: *714 + organization: *715 + ref: *721 + repository: *716 sender: *4 required: - action @@ -112795,16 +112710,16 @@ x-webhooks: triggered by the `sender` and this value will be empty. type: string nullable: true - enterprise: *715 - installation: *716 - organization: *717 + enterprise: *713 + installation: *714 + organization: *715 ref: description: The Git reference of the code scanning alert. When the action is `reopened_by_user` or `closed_by_user`, the event was triggered by the `sender` and this value will be empty. type: string nullable: true - repository: *718 + repository: *716 sender: *4 required: - action @@ -113041,12 +112956,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *722 - enterprise: *715 - installation: *716 - organization: *717 - ref: *723 - repository: *718 + commit_oid: *720 + enterprise: *713 + installation: *714 + organization: *715 + ref: *721 + repository: *716 sender: *4 required: - action @@ -113357,10 +113272,10 @@ x-webhooks: - dismissed_reason - rule - tool - enterprise: *715 - installation: *716 - organization: *717 - repository: *718 + enterprise: *713 + installation: *714 + organization: *715 + repository: *716 sender: *4 required: - action @@ -113615,10 +113530,10 @@ x-webhooks: - updated_at - author_association - body - enterprise: *715 - installation: *716 - organization: *717 - repository: *718 + enterprise: *713 + installation: *714 + organization: *715 + repository: *716 sender: *4 required: - action @@ -113698,18 +113613,18 @@ x-webhooks: description: The repository's current description. type: string nullable: true - enterprise: *715 - installation: *716 + enterprise: *713 + installation: *714 master_branch: description: The name of the repository's default branch (usually `main`). type: string - organization: *717 - pusher_type: &724 + organization: *715 + pusher_type: &722 description: The pusher type for the event. Can be either `user` or a deploy key. type: string - ref: &725 + ref: &723 description: The [`git ref`](https://docs.github.com/rest/git/refs#get-a-reference) resource. type: string @@ -113719,7 +113634,7 @@ x-webhooks: enum: - tag - branch - repository: *718 + repository: *716 sender: *4 required: - ref @@ -113801,10 +113716,10 @@ x-webhooks: type: string enum: - created - definition: *274 - enterprise: *715 - installation: *716 - organization: *717 + definition: *273 + enterprise: *713 + installation: *714 + organization: *715 sender: *4 required: - action @@ -113889,9 +113804,9 @@ x-webhooks: description: The name of the property that was deleted. required: - property_name - enterprise: *715 - installation: *716 - organization: *717 + enterprise: *713 + installation: *714 + organization: *715 sender: *4 required: - action @@ -113968,10 +113883,10 @@ x-webhooks: type: string enum: - promote_to_enterprise - definition: *274 - enterprise: *715 - installation: *716 - organization: *717 + definition: *273 + enterprise: *713 + installation: *714 + organization: *715 sender: *4 required: - action @@ -114048,10 +113963,10 @@ x-webhooks: type: string enum: - updated - definition: *274 - enterprise: *715 - installation: *716 - organization: *717 + definition: *273 + enterprise: *713 + installation: *714 + organization: *715 sender: *4 required: - action @@ -114128,19 +114043,19 @@ x-webhooks: type: string enum: - updated - enterprise: *715 - installation: *716 - repository: *718 - organization: *717 + enterprise: *713 + installation: *714 + repository: *716 + organization: *715 sender: *4 new_property_values: type: array description: The new custom property values for the repository. - items: *111 + items: *277 old_property_values: type: array description: The old custom property values for the repository. - items: *111 + items: *277 required: - action - repository @@ -114216,18 +114131,18 @@ x-webhooks: title: delete event type: object properties: - enterprise: *715 - installation: *716 - organization: *717 - pusher_type: *724 - ref: *725 + enterprise: *713 + installation: *714 + organization: *715 + pusher_type: *722 + ref: *723 ref_type: description: The type of Git ref object deleted in the repository. type: string enum: - tag - branch - repository: *718 + repository: *716 sender: *4 required: - ref @@ -114312,10 +114227,10 @@ x-webhooks: enum: - auto_dismissed alert: *479 - installation: *716 - organization: *717 - enterprise: *715 - repository: *718 + installation: *714 + organization: *715 + enterprise: *713 + repository: *716 sender: *4 required: - action @@ -114400,10 +114315,10 @@ x-webhooks: enum: - auto_reopened alert: *479 - installation: *716 - organization: *717 - enterprise: *715 - repository: *718 + installation: *714 + organization: *715 + enterprise: *713 + repository: *716 sender: *4 required: - action @@ -114488,10 +114403,10 @@ x-webhooks: enum: - created alert: *479 - installation: *716 - organization: *717 - enterprise: *715 - repository: *718 + installation: *714 + organization: *715 + enterprise: *713 + repository: *716 sender: *4 required: - action @@ -114574,10 +114489,10 @@ x-webhooks: enum: - dismissed alert: *479 - installation: *716 - organization: *717 - enterprise: *715 - repository: *718 + installation: *714 + organization: *715 + enterprise: *713 + repository: *716 sender: *4 required: - action @@ -114660,10 +114575,10 @@ x-webhooks: enum: - fixed alert: *479 - installation: *716 - organization: *717 - enterprise: *715 - repository: *718 + installation: *714 + organization: *715 + enterprise: *713 + repository: *716 sender: *4 required: - action @@ -114747,10 +114662,10 @@ x-webhooks: enum: - reintroduced alert: *479 - installation: *716 - organization: *717 - enterprise: *715 - repository: *718 + installation: *714 + organization: *715 + enterprise: *713 + repository: *716 sender: *4 required: - action @@ -114833,10 +114748,10 @@ x-webhooks: enum: - reopened alert: *479 - installation: *716 - organization: *717 - enterprise: *715 - repository: *718 + installation: *714 + organization: *715 + enterprise: *713 + repository: *716 sender: *4 required: - action @@ -114913,9 +114828,9 @@ x-webhooks: type: string enum: - created - enterprise: *715 - installation: *716 - key: &726 + enterprise: *713 + installation: *714 + key: &724 description: The [`deploy key`](https://docs.github.com/rest/deploy-keys/deploy-keys#get-a-deploy-key) resource. type: object @@ -114951,8 +114866,8 @@ x-webhooks: - verified - created_at - read_only - organization: *717 - repository: *718 + organization: *715 + repository: *716 sender: *4 required: - action @@ -115029,11 +114944,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *715 - installation: *716 - key: *726 - organization: *717 - repository: *718 + enterprise: *713 + installation: *714 + key: *724 + organization: *715 + repository: *716 sender: *4 required: - action @@ -115594,12 +115509,12 @@ x-webhooks: - updated_at - statuses_url - repository_url - enterprise: *715 - installation: *716 - organization: *717 - repository: *718 + enterprise: *713 + installation: *714 + organization: *715 + repository: *716 sender: *4 - workflow: &730 + workflow: &728 title: Workflow type: object nullable: true @@ -116328,10 +116243,10 @@ x-webhooks: deployment: *485 pull_requests: type: array - items: *573 - repository: *718 - organization: *717 - installation: *716 + items: *571 + repository: *716 + organization: *715 + installation: *714 sender: *4 responses: '200': @@ -116402,7 +116317,7 @@ x-webhooks: type: string enum: - approved - approver: &727 + approver: &725 type: object properties: avatar_url: @@ -116445,11 +116360,11 @@ x-webhooks: type: string comment: type: string - enterprise: *715 - installation: *716 - organization: *717 - repository: *718 - reviewers: &728 + enterprise: *713 + installation: *714 + organization: *715 + repository: *716 + reviewers: &726 type: array items: type: object @@ -116528,7 +116443,7 @@ x-webhooks: sender: *4 since: type: string - workflow_job_run: &729 + workflow_job_run: &727 type: object properties: conclusion: @@ -117259,18 +117174,18 @@ x-webhooks: type: string enum: - rejected - approver: *727 + approver: *725 comment: type: string - enterprise: *715 - installation: *716 - organization: *717 - repository: *718 - reviewers: *728 + enterprise: *713 + installation: *714 + organization: *715 + repository: *716 + reviewers: *726 sender: *4 since: type: string - workflow_job_run: *729 + workflow_job_run: *727 workflow_job_runs: type: array items: @@ -117974,13 +117889,13 @@ x-webhooks: type: string enum: - requested - enterprise: *715 + enterprise: *713 environment: type: string - installation: *716 - organization: *717 - repository: *718 - requestor: &735 + installation: *714 + organization: *715 + repository: *716 + requestor: &733 title: User type: object nullable: true @@ -119879,12 +119794,12 @@ x-webhooks: - updated_at - deployment_url - repository_url - enterprise: *715 - installation: *716 - organization: *717 - repository: *718 + enterprise: *713 + installation: *714 + organization: *715 + repository: *716 sender: *4 - workflow: *730 + workflow: *728 workflow_run: title: Deployment Workflow Run type: object @@ -120564,7 +120479,7 @@ x-webhooks: type: string enum: - answered - answer: &733 + answer: &731 type: object properties: author_association: @@ -120721,11 +120636,11 @@ x-webhooks: - created_at - updated_at - body - discussion: *731 - enterprise: *715 - installation: *716 - organization: *717 - repository: *718 + discussion: *729 + enterprise: *713 + installation: *714 + organization: *715 + repository: *716 sender: *4 required: - action @@ -120852,11 +120767,11 @@ x-webhooks: - from required: - category - discussion: *731 - enterprise: *715 - installation: *716 - organization: *717 - repository: *718 + discussion: *729 + enterprise: *713 + installation: *714 + organization: *715 + repository: *716 sender: *4 required: - action @@ -120939,11 +120854,11 @@ x-webhooks: type: string enum: - closed - discussion: *731 - enterprise: *715 - installation: *716 - organization: *717 - repository: *718 + discussion: *729 + enterprise: *713 + installation: *714 + organization: *715 + repository: *716 sender: *4 required: - action @@ -121025,7 +120940,7 @@ x-webhooks: type: string enum: - created - comment: &732 + comment: &730 type: object properties: author_association: @@ -121182,11 +121097,11 @@ x-webhooks: - updated_at - body - reactions - discussion: *731 - enterprise: *715 - installation: *716 - organization: *717 - repository: *718 + discussion: *729 + enterprise: *713 + installation: *714 + organization: *715 + repository: *716 sender: *4 required: - action @@ -121269,12 +121184,12 @@ x-webhooks: type: string enum: - deleted - comment: *732 - discussion: *731 - enterprise: *715 - installation: *716 - organization: *717 - repository: *718 + comment: *730 + discussion: *729 + enterprise: *713 + installation: *714 + organization: *715 + repository: *716 sender: *4 required: - action @@ -121369,12 +121284,12 @@ x-webhooks: - from required: - body - comment: *732 - discussion: *731 - enterprise: *715 - installation: *716 - organization: *717 - repository: *718 + comment: *730 + discussion: *729 + enterprise: *713 + installation: *714 + organization: *715 + repository: *716 sender: *4 required: - action @@ -121458,11 +121373,11 @@ x-webhooks: type: string enum: - created - discussion: *731 - enterprise: *715 - installation: *716 - organization: *717 - repository: *718 + discussion: *729 + enterprise: *713 + installation: *714 + organization: *715 + repository: *716 sender: *4 required: - action @@ -121544,11 +121459,11 @@ x-webhooks: type: string enum: - deleted - discussion: *731 - enterprise: *715 - installation: *716 - organization: *717 - repository: *718 + discussion: *729 + enterprise: *713 + installation: *714 + organization: *715 + repository: *716 sender: *4 required: - action @@ -121648,11 +121563,11 @@ x-webhooks: type: string required: - from - discussion: *731 - enterprise: *715 - installation: *716 - organization: *717 - repository: *718 + discussion: *729 + enterprise: *713 + installation: *714 + organization: *715 + repository: *716 sender: *4 required: - action @@ -121734,10 +121649,10 @@ x-webhooks: type: string enum: - labeled - discussion: *731 - enterprise: *715 - installation: *716 - label: &734 + discussion: *729 + enterprise: *713 + installation: *714 + label: &732 title: Label type: object properties: @@ -121769,8 +121684,8 @@ x-webhooks: - color - default - description - organization: *717 - repository: *718 + organization: *715 + repository: *716 sender: *4 required: - action @@ -121853,11 +121768,11 @@ x-webhooks: type: string enum: - locked - discussion: *731 - enterprise: *715 - installation: *716 - organization: *717 - repository: *718 + discussion: *729 + enterprise: *713 + installation: *714 + organization: *715 + repository: *716 sender: *4 required: - action @@ -121939,11 +121854,11 @@ x-webhooks: type: string enum: - pinned - discussion: *731 - enterprise: *715 - installation: *716 - organization: *717 - repository: *718 + discussion: *729 + enterprise: *713 + installation: *714 + organization: *715 + repository: *716 sender: *4 required: - action @@ -122025,11 +121940,11 @@ x-webhooks: type: string enum: - reopened - discussion: *731 - enterprise: *715 - installation: *716 - organization: *717 - repository: *718 + discussion: *729 + enterprise: *713 + installation: *714 + organization: *715 + repository: *716 sender: *4 required: - action @@ -122114,16 +122029,16 @@ x-webhooks: changes: type: object properties: - new_discussion: *731 - new_repository: *718 + new_discussion: *729 + new_repository: *716 required: - new_discussion - new_repository - discussion: *731 - enterprise: *715 - installation: *716 - organization: *717 - repository: *718 + discussion: *729 + enterprise: *713 + installation: *714 + organization: *715 + repository: *716 sender: *4 required: - action @@ -122206,10 +122121,10 @@ x-webhooks: type: string enum: - unanswered - discussion: *731 - old_answer: *733 - organization: *717 - repository: *718 + discussion: *729 + old_answer: *731 + organization: *715 + repository: *716 sender: *4 required: - action @@ -122291,12 +122206,12 @@ x-webhooks: type: string enum: - unlabeled - discussion: *731 - enterprise: *715 - installation: *716 - label: *734 - organization: *717 - repository: *718 + discussion: *729 + enterprise: *713 + installation: *714 + label: *732 + organization: *715 + repository: *716 sender: *4 required: - action @@ -122379,11 +122294,11 @@ x-webhooks: type: string enum: - unlocked - discussion: *731 - enterprise: *715 - installation: *716 - organization: *717 - repository: *718 + discussion: *729 + enterprise: *713 + installation: *714 + organization: *715 + repository: *716 sender: *4 required: - action @@ -122465,11 +122380,11 @@ x-webhooks: type: string enum: - unpinned - discussion: *731 - enterprise: *715 - installation: *716 - organization: *717 - repository: *718 + discussion: *729 + enterprise: *713 + installation: *714 + organization: *715 + repository: *716 sender: *4 required: - action @@ -122542,7 +122457,7 @@ x-webhooks: description: A user forks a repository. type: object properties: - enterprise: *715 + enterprise: *713 forkee: description: The created [`repository`](https://docs.github.com/rest/repos/repos#get-a-repository) resource. @@ -123202,9 +123117,9 @@ x-webhooks: type: integer watchers_count: type: integer - installation: *716 - organization: *717 - repository: *718 + installation: *714 + organization: *715 + repository: *716 sender: *4 required: - forkee @@ -123350,9 +123265,9 @@ x-webhooks: title: gollum event type: object properties: - enterprise: *715 - installation: *716 - organization: *717 + enterprise: *713 + installation: *714 + organization: *715 pages: description: The pages that were updated. type: array @@ -123389,7 +123304,7 @@ x-webhooks: - action - sha - html_url - repository: *718 + repository: *716 sender: *4 required: - pages @@ -123465,10 +123380,10 @@ x-webhooks: type: string enum: - created - enterprise: *715 + enterprise: *713 installation: *22 - organization: *717 - repositories: &736 + organization: *715 + repositories: &734 description: An array of repository objects that the installation can access. type: array @@ -123494,8 +123409,8 @@ x-webhooks: - name - full_name - private - repository: *718 - requester: *735 + repository: *716 + requester: *733 sender: *4 required: - action @@ -123570,11 +123485,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *715 + enterprise: *713 installation: *22 - organization: *717 - repositories: *736 - repository: *718 + organization: *715 + repositories: *734 + repository: *716 requester: nullable: true sender: *4 @@ -123650,11 +123565,11 @@ x-webhooks: type: string enum: - new_permissions_accepted - enterprise: *715 + enterprise: *713 installation: *22 - organization: *717 - repositories: *736 - repository: *718 + organization: *715 + repositories: *734 + repository: *716 requester: nullable: true sender: *4 @@ -123730,10 +123645,10 @@ x-webhooks: type: string enum: - added - enterprise: *715 + enterprise: *713 installation: *22 - organization: *717 - repositories_added: &737 + organization: *715 + repositories_added: &735 description: An array of repository objects, which were added to the installation. type: array @@ -123779,15 +123694,15 @@ x-webhooks: private: description: Whether the repository is private or public. type: boolean - repository: *718 - repository_selection: &738 + repository: *716 + repository_selection: &736 description: Describe whether all repositories have been selected or there's a selection involved type: string enum: - all - selected - requester: *735 + requester: *733 sender: *4 required: - action @@ -123866,10 +123781,10 @@ x-webhooks: type: string enum: - removed - enterprise: *715 + enterprise: *713 installation: *22 - organization: *717 - repositories_added: *737 + organization: *715 + repositories_added: *735 repositories_removed: description: An array of repository objects, which were removed from the installation. @@ -123896,9 +123811,9 @@ x-webhooks: - name - full_name - private - repository: *718 - repository_selection: *738 - requester: *735 + repository: *716 + repository_selection: *736 + requester: *733 sender: *4 required: - action @@ -123977,11 +123892,11 @@ x-webhooks: type: string enum: - suspend - enterprise: *715 + enterprise: *713 installation: *22 - organization: *717 - repositories: *736 - repository: *718 + organization: *715 + repositories: *734 + repository: *716 requester: nullable: true sender: *4 @@ -124159,10 +124074,10 @@ x-webhooks: type: string required: - from - enterprise: *715 - installation: *716 - organization: *717 - repository: *718 + enterprise: *713 + installation: *714 + organization: *715 + repository: *716 sender: *4 target_type: type: string @@ -124241,11 +124156,11 @@ x-webhooks: type: string enum: - unsuspend - enterprise: *715 + enterprise: *713 installation: *22 - organization: *717 - repositories: *736 - repository: *718 + organization: *715 + repositories: *734 + repository: *716 requester: nullable: true sender: *4 @@ -124497,8 +124412,8 @@ x-webhooks: - performed_via_github_app - body - reactions - enterprise: *715 - installation: *716 + enterprise: *713 + installation: *714 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -125292,8 +125207,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *651 - issue_dependencies_summary: *652 + sub_issues_summary: *649 + issue_dependencies_summary: *650 state: description: State of the issue; either 'open' or 'closed' type: string @@ -125309,7 +125224,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *227 + type: *226 updated_at: type: string format: date-time @@ -125642,8 +125557,8 @@ x-webhooks: - state - locked - assignee - organization: *717 - repository: *718 + organization: *715 + repository: *716 sender: *4 required: - action @@ -125723,7 +125638,7 @@ x-webhooks: type: string enum: - deleted - comment: &739 + comment: &737 title: issue comment description: The [comment](https://docs.github.com/rest/issues/comments#get-an-issue-comment) itself. @@ -125888,8 +125803,8 @@ x-webhooks: - performed_via_github_app - body - reactions - enterprise: *715 - installation: *716 + enterprise: *713 + installation: *714 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -126679,8 +126594,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *651 - issue_dependencies_summary: *652 + sub_issues_summary: *649 + issue_dependencies_summary: *650 state: description: State of the issue; either 'open' or 'closed' type: string @@ -126696,7 +126611,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *227 + type: *226 updated_at: type: string format: date-time @@ -127031,8 +126946,8 @@ x-webhooks: - state - locked - assignee - organization: *717 - repository: *718 + organization: *715 + repository: *716 sender: *4 required: - action @@ -127112,7 +127027,7 @@ x-webhooks: type: string enum: - edited - changes: &768 + changes: &766 description: The changes to the comment. type: object properties: @@ -127124,9 +127039,9 @@ x-webhooks: type: string required: - from - comment: *739 - enterprise: *715 - installation: *716 + comment: *737 + enterprise: *713 + installation: *714 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -127919,8 +127834,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *651 - issue_dependencies_summary: *652 + sub_issues_summary: *649 + issue_dependencies_summary: *650 state: description: State of the issue; either 'open' or 'closed' type: string @@ -127936,7 +127851,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *227 + type: *226 updated_at: type: string format: date-time @@ -128269,8 +128184,8 @@ x-webhooks: - state - locked - assignee - organization: *717 - repository: *718 + organization: *715 + repository: *716 sender: *4 required: - action @@ -128360,9 +128275,9 @@ x-webhooks: type: number blocking_issue: *75 blocking_issue_repo: *71 - installation: *716 - organization: *717 - repository: *718 + installation: *714 + organization: *715 + repository: *716 sender: *4 required: - action @@ -128451,9 +128366,9 @@ x-webhooks: type: number blocking_issue: *75 blocking_issue_repo: *71 - installation: *716 - organization: *717 - repository: *718 + installation: *714 + organization: *715 + repository: *716 sender: *4 required: - action @@ -128541,9 +128456,9 @@ x-webhooks: description: The ID of the blocking issue. type: number blocking_issue: *75 - installation: *716 - organization: *717 - repository: *718 + installation: *714 + organization: *715 + repository: *716 sender: *4 required: - action @@ -128632,9 +128547,9 @@ x-webhooks: description: The ID of the blocking issue. type: number blocking_issue: *75 - installation: *716 - organization: *717 - repository: *718 + installation: *714 + organization: *715 + repository: *716 sender: *4 required: - action @@ -128714,10 +128629,10 @@ x-webhooks: type: string enum: - assigned - assignee: *735 - enterprise: *715 - installation: *716 - issue: &742 + assignee: *733 + enterprise: *713 + installation: *714 + issue: &740 title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -129506,11 +129421,11 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *651 - issue_dependencies_summary: *652 + sub_issues_summary: *649 + issue_dependencies_summary: *650 issue_field_values: type: array - items: *653 + items: *651 state: description: State of the issue; either 'open' or 'closed' type: string @@ -129526,7 +129441,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *227 + type: *226 updated_at: type: string format: date-time @@ -129627,8 +129542,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *717 - repository: *718 + organization: *715 + repository: *716 sender: *4 required: - action @@ -129708,8 +129623,8 @@ x-webhooks: type: string enum: - closed - enterprise: *715 - installation: *716 + enterprise: *713 + installation: *714 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -130503,11 +130418,11 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *651 - issue_dependencies_summary: *652 + sub_issues_summary: *649 + issue_dependencies_summary: *650 issue_field_values: type: array - items: *653 + items: *651 state: description: State of the issue; either 'open' or 'closed' type: string @@ -130523,7 +130438,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *227 + type: *226 updated_at: type: string format: date-time @@ -130759,8 +130674,8 @@ x-webhooks: required: - state - closed_at - organization: *717 - repository: *718 + organization: *715 + repository: *716 sender: *4 required: - action @@ -130839,8 +130754,8 @@ x-webhooks: type: string enum: - deleted - enterprise: *715 - installation: *716 + enterprise: *713 + installation: *714 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -131625,11 +131540,11 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *651 - issue_dependencies_summary: *652 + sub_issues_summary: *649 + issue_dependencies_summary: *650 issue_field_values: type: array - items: *653 + items: *651 state: description: State of the issue; either 'open' or 'closed' type: string @@ -131645,7 +131560,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *227 + type: *226 updated_at: type: string format: date-time @@ -131745,8 +131660,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *717 - repository: *718 + organization: *715 + repository: *716 sender: *4 required: - action @@ -131825,8 +131740,8 @@ x-webhooks: type: string enum: - demilestoned - enterprise: *715 - installation: *716 + enterprise: *713 + installation: *714 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -132633,11 +132548,11 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *651 - issue_dependencies_summary: *652 + sub_issues_summary: *649 + issue_dependencies_summary: *650 issue_field_values: type: array - items: *653 + items: *651 state: description: State of the issue; either 'open' or 'closed' type: string @@ -132653,7 +132568,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *227 + type: *226 updated_at: type: string format: date-time @@ -132732,7 +132647,7 @@ x-webhooks: format: uri user_view_type: type: string - milestone: &740 + milestone: &738 title: Milestone description: A collection of related issues and pull requests. type: object @@ -132870,8 +132785,8 @@ x-webhooks: - updated_at - due_on - closed_at - organization: *717 - repository: *718 + organization: *715 + repository: *716 sender: *4 required: - action @@ -132970,8 +132885,8 @@ x-webhooks: type: string required: - from - enterprise: *715 - installation: *716 + enterprise: *713 + installation: *714 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -133760,11 +133675,11 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *651 - issue_dependencies_summary: *652 + sub_issues_summary: *649 + issue_dependencies_summary: *650 issue_field_values: type: array - items: *653 + items: *651 state: description: State of the issue; either 'open' or 'closed' type: string @@ -133777,7 +133692,7 @@ x-webhooks: timeline_url: type: string format: uri - type: *227 + type: *226 title: description: Title of the issue type: string @@ -133881,9 +133796,9 @@ x-webhooks: - active_lock_reason - body - reactions - label: *734 - organization: *717 - repository: *718 + label: *732 + organization: *715 + repository: *716 sender: *4 required: - action @@ -133963,8 +133878,8 @@ x-webhooks: type: string enum: - labeled - enterprise: *715 - installation: *716 + enterprise: *713 + installation: *714 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -134752,11 +134667,11 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *651 - issue_dependencies_summary: *652 + sub_issues_summary: *649 + issue_dependencies_summary: *650 issue_field_values: type: array - items: *653 + items: *651 state: description: State of the issue; either 'open' or 'closed' type: string @@ -134769,7 +134684,7 @@ x-webhooks: timeline_url: type: string format: uri - type: *227 + type: *226 title: description: Title of the issue type: string @@ -134873,9 +134788,9 @@ x-webhooks: - active_lock_reason - body - reactions - label: *734 - organization: *717 - repository: *718 + label: *732 + organization: *715 + repository: *716 sender: *4 required: - action @@ -134955,8 +134870,8 @@ x-webhooks: type: string enum: - locked - enterprise: *715 - installation: *716 + enterprise: *713 + installation: *714 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -135768,11 +135683,11 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *651 - issue_dependencies_summary: *652 + sub_issues_summary: *649 + issue_dependencies_summary: *650 issue_field_values: type: array - items: *653 + items: *651 state: description: State of the issue; either 'open' or 'closed' type: string @@ -135785,7 +135700,7 @@ x-webhooks: timeline_url: type: string format: uri - type: *227 + type: *226 title: description: Title of the issue type: string @@ -135866,8 +135781,8 @@ x-webhooks: format: uri user_view_type: type: string - organization: *717 - repository: *718 + organization: *715 + repository: *716 sender: *4 required: - action @@ -135946,8 +135861,8 @@ x-webhooks: type: string enum: - milestoned - enterprise: *715 - installation: *716 + enterprise: *713 + installation: *714 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -136753,11 +136668,11 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *651 - issue_dependencies_summary: *652 + sub_issues_summary: *649 + issue_dependencies_summary: *650 issue_field_values: type: array - items: *653 + items: *651 state: description: State of the issue; either 'open' or 'closed' type: string @@ -136773,7 +136688,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *227 + type: *226 updated_at: type: string format: date-time @@ -136851,9 +136766,9 @@ x-webhooks: format: uri user_view_type: type: string - milestone: *740 - organization: *717 - repository: *718 + milestone: *738 + organization: *715 + repository: *716 sender: *4 required: - action @@ -137721,11 +137636,11 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *651 - issue_dependencies_summary: *652 + sub_issues_summary: *649 + issue_dependencies_summary: *650 issue_field_values: type: array - items: *653 + items: *651 state: description: State of the issue; either 'open' or 'closed' type: string @@ -137818,7 +137733,7 @@ x-webhooks: required: - login - id - type: *227 + type: *226 required: - id - number @@ -138287,8 +138202,8 @@ x-webhooks: required: - old_issue - old_repository - enterprise: *715 - installation: *716 + enterprise: *713 + installation: *714 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -139077,11 +138992,11 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *651 - issue_dependencies_summary: *652 + sub_issues_summary: *649 + issue_dependencies_summary: *650 issue_field_values: type: array - items: *653 + items: *651 state: description: State of the issue; either 'open' or 'closed' type: string @@ -139097,7 +139012,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *227 + type: *226 updated_at: type: string format: date-time @@ -139197,8 +139112,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *717 - repository: *718 + organization: *715 + repository: *716 sender: *4 required: - action @@ -139278,9 +139193,9 @@ x-webhooks: type: string enum: - pinned - enterprise: *715 - installation: *716 - issue: &741 + enterprise: *713 + installation: *714 + issue: &739 title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -140063,11 +139978,11 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *651 - issue_dependencies_summary: *652 + sub_issues_summary: *649 + issue_dependencies_summary: *650 issue_field_values: type: array - items: *653 + items: *651 state: description: State of the issue; either 'open' or 'closed' type: string @@ -140083,7 +139998,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *227 + type: *226 updated_at: type: string format: date-time @@ -140183,8 +140098,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *717 - repository: *718 + organization: *715 + repository: *716 sender: *4 required: - action @@ -140263,8 +140178,8 @@ x-webhooks: type: string enum: - reopened - enterprise: *715 - installation: *716 + enterprise: *713 + installation: *714 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -141074,11 +140989,11 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *651 - issue_dependencies_summary: *652 + sub_issues_summary: *649 + issue_dependencies_summary: *650 issue_field_values: type: array - items: *653 + items: *651 state: description: State of the issue; either 'open' or 'closed' type: string @@ -141172,9 +141087,9 @@ x-webhooks: format: uri user_view_type: type: string - type: *227 - organization: *717 - repository: *718 + type: *226 + organization: *715 + repository: *716 sender: *4 required: - action @@ -142040,11 +141955,11 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *651 - issue_dependencies_summary: *652 + sub_issues_summary: *649 + issue_dependencies_summary: *650 issue_field_values: type: array - items: *653 + items: *651 state: description: State of the issue; either 'open' or 'closed' type: string @@ -142060,7 +141975,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *227 + type: *226 updated_at: type: string format: date-time @@ -142628,11 +142543,11 @@ x-webhooks: required: - new_issue - new_repository - enterprise: *715 - installation: *716 - issue: *741 - organization: *717 - repository: *718 + enterprise: *713 + installation: *714 + issue: *739 + organization: *715 + repository: *716 sender: *4 required: - action @@ -142712,12 +142627,12 @@ x-webhooks: type: string enum: - typed - enterprise: *715 - installation: *716 - issue: *742 - type: *227 - organization: *717 - repository: *718 + enterprise: *713 + installation: *714 + issue: *740 + type: *226 + organization: *715 + repository: *716 sender: *4 required: - action @@ -142798,7 +142713,7 @@ x-webhooks: type: string enum: - unassigned - assignee: &771 + assignee: &769 title: User type: object nullable: true @@ -142868,11 +142783,11 @@ x-webhooks: required: - login - id - enterprise: *715 - installation: *716 - issue: *742 - organization: *717 - repository: *718 + enterprise: *713 + installation: *714 + issue: *740 + organization: *715 + repository: *716 sender: *4 required: - action @@ -142951,12 +142866,12 @@ x-webhooks: type: string enum: - unlabeled - enterprise: *715 - installation: *716 - issue: *742 - label: *734 - organization: *717 - repository: *718 + enterprise: *713 + installation: *714 + issue: *740 + label: *732 + organization: *715 + repository: *716 sender: *4 required: - action @@ -143036,8 +142951,8 @@ x-webhooks: type: string enum: - unlocked - enterprise: *715 - installation: *716 + enterprise: *713 + installation: *714 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -143847,11 +143762,11 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *651 - issue_dependencies_summary: *652 + sub_issues_summary: *649 + issue_dependencies_summary: *650 issue_field_values: type: array - items: *653 + items: *651 state: description: State of the issue; either 'open' or 'closed' type: string @@ -143867,7 +143782,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *227 + type: *226 updated_at: type: string format: date-time @@ -143945,8 +143860,8 @@ x-webhooks: format: uri user_view_type: type: string - organization: *717 - repository: *718 + organization: *715 + repository: *716 sender: *4 required: - action @@ -144026,11 +143941,11 @@ x-webhooks: type: string enum: - unpinned - enterprise: *715 - installation: *716 - issue: *741 - organization: *717 - repository: *718 + enterprise: *713 + installation: *714 + issue: *739 + organization: *715 + repository: *716 sender: *4 required: - action @@ -144109,12 +144024,12 @@ x-webhooks: type: string enum: - untyped - enterprise: *715 - installation: *716 - issue: *742 - type: *227 - organization: *717 - repository: *718 + enterprise: *713 + installation: *714 + issue: *740 + type: *226 + organization: *715 + repository: *716 sender: *4 required: - action @@ -144194,11 +144109,11 @@ x-webhooks: type: string enum: - created - enterprise: *715 - installation: *716 - label: *734 - organization: *717 - repository: *718 + enterprise: *713 + installation: *714 + label: *732 + organization: *715 + repository: *716 sender: *4 required: - action @@ -144276,11 +144191,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *715 - installation: *716 - label: *734 - organization: *717 - repository: *718 + enterprise: *713 + installation: *714 + label: *732 + organization: *715 + repository: *716 sender: *4 required: - action @@ -144390,11 +144305,11 @@ x-webhooks: type: string required: - from - enterprise: *715 - installation: *716 - label: *734 - organization: *717 - repository: *718 + enterprise: *713 + installation: *714 + label: *732 + organization: *715 + repository: *716 sender: *4 required: - action @@ -144476,9 +144391,9 @@ x-webhooks: - cancelled effective_date: type: string - enterprise: *715 - installation: *716 - marketplace_purchase: &743 + enterprise: *713 + installation: *714 + marketplace_purchase: &741 title: Marketplace Purchase type: object required: @@ -144561,8 +144476,8 @@ x-webhooks: type: integer unit_count: type: integer - organization: *717 - previous_marketplace_purchase: &744 + organization: *715 + previous_marketplace_purchase: &742 title: Marketplace Purchase type: object properties: @@ -144642,7 +144557,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *718 + repository: *716 sender: *4 required: - action @@ -144722,10 +144637,10 @@ x-webhooks: - changed effective_date: type: string - enterprise: *715 - installation: *716 - marketplace_purchase: *743 - organization: *717 + enterprise: *713 + installation: *714 + marketplace_purchase: *741 + organization: *715 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -144808,7 +144723,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *718 + repository: *716 sender: *4 required: - action @@ -144890,10 +144805,10 @@ x-webhooks: - pending_change effective_date: type: string - enterprise: *715 - installation: *716 - marketplace_purchase: *743 - organization: *717 + enterprise: *713 + installation: *714 + marketplace_purchase: *741 + organization: *715 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -144975,7 +144890,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *718 + repository: *716 sender: *4 required: - action @@ -145056,8 +144971,8 @@ x-webhooks: - pending_change_cancelled effective_date: type: string - enterprise: *715 - installation: *716 + enterprise: *713 + installation: *714 marketplace_purchase: title: Marketplace Purchase type: object @@ -145139,9 +145054,9 @@ x-webhooks: type: integer unit_count: type: integer - organization: *717 - previous_marketplace_purchase: *744 - repository: *718 + organization: *715 + previous_marketplace_purchase: *742 + repository: *716 sender: *4 required: - action @@ -145221,12 +145136,12 @@ x-webhooks: - purchased effective_date: type: string - enterprise: *715 - installation: *716 - marketplace_purchase: *743 - organization: *717 - previous_marketplace_purchase: *744 - repository: *718 + enterprise: *713 + installation: *714 + marketplace_purchase: *741 + organization: *715 + previous_marketplace_purchase: *742 + repository: *716 sender: *4 required: - action @@ -145328,11 +145243,11 @@ x-webhooks: type: string required: - to - enterprise: *715 - installation: *716 - member: *735 - organization: *717 - repository: *718 + enterprise: *713 + installation: *714 + member: *733 + organization: *715 + repository: *716 sender: *4 required: - action @@ -145432,11 +145347,11 @@ x-webhooks: to: type: string nullable: true - enterprise: *715 - installation: *716 - member: *735 - organization: *717 - repository: *718 + enterprise: *713 + installation: *714 + member: *733 + organization: *715 + repository: *716 sender: *4 required: - action @@ -145515,11 +145430,11 @@ x-webhooks: type: string enum: - removed - enterprise: *715 - installation: *716 - member: *735 - organization: *717 - repository: *718 + enterprise: *713 + installation: *714 + member: *733 + organization: *715 + repository: *716 sender: *4 required: - action @@ -145597,11 +145512,11 @@ x-webhooks: type: string enum: - added - enterprise: *715 - installation: *716 - member: *735 - organization: *717 - repository: *718 + enterprise: *713 + installation: *714 + member: *733 + organization: *715 + repository: *716 scope: description: The scope of the membership. Currently, can only be `team`. @@ -145677,7 +145592,7 @@ x-webhooks: required: - login - id - team: &745 + team: &743 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -145900,11 +145815,11 @@ x-webhooks: type: string enum: - removed - enterprise: *715 - installation: *716 - member: *735 - organization: *717 - repository: *718 + enterprise: *713 + installation: *714 + member: *733 + organization: *715 + repository: *716 scope: description: The scope of the membership. Currently, can only be `team`. @@ -145981,7 +145896,7 @@ x-webhooks: required: - login - id - team: *745 + team: *743 required: - action - scope @@ -146063,8 +145978,8 @@ x-webhooks: type: string enum: - checks_requested - installation: *716 - merge_group: &747 + installation: *714 + merge_group: &745 type: object title: Merge Group description: A group of pull requests that the merge queue has grouped @@ -146083,15 +145998,15 @@ x-webhooks: description: The full ref of the branch the merge group will be merged into. type: string - head_commit: *746 + head_commit: *744 required: - head_sha - head_ref - base_sha - base_ref - head_commit - organization: *717 - repository: *718 + organization: *715 + repository: *716 sender: *4 required: - action @@ -146177,10 +146092,10 @@ x-webhooks: - merged - invalidated - dequeued - installation: *716 - merge_group: *747 - organization: *717 - repository: *718 + installation: *714 + merge_group: *745 + organization: *715 + repository: *716 sender: *4 required: - action @@ -146253,7 +146168,7 @@ x-webhooks: type: string enum: - deleted - enterprise: *715 + enterprise: *713 hook: description: 'The deleted webhook. This will contain different keys based on the type of webhook it is: repository, organization, @@ -146362,16 +146277,16 @@ x-webhooks: hook_id: description: The id of the modified webhook. type: integer - installation: *716 - organization: *717 + installation: *714 + organization: *715 repository: title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *748 - required: *749 + properties: *746 + required: *747 nullable: true sender: *4 required: @@ -146452,11 +146367,11 @@ x-webhooks: type: string enum: - closed - enterprise: *715 - installation: *716 - milestone: *740 - organization: *717 - repository: *718 + enterprise: *713 + installation: *714 + milestone: *738 + organization: *715 + repository: *716 sender: *4 required: - action @@ -146535,9 +146450,9 @@ x-webhooks: type: string enum: - created - enterprise: *715 - installation: *716 - milestone: &750 + enterprise: *713 + installation: *714 + milestone: &748 title: Milestone description: A collection of related issues and pull requests. type: object @@ -146674,8 +146589,8 @@ x-webhooks: - updated_at - due_on - closed_at - organization: *717 - repository: *718 + organization: *715 + repository: *716 sender: *4 required: - action @@ -146754,11 +146669,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *715 - installation: *716 - milestone: *740 - organization: *717 - repository: *718 + enterprise: *713 + installation: *714 + milestone: *738 + organization: *715 + repository: *716 sender: *4 required: - action @@ -146868,11 +146783,11 @@ x-webhooks: type: string required: - from - enterprise: *715 - installation: *716 - milestone: *740 - organization: *717 - repository: *718 + enterprise: *713 + installation: *714 + milestone: *738 + organization: *715 + repository: *716 sender: *4 required: - action @@ -146952,11 +146867,11 @@ x-webhooks: type: string enum: - opened - enterprise: *715 - installation: *716 - milestone: *750 - organization: *717 - repository: *718 + enterprise: *713 + installation: *714 + milestone: *748 + organization: *715 + repository: *716 sender: *4 required: - action @@ -147035,11 +146950,11 @@ x-webhooks: type: string enum: - blocked - blocked_user: *735 - enterprise: *715 - installation: *716 - organization: *717 - repository: *718 + blocked_user: *733 + enterprise: *713 + installation: *714 + organization: *715 + repository: *716 sender: *4 required: - action @@ -147118,11 +147033,11 @@ x-webhooks: type: string enum: - unblocked - blocked_user: *735 - enterprise: *715 - installation: *716 - organization: *717 - repository: *718 + blocked_user: *733 + enterprise: *713 + installation: *714 + organization: *715 + repository: *716 sender: *4 required: - action @@ -147201,9 +147116,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *715 - installation: *716 - membership: &751 + enterprise: *713 + installation: *714 + membership: &749 title: Membership description: The membership between the user and the organization. Not present when the action is `member_invited`. @@ -147310,8 +147225,8 @@ x-webhooks: - role - organization_url - user - organization: *717 - repository: *718 + organization: *715 + repository: *716 sender: *4 required: - action @@ -147389,11 +147304,11 @@ x-webhooks: type: string enum: - member_added - enterprise: *715 - installation: *716 - membership: *751 - organization: *717 - repository: *718 + enterprise: *713 + installation: *714 + membership: *749 + organization: *715 + repository: *716 sender: *4 required: - action @@ -147472,8 +147387,8 @@ x-webhooks: type: string enum: - member_invited - enterprise: *715 - installation: *716 + enterprise: *713 + installation: *714 invitation: description: The invitation for the user or email if the action is `member_invited`. @@ -147589,10 +147504,10 @@ x-webhooks: - inviter - team_count - invitation_teams_url - organization: *717 - repository: *718 + organization: *715 + repository: *716 sender: *4 - user: *735 + user: *733 required: - action - invitation @@ -147670,11 +147585,11 @@ x-webhooks: type: string enum: - member_removed - enterprise: *715 - installation: *716 - membership: *751 - organization: *717 - repository: *718 + enterprise: *713 + installation: *714 + membership: *749 + organization: *715 + repository: *716 sender: *4 required: - action @@ -147761,11 +147676,11 @@ x-webhooks: properties: from: type: string - enterprise: *715 - installation: *716 - membership: *751 - organization: *717 - repository: *718 + enterprise: *713 + installation: *714 + membership: *749 + organization: *715 + repository: *716 sender: *4 required: - action @@ -147841,9 +147756,9 @@ x-webhooks: type: string enum: - published - enterprise: *715 - installation: *716 - organization: *717 + enterprise: *713 + installation: *714 + organization: *715 package: description: Information about the package. type: object @@ -148342,7 +148257,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: &752 + items: &750 title: Ruby Gems metadata type: object properties: @@ -148437,7 +148352,7 @@ x-webhooks: - owner - package_version - registry - repository: *718 + repository: *716 sender: *4 required: - action @@ -148513,9 +148428,9 @@ x-webhooks: type: string enum: - updated - enterprise: *715 - installation: *716 - organization: *717 + enterprise: *713 + installation: *714 + organization: *715 package: description: Information about the package. type: object @@ -148868,7 +148783,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: *752 + items: *750 source_url: type: string format: uri @@ -148938,7 +148853,7 @@ x-webhooks: - owner - package_version - registry - repository: *718 + repository: *716 sender: *4 required: - action @@ -149115,12 +149030,12 @@ x-webhooks: - duration - created_at - updated_at - enterprise: *715 + enterprise: *713 id: type: integer - installation: *716 - organization: *717 - repository: *718 + installation: *714 + organization: *715 + repository: *716 sender: *4 required: - id @@ -149197,7 +149112,7 @@ x-webhooks: type: string enum: - approved - personal_access_token_request: &753 + personal_access_token_request: &751 title: Personal Access Token Request description: Details of a Personal Access Token Request. type: object @@ -149343,10 +149258,10 @@ x-webhooks: - token_expired - token_expires_at - token_last_used_at - enterprise: *715 - organization: *717 + enterprise: *713 + organization: *715 sender: *4 - installation: *716 + installation: *714 required: - action - personal_access_token_request @@ -149423,11 +149338,11 @@ x-webhooks: type: string enum: - cancelled - personal_access_token_request: *753 - enterprise: *715 - organization: *717 + personal_access_token_request: *751 + enterprise: *713 + organization: *715 sender: *4 - installation: *716 + installation: *714 required: - action - personal_access_token_request @@ -149503,11 +149418,11 @@ x-webhooks: type: string enum: - created - personal_access_token_request: *753 - enterprise: *715 - organization: *717 + personal_access_token_request: *751 + enterprise: *713 + organization: *715 sender: *4 - installation: *716 + installation: *714 required: - action - personal_access_token_request @@ -149582,11 +149497,11 @@ x-webhooks: type: string enum: - denied - personal_access_token_request: *753 - organization: *717 - enterprise: *715 + personal_access_token_request: *751 + organization: *715 + enterprise: *713 sender: *4 - installation: *716 + installation: *714 required: - action - personal_access_token_request @@ -149691,7 +149606,7 @@ x-webhooks: id: description: Unique identifier of the webhook. type: integer - last_response: *754 + last_response: *752 name: description: The type of webhook. The only valid value is 'web'. type: string @@ -149723,8 +149638,8 @@ x-webhooks: hook_id: description: The ID of the webhook that triggered the ping. type: integer - organization: *717 - repository: *718 + organization: *715 + repository: *716 sender: *4 zen: description: Random string of GitHub zen. @@ -149969,10 +149884,10 @@ x-webhooks: - from required: - note - enterprise: *715 - installation: *716 - organization: *717 - project_card: &755 + enterprise: *713 + installation: *714 + organization: *715 + project_card: &753 title: Project Card type: object properties: @@ -150091,7 +150006,7 @@ x-webhooks: - creator - created_at - updated_at - repository: *718 + repository: *716 sender: *4 required: - action @@ -150172,11 +150087,11 @@ x-webhooks: type: string enum: - created - enterprise: *715 - installation: *716 - organization: *717 - project_card: *755 - repository: *718 + enterprise: *713 + installation: *714 + organization: *715 + project_card: *753 + repository: *716 sender: *4 required: - action @@ -150256,9 +150171,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *715 - installation: *716 - organization: *717 + enterprise: *713 + installation: *714 + organization: *715 project_card: title: Project Card type: object @@ -150386,8 +150301,8 @@ x-webhooks: The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *748 - required: *749 + properties: *746 + required: *747 nullable: true sender: *4 required: @@ -150481,11 +150396,11 @@ x-webhooks: - from required: - note - enterprise: *715 - installation: *716 - organization: *717 - project_card: *755 - repository: *718 + enterprise: *713 + installation: *714 + organization: *715 + project_card: *753 + repository: *716 sender: *4 required: - action @@ -150579,9 +150494,9 @@ x-webhooks: - from required: - column_id - enterprise: *715 - installation: *716 - organization: *717 + enterprise: *713 + installation: *714 + organization: *715 project_card: allOf: - title: Project Card @@ -150771,7 +150686,7 @@ x-webhooks: type: string required: - after_id - repository: *718 + repository: *716 sender: *4 required: - action @@ -150851,10 +150766,10 @@ x-webhooks: type: string enum: - closed - enterprise: *715 - installation: *716 - organization: *717 - project: &757 + enterprise: *713 + installation: *714 + organization: *715 + project: &755 title: Project type: object properties: @@ -150978,7 +150893,7 @@ x-webhooks: - creator - created_at - updated_at - repository: *718 + repository: *716 sender: *4 required: - action @@ -151058,10 +150973,10 @@ x-webhooks: type: string enum: - created - enterprise: *715 - installation: *716 - organization: *717 - project_column: &756 + enterprise: *713 + installation: *714 + organization: *715 + project_column: &754 title: Project Column type: object properties: @@ -151100,7 +151015,7 @@ x-webhooks: - name - created_at - updated_at - repository: *718 + repository: *716 sender: *4 required: - action @@ -151179,18 +151094,18 @@ x-webhooks: type: string enum: - deleted - enterprise: *715 - installation: *716 - organization: *717 - project_column: *756 + enterprise: *713 + installation: *714 + organization: *715 + project_column: *754 repository: title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *748 - required: *749 + properties: *746 + required: *747 nullable: true sender: *4 required: @@ -151280,11 +151195,11 @@ x-webhooks: type: string required: - from - enterprise: *715 - installation: *716 - organization: *717 - project_column: *756 - repository: *718 + enterprise: *713 + installation: *714 + organization: *715 + project_column: *754 + repository: *716 sender: *4 required: - action @@ -151364,11 +151279,11 @@ x-webhooks: type: string enum: - moved - enterprise: *715 - installation: *716 - organization: *717 - project_column: *756 - repository: *718 + enterprise: *713 + installation: *714 + organization: *715 + project_column: *754 + repository: *716 sender: *4 required: - action @@ -151448,11 +151363,11 @@ x-webhooks: type: string enum: - created - enterprise: *715 - installation: *716 - organization: *717 - project: *757 - repository: *718 + enterprise: *713 + installation: *714 + organization: *715 + project: *755 + repository: *716 sender: *4 required: - action @@ -151532,18 +151447,18 @@ x-webhooks: type: string enum: - deleted - enterprise: *715 - installation: *716 - organization: *717 - project: *757 + enterprise: *713 + installation: *714 + organization: *715 + project: *755 repository: title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *748 - required: *749 + properties: *746 + required: *747 nullable: true sender: *4 required: @@ -151645,11 +151560,11 @@ x-webhooks: type: string required: - from - enterprise: *715 - installation: *716 - organization: *717 - project: *757 - repository: *718 + enterprise: *713 + installation: *714 + organization: *715 + project: *755 + repository: *716 sender: *4 required: - action @@ -151728,11 +151643,11 @@ x-webhooks: type: string enum: - reopened - enterprise: *715 - installation: *716 - organization: *717 - project: *757 - repository: *718 + enterprise: *713 + installation: *714 + organization: *715 + project: *755 + repository: *716 sender: *4 required: - action @@ -151813,9 +151728,9 @@ x-webhooks: type: string enum: - closed - installation: *716 - organization: *717 - projects_v2: *261 + installation: *714 + organization: *715 + projects_v2: *260 sender: *4 required: - action @@ -151896,9 +151811,9 @@ x-webhooks: type: string enum: - created - installation: *716 - organization: *717 - projects_v2: *261 + installation: *714 + organization: *715 + projects_v2: *260 sender: *4 required: - action @@ -151979,9 +151894,9 @@ x-webhooks: type: string enum: - deleted - installation: *716 - organization: *717 - projects_v2: *261 + installation: *714 + organization: *715 + projects_v2: *260 sender: *4 required: - action @@ -152098,9 +152013,9 @@ x-webhooks: type: string to: type: string - installation: *716 - organization: *717 - projects_v2: *261 + installation: *714 + organization: *715 + projects_v2: *260 sender: *4 required: - action @@ -152183,7 +152098,7 @@ x-webhooks: type: string enum: - archived - changes: &761 + changes: &759 type: object properties: archived_at: @@ -152197,9 +152112,9 @@ x-webhooks: type: string nullable: true format: date-time - installation: *716 - organization: *717 - projects_v2_item: &758 + installation: *714 + organization: *715 + projects_v2_item: &756 title: Projects v2 Item description: An item belonging to a project type: object @@ -152217,7 +152132,7 @@ x-webhooks: type: string description: The node ID of the content represented by this item. - content_type: *268 + content_type: *267 creator: *4 created_at: type: string @@ -152334,9 +152249,9 @@ x-webhooks: nullable: true to: type: string - installation: *716 - organization: *717 - projects_v2_item: *758 + installation: *714 + organization: *715 + projects_v2_item: *756 sender: *4 required: - action @@ -152418,9 +152333,9 @@ x-webhooks: type: string enum: - created - installation: *716 - organization: *717 - projects_v2_item: *758 + installation: *714 + organization: *715 + projects_v2_item: *756 sender: *4 required: - action @@ -152501,9 +152416,9 @@ x-webhooks: type: string enum: - deleted - installation: *716 - organization: *717 - projects_v2_item: *758 + installation: *714 + organization: *715 + projects_v2_item: *756 sender: *4 required: - action @@ -152609,7 +152524,7 @@ x-webhooks: oneOf: - type: string - type: integer - - &759 + - &757 title: Projects v2 Single Select Option description: An option for a single select field type: object @@ -152631,7 +152546,7 @@ x-webhooks: required: - id - name - - &760 + - &758 title: Projects v2 Iteration Setting description: An iteration setting for an iteration field type: object @@ -152665,8 +152580,8 @@ x-webhooks: oneOf: - type: string - type: integer - - *759 - - *760 + - *757 + - *758 required: - field_value - type: object @@ -152682,9 +152597,9 @@ x-webhooks: nullable: true required: - body - installation: *716 - organization: *717 - projects_v2_item: *758 + installation: *714 + organization: *715 + projects_v2_item: *756 sender: *4 required: - action @@ -152779,9 +152694,9 @@ x-webhooks: to: type: string nullable: true - installation: *716 - organization: *717 - projects_v2_item: *758 + installation: *714 + organization: *715 + projects_v2_item: *756 sender: *4 required: - action @@ -152864,10 +152779,10 @@ x-webhooks: type: string enum: - restored - changes: *761 - installation: *716 - organization: *717 - projects_v2_item: *758 + changes: *759 + installation: *714 + organization: *715 + projects_v2_item: *756 sender: *4 required: - action @@ -152949,9 +152864,9 @@ x-webhooks: type: string enum: - reopened - installation: *716 - organization: *717 - projects_v2: *261 + installation: *714 + organization: *715 + projects_v2: *260 sender: *4 required: - action @@ -153032,14 +152947,14 @@ x-webhooks: type: string enum: - created - installation: *716 - organization: *717 - projects_v2_status_update: &764 + installation: *714 + organization: *715 + projects_v2_status_update: &762 title: Projects v2 Status Update description: An status update belonging to a project type: object - properties: *762 - required: *763 + properties: *760 + required: *761 sender: *4 required: - action @@ -153120,9 +153035,9 @@ x-webhooks: type: string enum: - deleted - installation: *716 - organization: *717 - projects_v2_status_update: *764 + installation: *714 + organization: *715 + projects_v2_status_update: *762 sender: *4 required: - action @@ -153258,9 +153173,9 @@ x-webhooks: type: string format: date nullable: true - installation: *716 - organization: *717 - projects_v2_status_update: *764 + installation: *714 + organization: *715 + projects_v2_status_update: *762 sender: *4 required: - action @@ -153331,10 +153246,10 @@ x-webhooks: title: public event type: object properties: - enterprise: *715 - installation: *716 - organization: *717 - repository: *718 + enterprise: *713 + installation: *714 + organization: *715 + repository: *716 sender: *4 required: - repository @@ -153411,13 +153326,13 @@ x-webhooks: type: string enum: - assigned - assignee: *735 - enterprise: *715 - installation: *716 - number: &765 + assignee: *733 + enterprise: *713 + installation: *714 + number: &763 description: The pull request number. type: integer - organization: *717 + organization: *715 pull_request: title: Pull Request type: object @@ -155700,7 +155615,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *718 + repository: *716 sender: *4 required: - action @@ -155782,11 +155697,11 @@ x-webhooks: type: string enum: - auto_merge_disabled - enterprise: *715 - installation: *716 + enterprise: *713 + installation: *714 number: type: integer - organization: *717 + organization: *715 pull_request: title: Pull Request type: object @@ -158064,7 +157979,7 @@ x-webhooks: - draft reason: type: string - repository: *718 + repository: *716 sender: *4 required: - action @@ -158146,11 +158061,11 @@ x-webhooks: type: string enum: - auto_merge_enabled - enterprise: *715 - installation: *716 + enterprise: *713 + installation: *714 number: type: integer - organization: *717 + organization: *715 pull_request: title: Pull Request type: object @@ -160428,7 +160343,7 @@ x-webhooks: - draft reason: type: string - repository: *718 + repository: *716 sender: *4 required: - action @@ -160510,13 +160425,13 @@ x-webhooks: type: string enum: - closed - enterprise: *715 - installation: *716 - number: *765 - organization: *717 - pull_request: &766 + enterprise: *713 + installation: *714 + number: *763 + organization: *715 + pull_request: &764 allOf: - - *573 + - *571 - type: object properties: allow_auto_merge: @@ -160578,7 +160493,7 @@ x-webhooks: Please use `squash_merge_commit_title` instead.** type: boolean default: false - repository: *718 + repository: *716 sender: *4 required: - action @@ -160659,12 +160574,12 @@ x-webhooks: type: string enum: - converted_to_draft - enterprise: *715 - installation: *716 - number: *765 - organization: *717 - pull_request: *766 - repository: *718 + enterprise: *713 + installation: *714 + number: *763 + organization: *715 + pull_request: *764 + repository: *716 sender: *4 required: - action @@ -160744,11 +160659,11 @@ x-webhooks: type: string enum: - demilestoned - enterprise: *715 + enterprise: *713 milestone: *555 - number: *765 - organization: *717 - pull_request: &767 + number: *763 + organization: *715 + pull_request: &765 title: Pull Request type: object properties: @@ -163011,7 +162926,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *718 + repository: *716 sender: *4 required: - action @@ -163090,11 +163005,11 @@ x-webhooks: type: string enum: - dequeued - enterprise: *715 - installation: *716 + enterprise: *713 + installation: *714 number: type: integer - organization: *717 + organization: *715 pull_request: title: Pull Request type: object @@ -165376,7 +165291,7 @@ x-webhooks: - BRANCH_PROTECTIONS - GIT_TREE_INVALID - INVALID_MERGE_COMMIT - repository: *718 + repository: *716 sender: *4 required: - action @@ -165500,12 +165415,12 @@ x-webhooks: type: string required: - from - enterprise: *715 - installation: *716 - number: *765 - organization: *717 - pull_request: *766 - repository: *718 + enterprise: *713 + installation: *714 + number: *763 + organization: *715 + pull_request: *764 + repository: *716 sender: *4 required: - action @@ -165585,11 +165500,11 @@ x-webhooks: type: string enum: - enqueued - enterprise: *715 - installation: *716 + enterprise: *713 + installation: *714 number: type: integer - organization: *717 + organization: *715 pull_request: title: Pull Request type: object @@ -167856,7 +167771,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *718 + repository: *716 sender: *4 required: - action @@ -167936,11 +167851,11 @@ x-webhooks: type: string enum: - labeled - enterprise: *715 - installation: *716 - label: *734 - number: *765 - organization: *717 + enterprise: *713 + installation: *714 + label: *732 + number: *763 + organization: *715 pull_request: title: Pull Request type: object @@ -170222,7 +170137,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *718 + repository: *716 sender: *4 required: - action @@ -170303,10 +170218,10 @@ x-webhooks: type: string enum: - locked - enterprise: *715 - installation: *716 - number: *765 - organization: *717 + enterprise: *713 + installation: *714 + number: *763 + organization: *715 pull_request: title: Pull Request type: object @@ -172586,7 +172501,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *718 + repository: *716 sender: *4 required: - action @@ -172666,12 +172581,12 @@ x-webhooks: type: string enum: - milestoned - enterprise: *715 + enterprise: *713 milestone: *555 - number: *765 - organization: *717 - pull_request: *767 - repository: *718 + number: *763 + organization: *715 + pull_request: *765 + repository: *716 sender: *4 required: - action @@ -172750,12 +172665,12 @@ x-webhooks: type: string enum: - opened - enterprise: *715 - installation: *716 - number: *765 - organization: *717 - pull_request: *766 - repository: *718 + enterprise: *713 + installation: *714 + number: *763 + organization: *715 + pull_request: *764 + repository: *716 sender: *4 required: - action @@ -172836,12 +172751,12 @@ x-webhooks: type: string enum: - ready_for_review - enterprise: *715 - installation: *716 - number: *765 - organization: *717 - pull_request: *766 - repository: *718 + enterprise: *713 + installation: *714 + number: *763 + organization: *715 + pull_request: *764 + repository: *716 sender: *4 required: - action @@ -172921,12 +172836,12 @@ x-webhooks: type: string enum: - reopened - enterprise: *715 - installation: *716 - number: *765 - organization: *717 - pull_request: *766 - repository: *718 + enterprise: *713 + installation: *714 + number: *763 + organization: *715 + pull_request: *764 + repository: *716 sender: *4 required: - action @@ -173292,9 +173207,9 @@ x-webhooks: - start_side - side - reactions - enterprise: *715 - installation: *716 - organization: *717 + enterprise: *713 + installation: *714 + organization: *715 pull_request: type: object properties: @@ -175464,7 +175379,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *718 + repository: *716 sender: *4 required: - action @@ -175544,7 +175459,7 @@ x-webhooks: type: string enum: - deleted - comment: &769 + comment: &767 title: Pull Request Review Comment description: The [comment](https://docs.github.com/rest/pulls/comments#get-a-review-comment-for-a-pull-request) itself. @@ -175829,9 +175744,9 @@ x-webhooks: - start_side - side - reactions - enterprise: *715 - installation: *716 - organization: *717 + enterprise: *713 + installation: *714 + organization: *715 pull_request: type: object properties: @@ -177989,7 +177904,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *718 + repository: *716 sender: *4 required: - action @@ -178069,11 +177984,11 @@ x-webhooks: type: string enum: - edited - changes: *768 - comment: *769 - enterprise: *715 - installation: *716 - organization: *717 + changes: *766 + comment: *767 + enterprise: *713 + installation: *714 + organization: *715 pull_request: type: object properties: @@ -180234,7 +180149,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *718 + repository: *716 sender: *4 required: - action @@ -180315,9 +180230,9 @@ x-webhooks: type: string enum: - dismissed - enterprise: *715 - installation: *716 - organization: *717 + enterprise: *713 + installation: *714 + organization: *715 pull_request: title: Simple Pull Request type: object @@ -182490,7 +182405,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *718 + repository: *716 review: description: The review that was affected. type: object @@ -182737,9 +182652,9 @@ x-webhooks: type: string required: - from - enterprise: *715 - installation: *716 - organization: *717 + enterprise: *713 + installation: *714 + organization: *715 pull_request: title: Simple Pull Request type: object @@ -184793,8 +184708,8 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *718 - review: &770 + repository: *716 + review: &768 description: The review that was affected. type: object properties: @@ -185027,12 +184942,12 @@ x-webhooks: type: string enum: - review_request_removed - enterprise: *715 - installation: *716 + enterprise: *713 + installation: *714 number: description: The pull request number. type: integer - organization: *717 + organization: *715 pull_request: title: Pull Request type: object @@ -187315,7 +187230,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *718 + repository: *716 requested_reviewer: title: User type: object @@ -187399,12 +187314,12 @@ x-webhooks: type: string enum: - review_request_removed - enterprise: *715 - installation: *716 + enterprise: *713 + installation: *714 number: description: The pull request number. type: integer - organization: *717 + organization: *715 pull_request: title: Pull Request type: object @@ -189694,7 +189609,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *718 + repository: *716 requested_team: title: Team description: Groups of organization members that gives permissions @@ -189886,12 +189801,12 @@ x-webhooks: type: string enum: - review_requested - enterprise: *715 - installation: *716 + enterprise: *713 + installation: *714 number: description: The pull request number. type: integer - organization: *717 + organization: *715 pull_request: title: Pull Request type: object @@ -192176,7 +192091,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *718 + repository: *716 requested_reviewer: title: User type: object @@ -192261,12 +192176,12 @@ x-webhooks: type: string enum: - review_requested - enterprise: *715 - installation: *716 + enterprise: *713 + installation: *714 number: description: The pull request number. type: integer - organization: *717 + organization: *715 pull_request: title: Pull Request type: object @@ -194542,7 +194457,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *718 + repository: *716 requested_team: title: Team description: Groups of organization members that gives permissions @@ -194723,9 +194638,9 @@ x-webhooks: type: string enum: - submitted - enterprise: *715 - installation: *716 - organization: *717 + enterprise: *713 + installation: *714 + organization: *715 pull_request: title: Simple Pull Request type: object @@ -196900,8 +196815,8 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *718 - review: *770 + repository: *716 + review: *768 sender: *4 required: - action @@ -196981,9 +196896,9 @@ x-webhooks: type: string enum: - resolved - enterprise: *715 - installation: *716 - organization: *717 + enterprise: *713 + installation: *714 + organization: *715 pull_request: title: Simple Pull Request type: object @@ -199053,7 +198968,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *718 + repository: *716 sender: *4 thread: type: object @@ -199440,9 +199355,9 @@ x-webhooks: type: string enum: - unresolved - enterprise: *715 - installation: *716 - organization: *717 + enterprise: *713 + installation: *714 + organization: *715 pull_request: title: Simple Pull Request type: object @@ -201498,7 +201413,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *718 + repository: *716 sender: *4 thread: type: object @@ -201888,10 +201803,10 @@ x-webhooks: type: string before: type: string - enterprise: *715 - installation: *716 - number: *765 - organization: *717 + enterprise: *713 + installation: *714 + number: *763 + organization: *715 pull_request: title: Pull Request type: object @@ -204162,7 +204077,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *718 + repository: *716 sender: *4 required: - action @@ -204244,11 +204159,11 @@ x-webhooks: type: string enum: - unassigned - assignee: *771 - enterprise: *715 - installation: *716 - number: *765 - organization: *717 + assignee: *769 + enterprise: *713 + installation: *714 + number: *763 + organization: *715 pull_request: title: Pull Request type: object @@ -206531,7 +206446,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *718 + repository: *716 sender: *4 required: - action @@ -206610,11 +206525,11 @@ x-webhooks: type: string enum: - unlabeled - enterprise: *715 - installation: *716 - label: *734 - number: *765 - organization: *717 + enterprise: *713 + installation: *714 + label: *732 + number: *763 + organization: *715 pull_request: title: Pull Request type: object @@ -208887,7 +208802,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *718 + repository: *716 sender: *4 required: - action @@ -208968,10 +208883,10 @@ x-webhooks: type: string enum: - unlocked - enterprise: *715 - installation: *716 - number: *765 - organization: *717 + enterprise: *713 + installation: *714 + number: *763 + organization: *715 pull_request: title: Pull Request type: object @@ -211236,7 +211151,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *718 + repository: *716 sender: *4 required: - action @@ -211436,7 +211351,7 @@ x-webhooks: deleted: description: Whether this push deleted the `ref`. type: boolean - enterprise: *715 + enterprise: *713 forced: description: Whether this push was a force push of the `ref`. type: boolean @@ -211528,8 +211443,8 @@ x-webhooks: - url - author - committer - installation: *716 - organization: *717 + installation: *714 + organization: *715 pusher: title: Committer description: Metaproperties for Git author/committer information. @@ -212104,9 +212019,9 @@ x-webhooks: type: string enum: - published - enterprise: *715 - installation: *716 - organization: *717 + enterprise: *713 + installation: *714 + organization: *715 registry_package: type: object properties: @@ -212552,7 +212467,7 @@ x-webhooks: type: string rubygems_metadata: type: array - items: *752 + items: *750 summary: type: string tag_name: @@ -212606,7 +212521,7 @@ x-webhooks: - owner - package_version - registry - repository: *718 + repository: *716 sender: *4 required: - action @@ -212684,9 +212599,9 @@ x-webhooks: type: string enum: - updated - enterprise: *715 - installation: *716 - organization: *717 + enterprise: *713 + installation: *714 + organization: *715 registry_package: type: object properties: @@ -212994,7 +212909,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: *752 + items: *750 summary: type: string tag_name: @@ -213043,7 +212958,7 @@ x-webhooks: - owner - package_version - registry - repository: *718 + repository: *716 sender: *4 required: - action @@ -213120,10 +213035,10 @@ x-webhooks: type: string enum: - created - enterprise: *715 - installation: *716 - organization: *717 - release: &772 + enterprise: *713 + installation: *714 + organization: *715 + release: &770 title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) object. @@ -213441,7 +213356,7 @@ x-webhooks: - updated_at - zipball_url - body - repository: *718 + repository: *716 sender: *4 required: - action @@ -213518,11 +213433,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *715 - installation: *716 - organization: *717 - release: *772 - repository: *718 + enterprise: *713 + installation: *714 + organization: *715 + release: *770 + repository: *716 sender: *4 required: - action @@ -213639,11 +213554,11 @@ x-webhooks: type: boolean required: - to - enterprise: *715 - installation: *716 - organization: *717 - release: *772 - repository: *718 + enterprise: *713 + installation: *714 + organization: *715 + release: *770 + repository: *716 sender: *4 required: - action @@ -213721,9 +213636,9 @@ x-webhooks: type: string enum: - prereleased - enterprise: *715 - installation: *716 - organization: *717 + enterprise: *713 + installation: *714 + organization: *715 release: title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) @@ -214045,7 +213960,7 @@ x-webhooks: type: string nullable: true format: uri - repository: *718 + repository: *716 sender: *4 required: - action @@ -214121,10 +214036,10 @@ x-webhooks: type: string enum: - published - enterprise: *715 - installation: *716 - organization: *717 - release: &773 + enterprise: *713 + installation: *714 + organization: *715 + release: &771 title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) object. @@ -214443,7 +214358,7 @@ x-webhooks: type: string nullable: true format: uri - repository: *718 + repository: *716 sender: *4 required: - action @@ -214519,11 +214434,11 @@ x-webhooks: type: string enum: - released - enterprise: *715 - installation: *716 - organization: *717 - release: *772 - repository: *718 + enterprise: *713 + installation: *714 + organization: *715 + release: *770 + repository: *716 sender: *4 required: - action @@ -214599,11 +214514,11 @@ x-webhooks: type: string enum: - unpublished - enterprise: *715 - installation: *716 - organization: *717 - release: *773 - repository: *718 + enterprise: *713 + installation: *714 + organization: *715 + release: *771 + repository: *716 sender: *4 required: - action @@ -214679,11 +214594,11 @@ x-webhooks: type: string enum: - published - enterprise: *715 - installation: *716 - organization: *717 - repository: *718 - repository_advisory: *637 + enterprise: *713 + installation: *714 + organization: *715 + repository: *716 + repository_advisory: *635 sender: *4 required: - action @@ -214759,11 +214674,11 @@ x-webhooks: type: string enum: - reported - enterprise: *715 - installation: *716 - organization: *717 - repository: *718 - repository_advisory: *637 + enterprise: *713 + installation: *714 + organization: *715 + repository: *716 + repository_advisory: *635 sender: *4 required: - action @@ -214839,10 +214754,10 @@ x-webhooks: type: string enum: - archived - enterprise: *715 - installation: *716 - organization: *717 - repository: *718 + enterprise: *713 + installation: *714 + organization: *715 + repository: *716 sender: *4 required: - action @@ -214919,10 +214834,10 @@ x-webhooks: type: string enum: - created - enterprise: *715 - installation: *716 - organization: *717 - repository: *718 + enterprise: *713 + installation: *714 + organization: *715 + repository: *716 sender: *4 required: - action @@ -215000,10 +214915,10 @@ x-webhooks: type: string enum: - deleted - enterprise: *715 - installation: *716 - organization: *717 - repository: *718 + enterprise: *713 + installation: *714 + organization: *715 + repository: *716 sender: *4 required: - action @@ -215087,10 +215002,10 @@ x-webhooks: additionalProperties: true description: The `client_payload` that was specified in the `POST /repos/{owner}/{repo}/dispatches` request body. - enterprise: *715 - installation: *716 - organization: *717 - repository: *718 + enterprise: *713 + installation: *714 + organization: *715 + repository: *716 sender: *4 required: - action @@ -215202,10 +215117,10 @@ x-webhooks: nullable: true items: type: string - enterprise: *715 - installation: *716 - organization: *717 - repository: *718 + enterprise: *713 + installation: *714 + organization: *715 + repository: *716 sender: *4 required: - action @@ -215277,10 +215192,10 @@ x-webhooks: title: repository_import event type: object properties: - enterprise: *715 - installation: *716 - organization: *717 - repository: *718 + enterprise: *713 + installation: *714 + organization: *715 + repository: *716 sender: *4 status: type: string @@ -215361,10 +215276,10 @@ x-webhooks: type: string enum: - privatized - enterprise: *715 - installation: *716 - organization: *717 - repository: *718 + enterprise: *713 + installation: *714 + organization: *715 + repository: *716 sender: *4 required: - action @@ -215441,10 +215356,10 @@ x-webhooks: type: string enum: - publicized - enterprise: *715 - installation: *716 - organization: *717 - repository: *718 + enterprise: *713 + installation: *714 + organization: *715 + repository: *716 sender: *4 required: - action @@ -215538,10 +215453,10 @@ x-webhooks: - name required: - repository - enterprise: *715 - installation: *716 - organization: *717 - repository: *718 + enterprise: *713 + installation: *714 + organization: *715 + repository: *716 sender: *4 required: - action @@ -215621,10 +215536,10 @@ x-webhooks: type: string enum: - created - enterprise: *715 - installation: *716 - organization: *717 - repository: *718 + enterprise: *713 + installation: *714 + organization: *715 + repository: *716 repository_ruleset: *307 sender: *4 required: @@ -215703,10 +215618,10 @@ x-webhooks: type: string enum: - deleted - enterprise: *715 - installation: *716 - organization: *717 - repository: *718 + enterprise: *713 + installation: *714 + organization: *715 + repository: *716 repository_ruleset: *307 sender: *4 required: @@ -215785,10 +215700,10 @@ x-webhooks: type: string enum: - edited - enterprise: *715 - installation: *716 - organization: *717 - repository: *718 + enterprise: *713 + installation: *714 + organization: *715 + repository: *716 repository_ruleset: *307 changes: type: object @@ -215850,16 +215765,16 @@ x-webhooks: properties: added: type: array - items: *593 + items: *591 deleted: type: array - items: *593 + items: *591 updated: type: array items: type: object properties: - rule: *593 + rule: *591 changes: type: object properties: @@ -216093,10 +216008,10 @@ x-webhooks: - from required: - owner - enterprise: *715 - installation: *716 - organization: *717 - repository: *718 + enterprise: *713 + installation: *714 + organization: *715 + repository: *716 sender: *4 required: - action @@ -216174,10 +216089,10 @@ x-webhooks: type: string enum: - unarchived - enterprise: *715 - installation: *716 - organization: *717 - repository: *718 + enterprise: *713 + installation: *714 + organization: *715 + repository: *716 sender: *4 required: - action @@ -216255,7 +216170,7 @@ x-webhooks: type: string enum: - create - alert: &774 + alert: &772 title: Repository Vulnerability Alert Alert description: The security alert of the vulnerable dependency. type: object @@ -216376,10 +216291,10 @@ x-webhooks: type: string enum: - open - enterprise: *715 - installation: *716 - organization: *717 - repository: *718 + enterprise: *713 + installation: *714 + organization: *715 + repository: *716 sender: *4 required: - action @@ -216585,10 +216500,10 @@ x-webhooks: type: string enum: - dismissed - enterprise: *715 - installation: *716 - organization: *717 - repository: *718 + enterprise: *713 + installation: *714 + organization: *715 + repository: *716 sender: *4 required: - action @@ -216666,11 +216581,11 @@ x-webhooks: type: string enum: - reopen - alert: *774 - enterprise: *715 - installation: *716 - organization: *717 - repository: *718 + alert: *772 + enterprise: *713 + installation: *714 + organization: *715 + repository: *716 sender: *4 required: - action @@ -216869,10 +216784,10 @@ x-webhooks: enum: - fixed - open - enterprise: *715 - installation: *716 - organization: *717 - repository: *718 + enterprise: *713 + installation: *714 + organization: *715 + repository: *716 sender: *4 required: - action @@ -216950,11 +216865,11 @@ x-webhooks: type: string enum: - assigned - alert: &775 + alert: &773 type: object properties: - number: *170 - created_at: *171 + number: *169 + created_at: *170 updated_at: type: string description: 'The time that the alert was last updated in ISO @@ -216962,8 +216877,8 @@ x-webhooks: format: date-time readOnly: true nullable: true - url: *173 - html_url: *174 + url: *172 + html_url: *173 locations_url: type: string format: uri @@ -217069,10 +216984,10 @@ x-webhooks: required: *21 nullable: true assignee: *4 - enterprise: *715 - installation: *716 - organization: *717 - repository: *718 + enterprise: *713 + installation: *714 + organization: *715 + repository: *716 sender: *4 required: - action @@ -217150,11 +217065,11 @@ x-webhooks: type: string enum: - created - alert: *775 - enterprise: *715 - installation: *716 - organization: *717 - repository: *718 + alert: *773 + enterprise: *713 + installation: *714 + organization: *715 + repository: *716 sender: *4 required: - action @@ -217235,11 +217150,11 @@ x-webhooks: type: string enum: - created - alert: *775 - installation: *716 - location: *776 - organization: *717 - repository: *718 + alert: *773 + installation: *714 + location: *774 + organization: *715 + repository: *716 sender: *4 required: - location @@ -217477,11 +217392,11 @@ x-webhooks: type: string enum: - publicly_leaked - alert: *775 - enterprise: *715 - installation: *716 - organization: *717 - repository: *718 + alert: *773 + enterprise: *713 + installation: *714 + organization: *715 + repository: *716 sender: *4 required: - action @@ -217559,11 +217474,11 @@ x-webhooks: type: string enum: - reopened - alert: *775 - enterprise: *715 - installation: *716 - organization: *717 - repository: *718 + alert: *773 + enterprise: *713 + installation: *714 + organization: *715 + repository: *716 sender: *4 required: - action @@ -217641,11 +217556,11 @@ x-webhooks: type: string enum: - resolved - alert: *775 - enterprise: *715 - installation: *716 - organization: *717 - repository: *718 + alert: *773 + enterprise: *713 + installation: *714 + organization: *715 + repository: *716 sender: *4 required: - action @@ -217723,12 +217638,12 @@ x-webhooks: type: string enum: - unassigned - alert: *775 + alert: *773 assignee: *4 - enterprise: *715 - installation: *716 - organization: *717 - repository: *718 + enterprise: *713 + installation: *714 + organization: *715 + repository: *716 sender: *4 required: - action @@ -217806,11 +217721,11 @@ x-webhooks: type: string enum: - validated - alert: *775 - enterprise: *715 - installation: *716 - organization: *717 - repository: *718 + alert: *773 + enterprise: *713 + installation: *714 + organization: *715 + repository: *716 sender: *4 required: - action @@ -217936,10 +217851,10 @@ x-webhooks: - organization - enterprise nullable: true - repository: *718 - enterprise: *715 - installation: *716 - organization: *717 + repository: *716 + enterprise: *713 + installation: *714 + organization: *715 sender: *4 required: - action @@ -218017,11 +217932,11 @@ x-webhooks: type: string enum: - published - enterprise: *715 - installation: *716 - organization: *717 - repository: *718 - security_advisory: &777 + enterprise: *713 + installation: *714 + organization: *715 + repository: *716 + security_advisory: &775 description: The details of the security advisory, including summary, description, and severity. type: object @@ -218204,11 +218119,11 @@ x-webhooks: type: string enum: - updated - enterprise: *715 - installation: *716 - organization: *717 - repository: *718 - security_advisory: *777 + enterprise: *713 + installation: *714 + organization: *715 + repository: *716 + security_advisory: *775 sender: *4 required: - action @@ -218281,10 +218196,10 @@ x-webhooks: type: string enum: - withdrawn - enterprise: *715 - installation: *716 - organization: *717 - repository: *718 + enterprise: *713 + installation: *714 + organization: *715 + repository: *716 security_advisory: description: The details of the security advisory, including summary, description, and severity. @@ -218469,9 +218384,9 @@ x-webhooks: type: object properties: security_and_analysis: *280 - enterprise: *715 - installation: *716 - organization: *717 + enterprise: *713 + installation: *714 + organization: *715 repository: *327 sender: *4 required: @@ -218550,12 +218465,12 @@ x-webhooks: type: string enum: - cancelled - enterprise: *715 - installation: *716 - organization: *717 - repository: *718 + enterprise: *713 + installation: *714 + organization: *715 + repository: *716 sender: *4 - sponsorship: &778 + sponsorship: &776 type: object properties: created_at: @@ -218856,12 +218771,12 @@ x-webhooks: type: string enum: - created - enterprise: *715 - installation: *716 - organization: *717 - repository: *718 + enterprise: *713 + installation: *714 + organization: *715 + repository: *716 sender: *4 - sponsorship: *778 + sponsorship: *776 required: - action - sponsorship @@ -218949,12 +218864,12 @@ x-webhooks: type: string required: - from - enterprise: *715 - installation: *716 - organization: *717 - repository: *718 + enterprise: *713 + installation: *714 + organization: *715 + repository: *716 sender: *4 - sponsorship: *778 + sponsorship: *776 required: - action - changes @@ -219031,17 +218946,17 @@ x-webhooks: type: string enum: - pending_cancellation - effective_date: &779 + effective_date: &777 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: *715 - installation: *716 - organization: *717 - repository: *718 + enterprise: *713 + installation: *714 + organization: *715 + repository: *716 sender: *4 - sponsorship: *778 + sponsorship: *776 required: - action - sponsorship @@ -219115,7 +219030,7 @@ x-webhooks: type: string enum: - pending_tier_change - changes: &780 + changes: &778 type: object properties: tier: @@ -219159,13 +219074,13 @@ x-webhooks: - from required: - tier - effective_date: *779 - enterprise: *715 - installation: *716 - organization: *717 - repository: *718 + effective_date: *777 + enterprise: *713 + installation: *714 + organization: *715 + repository: *716 sender: *4 - sponsorship: *778 + sponsorship: *776 required: - action - changes @@ -219242,13 +219157,13 @@ x-webhooks: type: string enum: - tier_changed - changes: *780 - enterprise: *715 - installation: *716 - organization: *717 - repository: *718 + changes: *778 + enterprise: *713 + installation: *714 + organization: *715 + repository: *716 sender: *4 - sponsorship: *778 + sponsorship: *776 required: - action - changes @@ -219322,10 +219237,10 @@ x-webhooks: type: string enum: - created - enterprise: *715 - installation: *716 - organization: *717 - repository: *718 + enterprise: *713 + installation: *714 + organization: *715 + repository: *716 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -219408,10 +219323,10 @@ x-webhooks: type: string enum: - deleted - enterprise: *715 - installation: *716 - organization: *717 - repository: *718 + enterprise: *713 + installation: *714 + organization: *715 + repository: *716 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -219831,15 +219746,15 @@ x-webhooks: status. type: string nullable: true - enterprise: *715 + enterprise: *713 id: description: The unique identifier of the status. type: integer - installation: *716 + installation: *714 name: type: string - organization: *717 - repository: *718 + organization: *715 + repository: *716 sender: *4 sha: description: The Commit SHA. @@ -219954,9 +219869,9 @@ x-webhooks: description: The ID of the sub-issue. type: number sub_issue: *75 - installation: *716 - organization: *717 - repository: *718 + installation: *714 + organization: *715 + repository: *716 sender: *4 required: - action @@ -220046,9 +219961,9 @@ x-webhooks: description: The ID of the sub-issue. type: number sub_issue: *75 - installation: *716 - organization: *717 - repository: *718 + installation: *714 + organization: *715 + repository: *716 sender: *4 required: - action @@ -220138,9 +220053,9 @@ x-webhooks: description: The ID of the parent issue. type: number parent_issue: *75 - installation: *716 - organization: *717 - repository: *718 + installation: *714 + organization: *715 + repository: *716 sender: *4 required: - action @@ -220230,9 +220145,9 @@ x-webhooks: description: The ID of the parent issue. type: number parent_issue: *75 - installation: *716 - organization: *717 - repository: *718 + installation: *714 + organization: *715 + repository: *716 sender: *4 required: - action @@ -220309,12 +220224,12 @@ x-webhooks: title: team_add event type: object properties: - enterprise: *715 - installation: *716 - organization: *717 - repository: *718 + enterprise: *713 + installation: *714 + organization: *715 + repository: *716 sender: *4 - team: &781 + team: &779 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -220537,9 +220452,9 @@ x-webhooks: type: string enum: - added_to_repository - enterprise: *715 - installation: *716 - organization: *717 + enterprise: *713 + installation: *714 + organization: *715 repository: title: Repository description: A git repository @@ -220997,7 +220912,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *781 + team: *779 required: - action - team @@ -221073,9 +220988,9 @@ x-webhooks: type: string enum: - created - enterprise: *715 - installation: *716 - organization: *717 + enterprise: *713 + installation: *714 + organization: *715 repository: title: Repository description: A git repository @@ -221533,7 +221448,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *781 + team: *779 required: - action - team @@ -221610,9 +221525,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *715 - installation: *716 - organization: *717 + enterprise: *713 + installation: *714 + organization: *715 repository: title: Repository description: A git repository @@ -222070,7 +221985,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *781 + team: *779 required: - action - team @@ -222214,9 +222129,9 @@ x-webhooks: - from required: - permissions - enterprise: *715 - installation: *716 - organization: *717 + enterprise: *713 + installation: *714 + organization: *715 repository: title: Repository description: A git repository @@ -222674,7 +222589,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *781 + team: *779 required: - action - changes @@ -222752,9 +222667,9 @@ x-webhooks: type: string enum: - removed_from_repository - enterprise: *715 - installation: *716 - organization: *717 + enterprise: *713 + installation: *714 + organization: *715 repository: title: Repository description: A git repository @@ -223212,7 +223127,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *781 + team: *779 required: - action - team @@ -223288,10 +223203,10 @@ x-webhooks: type: string enum: - started - enterprise: *715 - installation: *716 - organization: *717 - repository: *718 + enterprise: *713 + installation: *714 + organization: *715 + repository: *716 sender: *4 required: - action @@ -223364,16 +223279,16 @@ x-webhooks: title: workflow_dispatch event type: object properties: - enterprise: *715 + enterprise: *713 inputs: type: object nullable: true additionalProperties: true - installation: *716 - organization: *717 + installation: *714 + organization: *715 ref: type: string - repository: *718 + repository: *716 sender: *4 workflow: type: string @@ -223455,10 +223370,10 @@ x-webhooks: type: string enum: - completed - enterprise: *715 - installation: *716 - organization: *717 - repository: *718 + enterprise: *713 + installation: *714 + organization: *715 + repository: *716 sender: *4 workflow_job: allOf: @@ -223774,10 +223689,10 @@ x-webhooks: type: string enum: - in_progress - enterprise: *715 - installation: *716 - organization: *717 - repository: *718 + enterprise: *713 + installation: *714 + organization: *715 + repository: *716 sender: *4 workflow_job: allOf: @@ -224116,10 +224031,10 @@ x-webhooks: type: string enum: - queued - enterprise: *715 - installation: *716 - organization: *717 - repository: *718 + enterprise: *713 + installation: *714 + organization: *715 + repository: *716 sender: *4 workflow_job: type: object @@ -224333,10 +224248,10 @@ x-webhooks: type: string enum: - waiting - enterprise: *715 - installation: *716 - organization: *717 - repository: *718 + enterprise: *713 + installation: *714 + organization: *715 + repository: *716 sender: *4 workflow_job: type: object @@ -224552,12 +224467,12 @@ x-webhooks: type: string enum: - completed - enterprise: *715 - installation: *716 - organization: *717 - repository: *718 + enterprise: *713 + installation: *714 + organization: *715 + repository: *716 sender: *4 - workflow: *730 + workflow: *728 workflow_run: title: Workflow Run type: object @@ -225556,12 +225471,12 @@ x-webhooks: type: string enum: - in_progress - enterprise: *715 - installation: *716 - organization: *717 - repository: *718 + enterprise: *713 + installation: *714 + organization: *715 + repository: *716 sender: *4 - workflow: *730 + workflow: *728 workflow_run: title: Workflow Run type: object @@ -226545,12 +226460,12 @@ x-webhooks: type: string enum: - requested - enterprise: *715 - installation: *716 - organization: *717 - repository: *718 + enterprise: *713 + installation: *714 + organization: *715 + repository: *716 sender: *4 - workflow: *730 + workflow: *728 workflow_run: title: Workflow Run type: object diff --git a/descriptions/api.github.com/dereferenced/api.github.com.deref.json b/descriptions/api.github.com/dereferenced/api.github.com.deref.json index c3eed1230..f88151a98 100644 --- a/descriptions/api.github.com/dereferenced/api.github.com.deref.json +++ b/descriptions/api.github.com/dereferenced/api.github.com.deref.json @@ -65854,373 +65854,6 @@ } } }, - "/organizations/{org}/org-properties/values": { - "get": { - "summary": "Get all custom property values for an organization", - "description": "Gets all custom property values that are set for an organization.\n\nThe organization must belong to an enterprise.\n\nAccess requirements:\n- Organization admins\n- OAuth tokens and personal access tokens (classic) with the `read:org` scope\n- Actors with the organization-level \"read custom properties for an organization\" fine-grained permission or above", - "tags": [ - "orgs" - ], - "operationId": "orgs/custom-properties-for-orgs-get-organization-values", - "externalDocs": { - "description": "API method documentation", - "url": "https://docs.github.com/rest/orgs/custom-properties-for-orgs#get-all-custom-property-values-for-an-organization" - }, - "parameters": [ - { - "name": "org", - "description": "The organization name. The name is not case sensitive.", - "in": "path", - "required": true, - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "description": "Response", - "content": { - "application/json": { - "schema": { - "type": "array", - "items": { - "title": "Custom Property Value", - "description": "Custom property name and associated value", - "type": "object", - "properties": { - "property_name": { - "type": "string", - "description": "The name of the property" - }, - "value": { - "oneOf": [ - { - "type": "string" - }, - { - "type": "array", - "items": { - "type": "string" - } - } - ], - "description": "The value assigned to the property", - "nullable": true - } - }, - "required": [ - "property_name", - "value" - ] - } - }, - "examples": { - "default": { - "value": [ - { - "property_name": "environment", - "value": "production" - }, - { - "property_name": "service", - "value": "web" - }, - { - "property_name": "team", - "value": "octocat" - } - ] - } - } - } - } - }, - "403": { - "description": "Forbidden", - "content": { - "application/json": { - "schema": { - "title": "Basic Error", - "description": "Basic Error", - "type": "object", - "properties": { - "message": { - "type": "string" - }, - "documentation_url": { - "type": "string" - }, - "url": { - "type": "string" - }, - "status": { - "type": "string" - } - } - } - } - } - }, - "404": { - "description": "Resource not found", - "content": { - "application/json": { - "schema": { - "title": "Basic Error", - "description": "Basic Error", - "type": "object", - "properties": { - "message": { - "type": "string" - }, - "documentation_url": { - "type": "string" - }, - "url": { - "type": "string" - }, - "status": { - "type": "string" - } - } - } - } - } - } - }, - "x-github": { - "githubCloudOnly": false, - "enabledForGitHubApps": true, - "category": "orgs", - "subcategory": "custom-properties-for-orgs" - } - }, - "patch": { - "summary": "Create or update custom property values for an organization", - "description": "Create new or update existing custom property values for an organization.\nTo remove a custom property value from an organization, set the property value to `null`.\n\nThe organization must belong to an enterprise.\n\nAccess requirements:\n- Organization admins\n- OAuth tokens and personal access tokens (classic) with the `admin:org` scope\n- Actors with the organization-level \"edit custom properties for an organization\" fine-grained permission", - "tags": [ - "orgs" - ], - "operationId": "orgs/custom-properties-for-orgs-create-or-update-organization-values", - "externalDocs": { - "description": "API method documentation", - "url": "https://docs.github.com/rest/orgs/custom-properties-for-orgs#create-or-update-custom-property-values-for-an-organization" - }, - "parameters": [ - { - "name": "org", - "description": "The organization name. The name is not case sensitive.", - "in": "path", - "required": true, - "schema": { - "type": "string" - } - } - ], - "requestBody": { - "required": true, - "content": { - "application/json": { - "schema": { - "type": "object", - "properties": { - "properties": { - "type": "array", - "description": "A list of custom property names and associated values to apply to the organization.", - "items": { - "title": "Custom Property Value", - "description": "Custom property name and associated value", - "type": "object", - "properties": { - "property_name": { - "type": "string", - "description": "The name of the property" - }, - "value": { - "oneOf": [ - { - "type": "string" - }, - { - "type": "array", - "items": { - "type": "string" - } - } - ], - "description": "The value assigned to the property", - "nullable": true - } - }, - "required": [ - "property_name", - "value" - ] - } - } - }, - "required": [ - "properties" - ] - }, - "examples": { - "default": { - "value": { - "properties": [ - { - "property_name": "environment", - "value": "production" - }, - { - "property_name": "service", - "value": "web" - }, - { - "property_name": "team", - "value": "octocat" - } - ] - } - } - } - } - } - }, - "responses": { - "204": { - "description": "No Content when custom property values are successfully created or updated" - }, - "403": { - "description": "Forbidden", - "content": { - "application/json": { - "schema": { - "title": "Basic Error", - "description": "Basic Error", - "type": "object", - "properties": { - "message": { - "type": "string" - }, - "documentation_url": { - "type": "string" - }, - "url": { - "type": "string" - }, - "status": { - "type": "string" - } - } - } - } - } - }, - "404": { - "description": "Resource not found", - "content": { - "application/json": { - "schema": { - "title": "Basic Error", - "description": "Basic Error", - "type": "object", - "properties": { - "message": { - "type": "string" - }, - "documentation_url": { - "type": "string" - }, - "url": { - "type": "string" - }, - "status": { - "type": "string" - } - } - } - } - } - }, - "422": { - "description": "Validation failed, or the endpoint has been spammed.", - "content": { - "application/json": { - "schema": { - "title": "Validation Error", - "description": "Validation Error", - "type": "object", - "required": [ - "message", - "documentation_url" - ], - "properties": { - "message": { - "type": "string" - }, - "documentation_url": { - "type": "string" - }, - "errors": { - "type": "array", - "items": { - "type": "object", - "required": [ - "code" - ], - "properties": { - "resource": { - "type": "string" - }, - "field": { - "type": "string" - }, - "message": { - "type": "string" - }, - "code": { - "type": "string" - }, - "index": { - "type": "integer" - }, - "value": { - "oneOf": [ - { - "type": "string", - "nullable": true - }, - { - "type": "integer", - "nullable": true - }, - { - "type": "array", - "nullable": true, - "items": { - "type": "string" - } - } - ] - } - } - } - } - } - } - } - } - } - }, - "x-github": { - "githubCloudOnly": false, - "enabledForGitHubApps": true, - "category": "orgs", - "subcategory": "custom-properties-for-orgs" - } - } - }, "/organizations/{org}/settings/billing/budgets": { "get": { "summary": "Get all budgets for an organization", diff --git a/descriptions/api.github.com/dereferenced/api.github.com.deref.yaml b/descriptions/api.github.com/dereferenced/api.github.com.deref.yaml index 8937bd543..cd5e9112e 100644 --- a/descriptions/api.github.com/dereferenced/api.github.com.deref.yaml +++ b/descriptions/api.github.com/dereferenced/api.github.com.deref.yaml @@ -988,7 +988,7 @@ paths: description: Validation failed, or the endpoint has been spammed. content: application/json: - schema: &122 + schema: &121 title: Validation Error Simple description: Validation Error Simple type: object @@ -1021,7 +1021,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/global-advisories#get-a-global-security-advisory parameters: - - &639 + - &637 name: ghsa_id description: The GHSA (GitHub Security Advisory) identifier of the advisory. in: path @@ -1577,7 +1577,7 @@ paths: schema: type: integer default: 30 - - &205 + - &204 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 @@ -1593,7 +1593,7 @@ paths: application/json: schema: type: array - items: &206 + items: &205 title: Simple webhook delivery description: Delivery made by a webhook, without request and response information. @@ -1673,7 +1673,7 @@ paths: - installation_id - repository_id examples: - default: &207 + default: &206 value: - id: 12345678 guid: 0b989ba4-242f-11e5-81e1-c7b6966d2516 @@ -1732,7 +1732,7 @@ paths: description: Validation failed, or the endpoint has been spammed. content: application/json: - schema: &121 + schema: &120 title: Validation Error description: Validation Error type: object @@ -1801,7 +1801,7 @@ paths: description: Response content: application/json: - schema: &208 + schema: &207 title: Webhook delivery description: Delivery made by a webhook. type: object @@ -1915,7 +1915,7 @@ paths: - request - response examples: - default: &209 + default: &208 value: id: 12345678 guid: 0b989ba4-242f-11e5-81e1-c7b6966d2516 @@ -5116,7 +5116,7 @@ paths: responses: '202': *39 '422': *7 - '500': &112 + '500': &111 description: Internal Error content: application/json: @@ -7795,7 +7795,7 @@ paths: description: Response content: application/json: - schema: &181 + schema: &180 type: array description: A list of default code security configurations items: @@ -7811,7 +7811,7 @@ paths: default configuration: *47 examples: - default: &182 + default: &181 value: - default_for_new_repos: public configuration: @@ -8143,7 +8143,7 @@ paths: - *40 - *49 responses: - '204': &183 + '204': &182 description: A header with no content is returned. '400': *14 '403': *29 @@ -8270,7 +8270,7 @@ paths: default: value: default_for_new_repos: all - configuration: &180 + configuration: &179 value: id: 1325 target_type: organization @@ -8355,7 +8355,7 @@ paths: application/json: schema: type: array - items: &184 + items: &183 type: object description: Repositories associated with a code security configuration and attachment status @@ -8656,7 +8656,7 @@ paths: summary: Example of code security configuration repositories value: - status: attached - repository: &185 + repository: &184 value: id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -8750,7 +8750,7 @@ paths: url: https://docs.github.com/rest/dependabot/alerts#list-dependabot-alerts-for-an-enterprise parameters: - *40 - - &190 + - &189 name: state in: query description: |- @@ -8759,7 +8759,7 @@ paths: Can be: `auto_dismissed`, `dismissed`, `fixed`, `open` schema: type: string - - &191 + - &190 name: severity in: query description: |- @@ -8768,7 +8768,7 @@ paths: Can be: `low`, `medium`, `high`, `critical` schema: type: string - - &192 + - &191 name: ecosystem in: query description: |- @@ -8777,14 +8777,14 @@ paths: Can be: `composer`, `go`, `maven`, `npm`, `nuget`, `pip`, `pub`, `rubygems`, `rust` schema: type: string - - &193 + - &192 name: package in: query description: A comma-separated list of package names. If specified, only alerts for these packages will be returned. schema: type: string - - &194 + - &193 name: epss_percentage in: query description: |- @@ -8810,7 +8810,7 @@ paths: type: string enum: - patch - - &195 + - &194 name: scope in: query description: The scope of the vulnerable dependency. If specified, only alerts @@ -8820,7 +8820,7 @@ paths: enum: - development - runtime - - &196 + - &195 name: sort in: query description: |- @@ -8846,11 +8846,11 @@ paths: application/json: schema: type: array - items: &197 + items: &196 type: object description: A Dependabot alert. properties: - number: &170 + number: &169 type: integer description: The security alert number. readOnly: true @@ -9115,29 +9115,29 @@ paths: - withdrawn_at additionalProperties: false security_vulnerability: *57 - url: &173 + url: &172 type: string description: The REST API URL of the alert resource. format: uri readOnly: true - html_url: &174 + html_url: &173 type: string description: The GitHub URL of the alert resource. format: uri readOnly: true - created_at: &171 + created_at: &170 type: string description: 'The time that the alert was created in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`.' format: date-time readOnly: true - updated_at: &172 + updated_at: &171 type: string description: 'The time that the alert was last updated in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`.' format: date-time readOnly: true - dismissed_at: &176 + dismissed_at: &175 type: string description: 'The time that the alert was dismissed in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`.' @@ -9167,7 +9167,7 @@ paths: dismissal. nullable: true maxLength: 280 - fixed_at: &175 + fixed_at: &174 type: string description: 'The time that the alert was no longer detected and was considered fixed in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`.' @@ -9238,7 +9238,7 @@ paths: - repository additionalProperties: false examples: - default: &198 + default: &197 value: - number: 2 state: dismissed @@ -10022,7 +10022,7 @@ paths: title: Organization Simple description: A GitHub organization. type: object - properties: &187 + properties: &186 login: type: string example: github @@ -10063,7 +10063,7 @@ paths: type: string example: A great organization nullable: true - required: &188 + required: &187 - login - url - id @@ -10543,7 +10543,7 @@ paths: properties: action: type: string - discussion: &731 + discussion: &729 title: Discussion description: A Discussion in a repository. type: object @@ -11024,7 +11024,7 @@ paths: description: A collection of related issues and pull requests. type: object - properties: &264 + properties: &263 url: type: string format: uri @@ -11094,7 +11094,7 @@ paths: format: date-time example: '2012-10-09T23:39:01Z' nullable: true - required: &265 + required: &264 - closed_issues - creator - description @@ -11173,7 +11173,7 @@ paths: timeline_url: type: string format: uri - type: &227 + type: &226 title: Issue Type description: The type of issue. type: object @@ -11287,7 +11287,7 @@ paths: - hooray - eyes - rocket - sub_issues_summary: &651 + sub_issues_summary: &649 title: Sub-issues Summary type: object properties: @@ -11307,7 +11307,7 @@ paths: type: string format: uri nullable: true - issue_dependencies_summary: &652 + issue_dependencies_summary: &650 title: Issue Dependencies Summary type: object properties: @@ -11326,7 +11326,7 @@ paths: - total_blocking issue_field_values: type: array - items: &653 + items: &651 title: Issue Field Value description: A value assigned to an issue field type: object @@ -12144,7 +12144,7 @@ paths: type: string release: allOf: - - &584 + - &582 title: Release description: A release. type: object @@ -12215,7 +12215,7 @@ paths: author: *4 assets: type: array - items: &585 + items: &583 title: Release Asset description: Data related to a release. type: object @@ -12382,7 +12382,7 @@ paths: created_at: '2022-06-07T07:50:26Z' '304': *37 '403': *29 - '503': &113 + '503': &112 description: Service unavailable content: application/json: @@ -12806,7 +12806,7 @@ paths: url: type: string format: uri - user: &659 + user: &657 title: Public User description: Public User type: object @@ -14676,7 +14676,7 @@ paths: - closed - all default: open - - &230 + - &229 name: labels description: 'A list of comma separated label names. Example: `bug,ui,@high`' in: query @@ -14727,7 +14727,7 @@ paths: type: array items: *75 examples: - default: &231 + default: &230 value: - id: 1 node_id: MDU6SXNzdWUx @@ -16252,11 +16252,11 @@ paths: properties: id: type: string - repository: &152 + repository: &151 title: Minimal Repository description: Minimal Repository type: object - properties: &200 + properties: &199 id: type: integer format: int64 @@ -16606,7 +16606,7 @@ paths: the repository. The keys are the custom property names, and the values are the corresponding custom property values. additionalProperties: true - required: &201 + required: &200 - archive_url - assignees_url - blobs_url @@ -17661,124 +17661,6 @@ paths: enabledForGitHubApps: true category: dependabot subcategory: repository-access - "/organizations/{org}/org-properties/values": - get: - summary: Get all custom property values for an organization - description: |- - Gets all custom property values that are set for an organization. - - The organization must belong to an enterprise. - - Access requirements: - - Organization admins - - OAuth tokens and personal access tokens (classic) with the `read:org` scope - - Actors with the organization-level "read custom properties for an organization" fine-grained permission or above - tags: - - orgs - operationId: orgs/custom-properties-for-orgs-get-organization-values - externalDocs: - description: API method documentation - url: https://docs.github.com/rest/orgs/custom-properties-for-orgs#get-all-custom-property-values-for-an-organization - parameters: - - *68 - responses: - '200': - description: Response - content: - application/json: - schema: - type: array - items: &111 - title: Custom Property Value - description: Custom property name and associated value - type: object - properties: - property_name: - type: string - description: The name of the property - value: - oneOf: - - type: string - - type: array - items: - type: string - description: The value assigned to the property - nullable: true - required: - - property_name - - value - examples: - default: &567 - value: - - property_name: environment - value: production - - property_name: service - value: web - - property_name: team - value: octocat - '403': *29 - '404': *6 - x-github: - githubCloudOnly: false - enabledForGitHubApps: true - category: orgs - subcategory: custom-properties-for-orgs - patch: - summary: Create or update custom property values for an organization - description: |- - Create new or update existing custom property values for an organization. - To remove a custom property value from an organization, set the property value to `null`. - - The organization must belong to an enterprise. - - Access requirements: - - Organization admins - - OAuth tokens and personal access tokens (classic) with the `admin:org` scope - - Actors with the organization-level "edit custom properties for an organization" fine-grained permission - tags: - - orgs - operationId: orgs/custom-properties-for-orgs-create-or-update-organization-values - externalDocs: - description: API method documentation - url: https://docs.github.com/rest/orgs/custom-properties-for-orgs#create-or-update-custom-property-values-for-an-organization - parameters: - - *68 - requestBody: - required: true - content: - application/json: - schema: - type: object - properties: - properties: - type: array - description: A list of custom property names and associated values - to apply to the organization. - items: *111 - required: - - properties - examples: - default: &568 - value: - properties: - - property_name: environment - value: production - - property_name: service - value: web - - property_name: team - value: octocat - responses: - '204': - description: No Content when custom property values are successfully created - or updated - '403': *29 - '404': *6 - '422': *15 - x-github: - githubCloudOnly: false - enabledForGitHubApps: true - category: orgs - subcategory: custom-properties-for-orgs "/organizations/{org}/settings/billing/budgets": get: summary: Get all budgets for an organization @@ -17915,7 +17797,7 @@ paths: alert_recipients: [] '404': *6 '403': *29 - '500': *112 + '500': *111 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -17937,7 +17819,7 @@ paths: url: https://docs.github.com/rest/billing/budgets#get-a-budget-by-id-for-an-organization parameters: - *68 - - &114 + - &113 name: budget_id description: The ID corresponding to the budget. in: path @@ -18030,8 +17912,8 @@ paths: '400': *14 '404': *6 '403': *29 - '500': *112 - '503': *113 + '500': *111 + '503': *112 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -18052,7 +17934,7 @@ paths: url: https://docs.github.com/rest/billing/budgets#update-a-budget-for-an-organization parameters: - *68 - - *114 + - *113 requestBody: required: true content: @@ -18238,7 +18120,7 @@ paths: url: https://docs.github.com/rest/billing/budgets#delete-a-budget-for-an-organization parameters: - *68 - - *114 + - *113 responses: '200': description: Response when deleting a budget @@ -18264,8 +18146,8 @@ paths: '400': *14 '404': *6 '403': *29 - '500': *112 - '503': *113 + '500': *111 + '503': *112 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -18286,7 +18168,7 @@ paths: url: https://docs.github.com/rest/billing/usage#get-billing-premium-request-usage-report-for-an-organization parameters: - *68 - - &115 + - &114 name: year description: If specified, only return results for a single year. The value of `year` is an integer with four digits representing a year. For example, @@ -18295,7 +18177,7 @@ paths: required: false schema: type: integer - - &117 + - &116 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 @@ -18304,7 +18186,7 @@ paths: required: false schema: type: integer - - &116 + - &115 name: day description: If specified, only return results for a single day. The value of `day` is an integer between `1` and `31`. If no `year` or `month` is @@ -18319,14 +18201,14 @@ paths: required: false schema: type: string - - &708 + - &706 name: model description: The model name to query usage for. The name is not case sensitive. in: query required: false schema: type: string - - &118 + - &117 name: product description: The product name to query usage for. The name is not case sensitive. in: query @@ -18442,8 +18324,8 @@ paths: '400': *14 '403': *29 '404': *6 - '500': *112 - '503': *113 + '500': *111 + '503': *112 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -18464,8 +18346,8 @@ paths: url: https://docs.github.com/rest/billing/usage#get-billing-usage-report-for-an-organization parameters: - *68 - - *115 - - &709 + - *114 + - &707 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 @@ -18474,7 +18356,7 @@ paths: required: false schema: type: integer - - *116 + - *115 responses: '200': description: Billing usage report response for an organization @@ -18549,8 +18431,8 @@ paths: repositoryName: github/example '400': *14 '403': *29 - '500': *112 - '503': *113 + '500': *111 + '503': *112 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -18574,18 +18456,18 @@ paths: url: https://docs.github.com/rest/billing/usage#get-billing-usage-summary-for-an-organization parameters: - *68 - - *115 - - *117 + - *114 - *116 - - &710 + - *115 + - &708 name: repository description: The repository name to query for usage in the format owner/repository. in: query required: false schema: type: string - - *118 - - &711 + - *117 + - &709 name: sku description: The SKU to query for usage. in: query @@ -18695,8 +18577,8 @@ paths: netAmount: 8.0 '400': *14 '403': *29 - '500': *112 - '503': *113 + '500': *111 + '503': *112 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -18728,7 +18610,7 @@ paths: description: Response content: application/json: - schema: &119 + schema: &118 title: Organization Full description: Organization Full type: object @@ -19047,7 +18929,7 @@ paths: - updated_at - archived_at examples: - default-response: &120 + default-response: &119 value: login: github id: 1 @@ -19363,17 +19245,17 @@ paths: description: Response content: application/json: - schema: *119 + schema: *118 examples: - default: *120 + default: *119 '422': description: Validation failed content: application/json: schema: oneOf: + - *120 - *121 - - *122 '409': *52 x-github: githubCloudOnly: false @@ -19560,7 +19442,7 @@ paths: type: integer runners: type: array - items: &123 + items: &122 title: GitHub-hosted hosted runner description: A Github-hosted hosted runner. type: object @@ -19614,7 +19496,7 @@ paths: - display_name - source nullable: true - machine_size_details: &131 + machine_size_details: &130 title: Github-owned VM details. description: Provides details of a particular machine spec. type: object @@ -19710,7 +19592,7 @@ paths: - public_ip_enabled - platform examples: - default: &151 + default: &150 value: total_count: 2 runners: @@ -19847,9 +19729,9 @@ paths: description: Response content: application/json: - schema: *123 + schema: *122 examples: - default: &132 + default: &131 value: id: 5 name: My hosted ubuntu runner @@ -19906,7 +19788,7 @@ paths: type: integer images: type: array - items: &124 + items: &123 title: GitHub-hosted runner custom image details description: Provides details of a custom runner image type: object @@ -19957,7 +19839,7 @@ paths: - latest_version - state examples: - default: &126 + default: &125 value: total_count: 2 image_versions: @@ -19989,7 +19871,7 @@ paths: url: https://docs.github.com/rest/actions/hosted-runners#get-a-custom-image-definition-for-github-actions-hosted-runners parameters: - *68 - - &125 + - &124 name: image_definition_id description: Image definition ID of custom image in: path @@ -20001,7 +19883,7 @@ paths: description: Response content: application/json: - schema: *124 + schema: *123 examples: default: value: @@ -20032,7 +19914,7 @@ paths: url: https://docs.github.com/rest/actions/hosted-runners#delete-a-custom-image-from-the-organization parameters: - *68 - - *125 + - *124 responses: '204': description: Response @@ -20055,7 +19937,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/hosted-runners#list-image-versions-of-a-custom-image-for-an-organization parameters: - - *125 + - *124 - *68 responses: '200': @@ -20072,7 +19954,7 @@ paths: type: integer image_versions: type: array - items: &127 + items: &126 title: GitHub-hosted runner custom image version details. description: Provides details of a hosted runner custom image version @@ -20105,7 +19987,7 @@ paths: - created_on - state_details examples: - default: *126 + default: *125 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -20126,8 +20008,8 @@ paths: url: https://docs.github.com/rest/actions/hosted-runners#get-an-image-version-of-a-custom-image-for-github-actions-hosted-runners parameters: - *68 - - *125 - - &128 + - *124 + - &127 name: version description: Version of a custom image in: path @@ -20140,7 +20022,7 @@ paths: description: Response content: application/json: - schema: *127 + schema: *126 examples: default: value: @@ -20167,8 +20049,8 @@ paths: url: https://docs.github.com/rest/actions/hosted-runners#delete-an-image-version-of-custom-image-from-the-organization parameters: - *68 - - *125 - - *128 + - *124 + - *127 responses: '204': description: Response @@ -20205,7 +20087,7 @@ paths: type: integer images: type: array - items: &129 + items: &128 title: GitHub-hosted runner image details. description: Provides details of a hosted runner image type: object @@ -20241,7 +20123,7 @@ paths: - display_name - source examples: - default: &130 + default: &129 value: id: ubuntu-20.04 platform: linux-x64 @@ -20281,9 +20163,9 @@ paths: type: integer images: type: array - items: *129 + items: *128 examples: - default: *130 + default: *129 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -20369,7 +20251,7 @@ paths: type: integer machine_specs: type: array - items: *131 + items: *130 examples: default: value: @@ -20439,7 +20321,7 @@ paths: url: https://docs.github.com/rest/actions/hosted-runners#get-a-github-hosted-runner-for-an-organization parameters: - *68 - - &133 + - &132 name: hosted_runner_id description: Unique identifier of the GitHub-hosted runner. in: path @@ -20451,9 +20333,9 @@ paths: description: Response content: application/json: - schema: *123 + schema: *122 examples: - default: *132 + default: *131 headers: Link: *59 x-github: @@ -20474,7 +20356,7 @@ paths: url: https://docs.github.com/rest/actions/hosted-runners#update-a-github-hosted-runner-for-an-organization parameters: - *68 - - *133 + - *132 requestBody: required: true content: @@ -20517,9 +20399,9 @@ paths: description: Response content: application/json: - schema: *123 + schema: *122 examples: - default: *132 + default: *131 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -20536,15 +20418,15 @@ paths: url: https://docs.github.com/rest/actions/hosted-runners#delete-a-github-hosted-runner-for-an-organization parameters: - *68 - - *133 + - *132 responses: '202': description: Response content: application/json: - schema: *123 + schema: *122 examples: - default: *132 + default: *131 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -20570,7 +20452,7 @@ paths: description: A JSON serialized template for OIDC subject claim customization content: application/json: - schema: &134 + schema: &133 title: Actions OIDC Subject customization description: Actions OIDC Subject customization type: object @@ -20584,7 +20466,7 @@ paths: required: - include_claim_keys examples: - default: &135 + default: &134 value: include_claim_keys: - repo @@ -20611,15 +20493,15 @@ paths: required: true content: application/json: - schema: *134 + schema: *133 examples: - default: *135 + default: *134 responses: '201': description: Empty response content: application/json: - schema: &161 + schema: &160 title: Empty Object description: An object without any properties. type: object @@ -20658,7 +20540,7 @@ paths: schema: type: object properties: - enabled_repositories: &136 + enabled_repositories: &135 type: string description: The policy that controls the repositories in the organization that are allowed to run GitHub Actions. @@ -20671,7 +20553,7 @@ paths: description: The API URL to use to get or set the selected repositories that are allowed to run GitHub Actions, when `enabled_repositories` is set to `selected`. - allowed_actions: &137 + allowed_actions: &136 type: string description: The permissions policy that controls the actions and reusable workflows that are allowed to run. @@ -20684,7 +20566,7 @@ paths: description: The API URL to use to get or set the actions and reusable workflows that are allowed to run, when `allowed_actions` is set to `selected`. - sha_pinning_required: &138 + sha_pinning_required: &137 type: boolean description: Whether actions must be pinned to a full-length commit SHA. @@ -20726,9 +20608,9 @@ paths: schema: type: object properties: - enabled_repositories: *136 - allowed_actions: *137 - sha_pinning_required: *138 + enabled_repositories: *135 + allowed_actions: *136 + sha_pinning_required: *137 required: - enabled_repositories examples: @@ -20847,7 +20729,7 @@ paths: description: Response content: application/json: - schema: &139 + schema: &138 type: object properties: approval_policy: @@ -20892,7 +20774,7 @@ paths: required: true content: application/json: - schema: *139 + schema: *138 examples: default: summary: Set approval policy to first time contributors @@ -20946,7 +20828,7 @@ paths: description: Whether workflows triggered by pull requests from forks require approval from a repository administrator to run. examples: - default: &140 + default: &139 value: run_workflows_from_fork_pull_requests: true send_write_tokens_to_workflows: false @@ -20997,7 +20879,7 @@ paths: description: Whether workflows triggered by pull requests from forks require approval from a repository administrator to run. examples: - default: *140 + default: *139 responses: '204': description: Empty response for successful settings update @@ -21047,7 +20929,7 @@ paths: type: array items: *71 examples: - default: &144 + default: &143 value: total_count: 1 repositories: @@ -21232,7 +21114,7 @@ paths: url: https://docs.github.com/rest/actions/permissions#enable-a-selected-repository-for-github-actions-in-an-organization parameters: - *68 - - &141 + - &140 name: repository_id description: The unique identifier of the repository. in: path @@ -21261,7 +21143,7 @@ paths: url: https://docs.github.com/rest/actions/permissions#disable-a-selected-repository-for-github-actions-in-an-organization parameters: - *68 - - *141 + - *140 responses: '204': description: Response @@ -21290,7 +21172,7 @@ paths: description: Response content: application/json: - schema: &142 + schema: &141 type: object properties: github_owned_allowed: @@ -21312,7 +21194,7 @@ paths: items: type: string examples: - default: &143 + default: &142 value: github_owned_allowed: true verified_allowed: false @@ -21345,9 +21227,9 @@ paths: required: false content: application/json: - schema: *142 + schema: *141 examples: - selected_actions: *143 + selected_actions: *142 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -21479,7 +21361,7 @@ paths: type: array items: *71 examples: - default: *144 + default: *143 '403': *29 '404': *6 x-github: @@ -21548,7 +21430,7 @@ paths: url: https://docs.github.com/rest/actions/permissions#add-a-repository-to-the-list-of-repositories-allowed-to-use-self-hosted-runners-in-an-organization parameters: - *68 - - *141 + - *140 responses: '204': description: No content @@ -21575,7 +21457,7 @@ paths: url: https://docs.github.com/rest/actions/permissions#remove-a-repository-from-the-list-of-repositories-allowed-to-use-self-hosted-runners-in-an-organization parameters: - *68 - - *141 + - *140 responses: '204': description: No content @@ -21612,14 +21494,14 @@ paths: schema: &350 type: object properties: - default_workflow_permissions: &145 + default_workflow_permissions: &144 type: string description: The default workflow permissions granted to the GITHUB_TOKEN when running workflows. enum: - read - write - can_approve_pull_request_reviews: &146 + can_approve_pull_request_reviews: &145 type: boolean description: Whether GitHub Actions can approve pull requests. Enabling this can be a security risk. @@ -21627,7 +21509,7 @@ paths: - default_workflow_permissions - can_approve_pull_request_reviews examples: - default: &147 + default: &146 summary: Give read-only permission, and allow approving PRs. value: default_workflow_permissions: read @@ -21663,10 +21545,10 @@ paths: schema: &351 type: object properties: - default_workflow_permissions: *145 - can_approve_pull_request_reviews: *146 + default_workflow_permissions: *144 + can_approve_pull_request_reviews: *145 examples: - default: *147 + default: *146 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -21711,7 +21593,7 @@ paths: type: number runner_groups: type: array - items: &148 + items: &147 type: object properties: id: @@ -21899,9 +21781,9 @@ paths: description: Response content: application/json: - schema: *148 + schema: *147 examples: - default: &150 + default: &149 value: id: 2 name: octo-runner-group @@ -21937,7 +21819,7 @@ paths: url: https://docs.github.com/rest/actions/self-hosted-runner-groups#get-a-self-hosted-runner-group-for-an-organization parameters: - *68 - - &149 + - &148 name: runner_group_id description: Unique identifier of the self-hosted runner group. in: path @@ -21949,7 +21831,7 @@ paths: description: Response content: application/json: - schema: *148 + schema: *147 examples: default: value: @@ -21986,7 +21868,7 @@ paths: url: https://docs.github.com/rest/actions/self-hosted-runner-groups#update-a-self-hosted-runner-group-for-an-organization parameters: - *68 - - *149 + - *148 requestBody: required: true content: @@ -22040,9 +21922,9 @@ paths: description: Response content: application/json: - schema: *148 + schema: *147 examples: - default: *150 + default: *149 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -22062,7 +21944,7 @@ paths: url: https://docs.github.com/rest/actions/self-hosted-runner-groups#delete-a-self-hosted-runner-group-from-an-organization parameters: - *68 - - *149 + - *148 responses: '204': description: Response @@ -22086,7 +21968,7 @@ paths: url: https://docs.github.com/rest/actions/self-hosted-runner-groups#list-github-hosted-runners-in-a-group-for-an-organization parameters: - *68 - - *149 + - *148 - *17 - *19 responses: @@ -22104,9 +21986,9 @@ paths: type: number runners: type: array - items: *123 + items: *122 examples: - default: *151 + default: *150 headers: Link: *59 x-github: @@ -22129,7 +22011,7 @@ paths: url: https://docs.github.com/rest/actions/self-hosted-runner-groups#list-repository-access-to-a-self-hosted-runner-group-in-an-organization parameters: - *68 - - *149 + - *148 - *19 - *17 responses: @@ -22147,9 +22029,9 @@ paths: type: number repositories: type: array - items: *152 + items: *151 examples: - default: &662 + default: &660 value: total_count: 1 repositories: @@ -22402,7 +22284,7 @@ paths: url: https://docs.github.com/rest/actions/self-hosted-runner-groups#set-repository-access-for-a-self-hosted-runner-group-in-an-organization parameters: - *68 - - *149 + - *148 requestBody: required: true content: @@ -22447,8 +22329,8 @@ paths: url: https://docs.github.com/rest/actions/self-hosted-runner-groups#add-repository-access-to-a-self-hosted-runner-group-in-an-organization parameters: - *68 - - *149 - - *141 + - *148 + - *140 responses: '204': description: Response @@ -22471,8 +22353,8 @@ paths: url: https://docs.github.com/rest/actions/self-hosted-runner-groups#remove-repository-access-to-a-self-hosted-runner-group-in-an-organization parameters: - *68 - - *149 - - *141 + - *148 + - *140 responses: '204': description: Response @@ -22496,7 +22378,7 @@ paths: url: https://docs.github.com/rest/actions/self-hosted-runner-groups#list-self-hosted-runners-in-a-group-for-an-organization parameters: - *68 - - *149 + - *148 - *17 - *19 responses: @@ -22514,7 +22396,7 @@ paths: type: number runners: type: array - items: &154 + items: &153 title: Self hosted runners description: A self hosted runner type: object @@ -22543,7 +22425,7 @@ paths: type: boolean labels: type: array - items: &157 + items: &156 title: Self hosted runner label description: A label for a self hosted runner type: object @@ -22573,7 +22455,7 @@ paths: - busy - labels examples: - default: &155 + default: &154 value: total_count: 2 runners: @@ -22633,7 +22515,7 @@ paths: url: https://docs.github.com/rest/actions/self-hosted-runner-groups#set-self-hosted-runners-in-a-group-for-an-organization parameters: - *68 - - *149 + - *148 requestBody: required: true content: @@ -22678,8 +22560,8 @@ paths: url: https://docs.github.com/rest/actions/self-hosted-runner-groups#add-a-self-hosted-runner-to-a-group-for-an-organization parameters: - *68 - - *149 - - &153 + - *148 + - &152 name: runner_id description: Unique identifier of the self-hosted runner. in: path @@ -22708,8 +22590,8 @@ paths: url: https://docs.github.com/rest/actions/self-hosted-runner-groups#remove-a-self-hosted-runner-from-a-group-for-an-organization parameters: - *68 - - *149 - - *153 + - *148 + - *152 responses: '204': description: Response @@ -22757,9 +22639,9 @@ paths: type: integer runners: type: array - items: *154 + items: *153 examples: - default: *155 + default: *154 headers: Link: *59 x-github: @@ -22912,7 +22794,7 @@ paths: - runner - encoded_jit_config properties: - runner: *154 + runner: *153 encoded_jit_config: type: string description: The base64 encoded runner configuration. @@ -22975,7 +22857,7 @@ paths: description: Response content: application/json: - schema: &156 + schema: &155 title: Authentication Token description: Authentication Token type: object @@ -23050,7 +22932,7 @@ paths: description: Response content: application/json: - schema: *156 + schema: *155 examples: default: &356 value: @@ -23078,13 +22960,13 @@ paths: url: https://docs.github.com/rest/actions/self-hosted-runners#get-a-self-hosted-runner-for-an-organization parameters: - *68 - - *153 + - *152 responses: '200': description: Response content: application/json: - schema: *154 + schema: *153 examples: default: &357 value: @@ -23128,7 +23010,7 @@ paths: url: https://docs.github.com/rest/actions/self-hosted-runners#delete-a-self-hosted-runner-from-an-organization parameters: - *68 - - *153 + - *152 responses: '204': description: Response @@ -23155,9 +23037,9 @@ paths: url: https://docs.github.com/rest/actions/self-hosted-runners#list-labels-for-a-self-hosted-runner-for-an-organization parameters: - *68 - - *153 + - *152 responses: - '200': &158 + '200': &157 description: Response content: application/json: @@ -23171,7 +23053,7 @@ paths: type: integer labels: type: array - items: *157 + items: *156 examples: default: value: @@ -23211,7 +23093,7 @@ paths: url: https://docs.github.com/rest/actions/self-hosted-runners#add-custom-labels-to-a-self-hosted-runner-for-an-organization parameters: - *68 - - *153 + - *152 requestBody: required: true content: @@ -23235,7 +23117,7 @@ paths: - gpu - accelerated responses: - '200': *158 + '200': *157 '404': *6 '422': *7 x-github: @@ -23260,7 +23142,7 @@ paths: url: https://docs.github.com/rest/actions/self-hosted-runners#set-custom-labels-for-a-self-hosted-runner-for-an-organization parameters: - *68 - - *153 + - *152 requestBody: required: true content: @@ -23285,7 +23167,7 @@ paths: - gpu - accelerated responses: - '200': *158 + '200': *157 '404': *6 '422': *7 x-github: @@ -23310,7 +23192,7 @@ paths: url: https://docs.github.com/rest/actions/self-hosted-runners#remove-all-custom-labels-from-a-self-hosted-runner-for-an-organization parameters: - *68 - - *153 + - *152 responses: '200': &358 description: Response @@ -23326,7 +23208,7 @@ paths: type: integer labels: type: array - items: *157 + items: *156 examples: default: value: @@ -23368,7 +23250,7 @@ paths: url: https://docs.github.com/rest/actions/self-hosted-runners#remove-a-custom-label-from-a-self-hosted-runner-for-an-organization parameters: - *68 - - *153 + - *152 - &359 name: name description: The name of a self-hosted runner's custom label. @@ -23377,7 +23259,7 @@ paths: schema: type: string responses: - '200': *158 + '200': *157 '404': *6 '422': *7 x-github: @@ -23420,7 +23302,7 @@ paths: type: integer secrets: type: array - items: &159 + items: &158 title: Actions Secret for an Organization description: Secrets for GitHub Actions for an organization. type: object @@ -23554,7 +23436,7 @@ paths: url: https://docs.github.com/rest/actions/secrets#get-an-organization-secret parameters: - *68 - - &160 + - &159 name: secret_name description: The name of the secret. in: path @@ -23566,7 +23448,7 @@ paths: description: Response content: application/json: - schema: *159 + schema: *158 examples: default: value: @@ -23597,7 +23479,7 @@ paths: url: https://docs.github.com/rest/actions/secrets#create-or-update-an-organization-secret parameters: - *68 - - *160 + - *159 requestBody: required: true content: @@ -23654,7 +23536,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *161 + schema: *160 examples: default: value: @@ -23681,7 +23563,7 @@ paths: url: https://docs.github.com/rest/actions/secrets#delete-an-organization-secret parameters: - *68 - - *160 + - *159 responses: '204': description: Response @@ -23708,7 +23590,7 @@ paths: url: https://docs.github.com/rest/actions/secrets#list-selected-repositories-for-an-organization-secret parameters: - *68 - - *160 + - *159 - *19 - *17 responses: @@ -23726,9 +23608,9 @@ paths: type: integer repositories: type: array - items: *152 + items: *151 examples: - default: &164 + default: &163 value: total_count: 1 repositories: @@ -23821,7 +23703,7 @@ paths: url: https://docs.github.com/rest/actions/secrets#set-selected-repositories-for-an-organization-secret parameters: - *68 - - *160 + - *159 requestBody: required: true content: @@ -23874,7 +23756,7 @@ paths: url: https://docs.github.com/rest/actions/secrets#add-selected-repository-to-an-organization-secret parameters: - *68 - - *160 + - *159 - name: repository_id in: path required: true @@ -23908,7 +23790,7 @@ paths: url: https://docs.github.com/rest/actions/secrets#remove-selected-repository-from-an-organization-secret parameters: - *68 - - *160 + - *159 - name: repository_id in: path required: true @@ -23965,7 +23847,7 @@ paths: type: integer variables: type: array - items: &162 + items: &161 title: Actions Variable for an Organization description: Organization variable for GitHub Actions. type: object @@ -24098,7 +23980,7 @@ paths: description: Response when creating a variable content: application/json: - schema: *161 + schema: *160 examples: default: value: @@ -24124,7 +24006,7 @@ paths: url: https://docs.github.com/rest/actions/variables#get-an-organization-variable parameters: - *68 - - &163 + - &162 name: name description: The name of the variable. in: path @@ -24136,7 +24018,7 @@ paths: description: Response content: application/json: - schema: *162 + schema: *161 examples: default: value: @@ -24167,7 +24049,7 @@ paths: url: https://docs.github.com/rest/actions/variables#update-an-organization-variable parameters: - *68 - - *163 + - *162 requestBody: required: true content: @@ -24230,7 +24112,7 @@ paths: url: https://docs.github.com/rest/actions/variables#delete-an-organization-variable parameters: - *68 - - *163 + - *162 responses: '204': description: Response @@ -24257,7 +24139,7 @@ paths: url: https://docs.github.com/rest/actions/variables#list-selected-repositories-for-an-organization-variable parameters: - *68 - - *163 + - *162 - *19 - *17 responses: @@ -24275,9 +24157,9 @@ paths: type: integer repositories: type: array - items: *152 + items: *151 examples: - default: *164 + default: *163 '409': description: Response when the visibility of the variable is not set to `selected` @@ -24304,7 +24186,7 @@ paths: url: https://docs.github.com/rest/actions/variables#set-selected-repositories-for-an-organization-variable parameters: - *68 - - *163 + - *162 requestBody: required: true content: @@ -24354,7 +24236,7 @@ paths: url: https://docs.github.com/rest/actions/variables#add-selected-repository-to-an-organization-variable parameters: - *68 - - *163 + - *162 - name: repository_id in: path required: true @@ -24389,7 +24271,7 @@ paths: url: https://docs.github.com/rest/actions/variables#remove-selected-repository-from-an-organization-variable parameters: - *68 - - *163 + - *162 - name: repository_id in: path required: true @@ -24531,7 +24413,7 @@ paths: type: integer deployment_records: type: array - items: &165 + items: &164 title: Artifact Deployment Record description: Artifact Metadata Deployment Record type: object @@ -24575,7 +24457,7 @@ paths: with the deployment record. nullable: true examples: - default: &166 + default: &165 value: total_count: 1 deployment_records: @@ -24748,9 +24630,9 @@ paths: type: integer deployment_records: type: array - items: *165 + items: *164 examples: - default: *166 + default: *165 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -24947,9 +24829,9 @@ paths: type: integer deployment_records: type: array - items: *165 + items: *164 examples: - default: *166 + default: *165 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -25078,12 +24960,12 @@ paths: required: - subject_digests examples: - default: &690 + default: &688 value: subject_digests: - sha256:abc123 - sha512:def456 - withPredicateType: &691 + withPredicateType: &689 value: subject_digests: - sha256:abc123 @@ -25141,7 +25023,7 @@ paths: description: The cursor to the previous page. description: Information about the current page. examples: - default: &692 + default: &690 value: attestations_subject_digests: - sha256:abc: @@ -25709,7 +25591,7 @@ paths: description: If specified, only campaigns with this state will be returned. in: query required: false - schema: &167 + schema: &166 title: Campaign state description: Indicates whether a campaign is open or closed type: string @@ -25735,7 +25617,7 @@ paths: application/json: schema: type: array - items: &168 + items: &167 title: Campaign summary description: The campaign metadata and alert stats. type: object @@ -25766,7 +25648,7 @@ paths: team_managers: description: The campaign team managers type: array - items: &189 + items: &188 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -25841,7 +25723,7 @@ paths: description: Groups of organization members that gives permissions on specified repositories. type: object - properties: &242 + properties: &241 id: description: Unique identifier of the team type: integer @@ -25913,7 +25795,7 @@ paths: description: Unique identifier of the enterprise to which this team belongs example: 42 - required: &243 + required: &242 - id - node_id - url @@ -25956,7 +25838,7 @@ paths: type: string format: date-time nullable: true - state: *167 + state: *166 contact_link: description: The contact link of the campaign. type: string @@ -26053,7 +25935,7 @@ paths: headers: Link: *59 '404': *6 - '503': *113 + '503': *112 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -26176,9 +26058,9 @@ paths: description: Response content: application/json: - schema: *168 + schema: *167 examples: - default: &169 + default: &168 value: number: 3 created_at: '2024-02-14T12:29:18Z' @@ -26227,7 +26109,7 @@ paths: schema: *3 '429': description: Too Many Requests - '503': *113 + '503': *112 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -26261,16 +26143,16 @@ paths: description: Response content: application/json: - schema: *168 + schema: *167 examples: - default: *169 + default: *168 '404': *6 '422': description: Unprocessable Entity content: application/json: schema: *3 - '503': *113 + '503': *112 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -26340,7 +26222,7 @@ paths: type: string format: uri nullable: true - state: *167 + state: *166 examples: default: value: @@ -26350,9 +26232,9 @@ paths: description: Response content: application/json: - schema: *168 + schema: *167 examples: - default: *169 + default: *168 '400': description: Bad Request content: @@ -26364,7 +26246,7 @@ paths: content: application/json: schema: *3 - '503': *113 + '503': *112 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -26396,7 +26278,7 @@ paths: '204': description: Deletion successful '404': *6 - '503': *113 + '503': *112 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -26426,7 +26308,7 @@ paths: but not both. in: query required: false - schema: &177 + schema: &176 type: string description: The name of the tool used to generate the code scanning analysis. - &411 @@ -26437,7 +26319,7 @@ paths: or `tool_name`, but not both. in: query required: false - schema: &178 + schema: &177 nullable: true type: string description: The GUID of the tool used to generate the code scanning analysis, @@ -26504,18 +26386,18 @@ paths: items: type: object properties: - number: *170 - created_at: *171 - updated_at: *172 - url: *173 - html_url: *174 + number: *169 + created_at: *170 + updated_at: *171 + url: *172 + html_url: *173 instances_url: &415 type: string description: The REST API URL for fetching the list of instances for an alert. format: uri readOnly: true - state: &179 + state: &178 type: string description: State of a code scanning alert. nullable: true @@ -26523,7 +26405,7 @@ paths: - open - dismissed - fixed - fixed_at: *175 + fixed_at: *174 dismissed_by: title: Simple User description: A GitHub user. @@ -26531,7 +26413,7 @@ paths: properties: *20 required: *21 nullable: true - dismissed_at: *176 + dismissed_at: *175 dismissed_reason: &416 type: string description: "**Required when the state is dismissed.** The @@ -26603,13 +26485,13 @@ paths: tool: &419 type: object properties: - name: *177 + name: *176 version: nullable: true type: string description: The version of the tool used to generate the code scanning analysis. - guid: *178 + guid: *177 most_recent_instance: &420 type: object properties: @@ -26635,7 +26517,7 @@ paths: analysis was executed. Used to distinguish between multiple analyses for the same tool and commit, but performed on different languages or different parts of the code. - state: *179 + state: *178 commit_sha: type: string message: @@ -26931,7 +26813,7 @@ paths: headers: Link: *59 '404': *6 - '503': *113 + '503': *112 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -27285,7 +27167,7 @@ paths: application/json: schema: *47 examples: - default: *180 + default: *179 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -27313,9 +27195,9 @@ paths: description: Response content: application/json: - schema: *181 + schema: *180 examples: - default: *182 + default: *181 '304': *37 '403': *29 '404': *6 @@ -27367,7 +27249,7 @@ paths: - 32 - 91 responses: - '204': *183 + '204': *182 '400': *14 '403': *29 '404': *6 @@ -27402,7 +27284,7 @@ paths: application/json: schema: *47 examples: - default: *180 + default: *179 '304': *37 '403': *29 '404': *6 @@ -27687,7 +27569,7 @@ paths: - *68 - *49 responses: - '204': *183 + '204': *182 '400': *14 '403': *29 '404': *6 @@ -27825,7 +27707,7 @@ paths: default: value: default_for_new_repos: all - configuration: *180 + configuration: *179 '403': *29 '404': *6 x-github: @@ -27878,13 +27760,13 @@ paths: application/json: schema: type: array - items: *184 + items: *183 examples: default: summary: Example of code security configuration repositories value: - status: attached - repository: *185 + repository: *184 '403': *29 '404': *6 x-github: @@ -27924,7 +27806,7 @@ paths: type: integer codespaces: type: array - items: &232 + items: &231 type: object title: Codespace description: A codespace. @@ -27949,7 +27831,7 @@ paths: nullable: true owner: *4 billable_owner: *4 - repository: *152 + repository: *151 machine: type: object title: Codespace machine @@ -28201,7 +28083,7 @@ paths: - pulls_url - recent_folders examples: - default: &233 + default: &232 value: total_count: 3 codespaces: @@ -28611,7 +28493,7 @@ paths: stop_url: https://api.github.com/user/codespaces/monalisa-octocat-hello-world-f8adfad99a/stop recent_folders: [] '304': *37 - '500': *112 + '500': *111 '401': *25 '403': *29 '404': *6 @@ -28677,7 +28559,7 @@ paths: description: Users are neither members nor collaborators of this organization. '404': *6 '422': *15 - '500': *112 + '500': *111 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -28732,7 +28614,7 @@ paths: description: Users are neither members nor collaborators of this organization. '404': *6 '422': *15 - '500': *112 + '500': *111 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -28786,7 +28668,7 @@ paths: description: Users are neither members nor collaborators of this organization. '404': *6 '422': *15 - '500': *112 + '500': *111 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -28825,7 +28707,7 @@ paths: type: integer secrets: type: array - items: &186 + items: &185 title: Codespaces Secret description: Secrets for a GitHub Codespace. type: object @@ -28955,13 +28837,13 @@ paths: url: https://docs.github.com/rest/codespaces/organization-secrets#get-an-organization-secret parameters: - *68 - - *160 + - *159 responses: '200': description: Response content: application/json: - schema: *186 + schema: *185 examples: default: &452 value: @@ -28991,7 +28873,7 @@ paths: url: https://docs.github.com/rest/codespaces/organization-secrets#create-or-update-an-organization-secret parameters: - *68 - - *160 + - *159 requestBody: required: true content: @@ -29046,7 +28928,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *161 + schema: *160 examples: default: value: @@ -29073,7 +28955,7 @@ paths: url: https://docs.github.com/rest/codespaces/organization-secrets#delete-an-organization-secret parameters: - *68 - - *160 + - *159 responses: '204': description: Response @@ -29099,7 +28981,7 @@ paths: url: https://docs.github.com/rest/codespaces/organization-secrets#list-selected-repositories-for-an-organization-secret parameters: - *68 - - *160 + - *159 - *19 - *17 responses: @@ -29117,9 +28999,9 @@ paths: type: integer repositories: type: array - items: *152 + items: *151 examples: - default: *164 + default: *163 '404': *6 x-github: githubCloudOnly: false @@ -29142,7 +29024,7 @@ paths: url: https://docs.github.com/rest/codespaces/organization-secrets#set-selected-repositories-for-an-organization-secret parameters: - *68 - - *160 + - *159 requestBody: required: true content: @@ -29193,7 +29075,7 @@ paths: url: https://docs.github.com/rest/codespaces/organization-secrets#add-selected-repository-to-an-organization-secret parameters: - *68 - - *160 + - *159 - name: repository_id in: path required: true @@ -29227,7 +29109,7 @@ paths: url: https://docs.github.com/rest/codespaces/organization-secrets#remove-selected-repository-from-an-organization-secret parameters: - *68 - - *160 + - *159 - name: repository_id in: path required: true @@ -29375,7 +29257,7 @@ paths: cli: enabled public_code_suggestions: block plan_type: business - '500': *112 + '500': *111 '401': *25 '403': *29 '404': *6 @@ -29430,7 +29312,7 @@ paths: currently being billed. seats: type: array - items: &235 + items: &234 title: Copilot Business Seat Detail description: Information about a Copilot Business seat assignment for a user, team, or organization. @@ -29447,14 +29329,14 @@ paths: title: Organization Simple description: A GitHub organization. type: object - properties: *187 - required: *188 + properties: *186 + required: *187 nullable: true assigning_team: description: The team through which the assignee is granted access to GitHub Copilot, if applicable. oneOf: - - *189 + - *188 - *60 nullable: true pending_cancellation_date: @@ -29580,7 +29462,7 @@ paths: site_admin: false headers: Link: *59 - '500': *112 + '500': *111 '401': *25 '403': *29 '404': *6 @@ -29655,7 +29537,7 @@ paths: default: value: seats_created: 5 - '500': *112 + '500': *111 '401': *25 '403': *29 '404': *6 @@ -29733,7 +29615,7 @@ paths: default: value: seats_cancelled: 5 - '500': *112 + '500': *111 '401': *25 '403': *29 '404': *6 @@ -29812,7 +29694,7 @@ paths: default: value: seats_created: 5 - '500': *112 + '500': *111 '401': *25 '403': *29 '404': *6 @@ -29890,7 +29772,7 @@ paths: default: value: seats_cancelled: 5 - '500': *112 + '500': *111 '401': *25 '403': *29 '404': *6 @@ -30367,7 +30249,7 @@ paths: custom_model_training_date: '2024-02-01' total_pr_summaries_created: 10 total_engaged_users: 4 - '500': *112 + '500': *111 '403': *29 '404': *6 '422': &320 @@ -30398,11 +30280,11 @@ paths: url: https://docs.github.com/rest/dependabot/alerts#list-dependabot-alerts-for-an-organization parameters: - *68 + - *189 - *190 - *191 - *192 - *193 - - *194 - name: artifact_registry_url in: query description: A comma-separated list of artifact registry URLs. If specified, @@ -30440,8 +30322,8 @@ paths: Can be: `critical-resource`, `internet-exposed`, `sensitive-data`, `lateral-movement` schema: type: string + - *194 - *195 - - *196 - *53 - *45 - *46 @@ -30453,9 +30335,9 @@ paths: application/json: schema: type: array - items: *197 + items: *196 examples: - default: *198 + default: *197 '304': *37 '400': *14 '403': *29 @@ -30499,7 +30381,7 @@ paths: type: integer secrets: type: array - items: &199 + items: &198 title: Dependabot Secret for an Organization description: Secrets for GitHub Dependabot for an organization. type: object @@ -30617,13 +30499,13 @@ paths: url: https://docs.github.com/rest/dependabot/secrets#get-an-organization-secret parameters: - *68 - - *160 + - *159 responses: '200': description: Response content: application/json: - schema: *199 + schema: *198 examples: default: value: @@ -30652,7 +30534,7 @@ paths: url: https://docs.github.com/rest/dependabot/secrets#create-or-update-an-organization-secret parameters: - *68 - - *160 + - *159 requestBody: required: true content: @@ -30711,7 +30593,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *161 + schema: *160 examples: default: value: @@ -30736,7 +30618,7 @@ paths: url: https://docs.github.com/rest/dependabot/secrets#delete-an-organization-secret parameters: - *68 - - *160 + - *159 responses: '204': description: Response @@ -30761,7 +30643,7 @@ paths: url: https://docs.github.com/rest/dependabot/secrets#list-selected-repositories-for-an-organization-secret parameters: - *68 - - *160 + - *159 - *19 - *17 responses: @@ -30779,9 +30661,9 @@ paths: type: integer repositories: type: array - items: *152 + items: *151 examples: - default: *164 + default: *163 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -30803,7 +30685,7 @@ paths: url: https://docs.github.com/rest/dependabot/secrets#set-selected-repositories-for-an-organization-secret parameters: - *68 - - *160 + - *159 requestBody: required: true content: @@ -30854,7 +30736,7 @@ paths: url: https://docs.github.com/rest/dependabot/secrets#add-selected-repository-to-an-organization-secret parameters: - *68 - - *160 + - *159 - name: repository_id in: path required: true @@ -30886,7 +30768,7 @@ paths: url: https://docs.github.com/rest/dependabot/secrets#remove-selected-repository-from-an-organization-secret parameters: - *68 - - *160 + - *159 - name: repository_id in: path required: true @@ -30924,7 +30806,7 @@ paths: application/json: schema: type: array - items: &245 + items: &244 title: Package description: A software package type: object @@ -30974,8 +30856,8 @@ paths: title: Minimal Repository description: Minimal Repository type: object - properties: *200 - required: *201 + properties: *199 + required: *200 nullable: true created_at: type: string @@ -30994,7 +30876,7 @@ paths: - created_at - updated_at examples: - default: &246 + default: &245 value: - id: 197 name: hello_docker @@ -31164,7 +31046,7 @@ paths: application/json: schema: type: array - items: &224 + items: &223 title: Organization Invitation description: Organization Invitation type: object @@ -31211,7 +31093,7 @@ paths: - invitation_teams_url - node_id examples: - default: &225 + default: &224 value: - id: 1 login: monalisa @@ -31278,7 +31160,7 @@ paths: application/json: schema: type: array - items: &202 + items: &201 title: Org Hook description: Org Hook type: object @@ -31449,9 +31331,9 @@ paths: description: Response content: application/json: - schema: *202 + schema: *201 examples: - default: &203 + default: &202 value: id: 1 url: https://api.github.com/orgs/octocat/hooks/1 @@ -31499,7 +31381,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#get-an-organization-webhook parameters: - *68 - - &204 + - &203 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. @@ -31512,9 +31394,9 @@ paths: description: Response content: application/json: - schema: *202 + schema: *201 examples: - default: *203 + default: *202 '404': *6 x-github: githubCloudOnly: false @@ -31542,7 +31424,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#update-an-organization-webhook parameters: - *68 - - *204 + - *203 requestBody: required: false content: @@ -31587,7 +31469,7 @@ paths: description: Response content: application/json: - schema: *202 + schema: *201 examples: default: value: @@ -31629,7 +31511,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#delete-an-organization-webhook parameters: - *68 - - *204 + - *203 responses: '204': description: Response @@ -31657,7 +31539,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#get-a-webhook-configuration-for-an-organization parameters: - *68 - - *204 + - *203 responses: '200': description: Response @@ -31688,7 +31570,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#update-a-webhook-configuration-for-an-organization parameters: - *68 - - *204 + - *203 requestBody: required: false content: @@ -31739,9 +31621,9 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#list-deliveries-for-an-organization-webhook parameters: - *68 - - *204 + - *203 - *17 - - *205 + - *204 responses: '200': description: Response @@ -31749,9 +31631,9 @@ paths: application/json: schema: type: array - items: *206 + items: *205 examples: - default: *207 + default: *206 '400': *14 '422': *15 x-github: @@ -31777,16 +31659,16 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#get-a-webhook-delivery-for-an-organization-webhook parameters: - *68 - - *204 + - *203 - *16 responses: '200': description: Response content: application/json: - schema: *208 + schema: *207 examples: - default: *209 + default: *208 '400': *14 '422': *15 x-github: @@ -31812,7 +31694,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#redeliver-a-delivery-for-an-organization-webhook parameters: - *68 - - *204 + - *203 - *16 responses: '202': *39 @@ -31842,7 +31724,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#ping-an-organization-webhook parameters: - *68 - - *204 + - *203 responses: '204': description: Response @@ -31865,7 +31747,7 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-route-stats-by-actor parameters: - *68 - - &214 + - &213 name: actor_type in: path description: The type of the actor @@ -31878,14 +31760,14 @@ paths: - fine_grained_pat - oauth_app - github_app_user_to_server - - &215 + - &214 name: actor_id in: path description: The ID of the actor required: true schema: type: integer - - &210 + - &209 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`.' @@ -31893,7 +31775,7 @@ paths: required: true schema: type: string - - &211 + - &210 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) @@ -31987,12 +31869,12 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-subject-stats parameters: - *68 + - *209 - *210 - - *211 - *19 - *17 - *53 - - &220 + - &219 name: sort description: The property to sort the results by. in: query @@ -32071,14 +31953,14 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-summary-stats parameters: - *68 + - *209 - *210 - - *211 responses: '200': description: Response content: application/json: - schema: &212 + schema: &211 title: Summary Stats description: API Insights usage summary stats for an organization type: object @@ -32094,7 +31976,7 @@ paths: type: integer format: int64 examples: - default: &213 + default: &212 value: total_request_count: 34225 rate_limited_request_count: 23 @@ -32115,23 +31997,23 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-summary-stats-by-user parameters: - *68 - - &216 + - &215 name: user_id in: path description: The ID of the user to query for stats required: true schema: type: string + - *209 - *210 - - *211 responses: '200': description: Response content: application/json: - schema: *212 + schema: *211 examples: - default: *213 + default: *212 x-github: enabledForGitHubApps: true category: orgs @@ -32150,18 +32032,18 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-summary-stats-by-actor parameters: - *68 + - *209 - *210 - - *211 + - *213 - *214 - - *215 responses: '200': description: Response content: application/json: - schema: *212 + schema: *211 examples: - default: *213 + default: *212 x-github: enabledForGitHubApps: true category: orgs @@ -32179,9 +32061,9 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-time-stats parameters: - *68 + - *209 - *210 - - *211 - - &217 + - &216 name: timestamp_increment description: The increment of time used to breakdown the query results (5m, 10m, 1h, etc.) @@ -32194,7 +32076,7 @@ paths: description: Response content: application/json: - schema: &218 + schema: &217 title: Time Stats description: API Insights usage time stats for an organization type: array @@ -32210,7 +32092,7 @@ paths: type: integer format: int64 examples: - default: &219 + default: &218 value: - timestamp: '2024-09-11T15:00:00Z' total_request_count: 34225 @@ -32247,18 +32129,18 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-time-stats-by-user parameters: - *68 - - *216 + - *215 + - *209 - *210 - - *211 - - *217 + - *216 responses: '200': description: Response content: application/json: - schema: *218 + schema: *217 examples: - default: *219 + default: *218 x-github: enabledForGitHubApps: true category: orgs @@ -32276,19 +32158,19 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-time-stats-by-actor parameters: - *68 + - *213 - *214 - - *215 + - *209 - *210 - - *211 - - *217 + - *216 responses: '200': description: Response content: application/json: - schema: *218 + schema: *217 examples: - default: *219 + default: *218 x-github: enabledForGitHubApps: true category: orgs @@ -32306,13 +32188,13 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-user-stats parameters: - *68 - - *216 + - *215 + - *209 - *210 - - *211 - *19 - *17 - *53 - - *220 + - *219 - name: actor_name_substring in: query description: Providing a substring will filter results where the actor name @@ -32559,12 +32441,12 @@ paths: application/json: schema: anyOf: - - &222 + - &221 title: Interaction Limits description: Interaction limit settings. type: object properties: - limit: &221 + limit: &220 type: string description: The type of GitHub user that can comment, open issues, or create pull requests while the interaction limit @@ -32589,7 +32471,7 @@ paths: properties: {} additionalProperties: false examples: - default: &223 + default: &222 value: limit: collaborators_only origin: organization @@ -32624,7 +32506,7 @@ paths: duration type: object properties: - limit: *221 + limit: *220 expiry: type: string description: 'The duration of the interaction restriction. Default: @@ -32648,9 +32530,9 @@ paths: description: Response content: application/json: - schema: *222 + schema: *221 examples: - default: *223 + default: *222 '422': *15 x-github: githubCloudOnly: false @@ -32726,9 +32608,9 @@ paths: application/json: schema: type: array - items: *224 + items: *223 examples: - default: *225 + default: *224 headers: Link: *59 '404': *6 @@ -32805,7 +32687,7 @@ paths: description: Response content: application/json: - schema: *224 + schema: *223 examples: default: value: @@ -32860,7 +32742,7 @@ paths: url: https://docs.github.com/rest/orgs/members#cancel-an-organization-invitation parameters: - *68 - - &226 + - &225 name: invitation_id description: The unique identifier of the invitation. in: path @@ -32891,7 +32773,7 @@ paths: url: https://docs.github.com/rest/orgs/members#list-organization-invitation-teams parameters: - *68 - - *226 + - *225 - *17 - *19 responses: @@ -32901,9 +32783,9 @@ paths: application/json: schema: type: array - items: *189 + items: *188 examples: - default: &244 + default: &243 value: - id: 1 node_id: MDQ6VGVhbTE= @@ -32946,7 +32828,7 @@ paths: application/json: schema: type: array - items: *227 + items: *226 examples: default: value: @@ -33031,9 +32913,9 @@ paths: description: Response content: application/json: - schema: *227 + schema: *226 examples: - default: &228 + default: &227 value: id: 410 node_id: IT_kwDNAd3NAZo @@ -33066,7 +32948,7 @@ paths: url: https://docs.github.com/rest/orgs/issue-types#update-issue-type-for-an-organization parameters: - *68 - - &229 + - &228 name: issue_type_id description: The unique identifier of the issue type. in: path @@ -33119,9 +33001,9 @@ paths: description: Response content: application/json: - schema: *227 + schema: *226 examples: - default: *228 + default: *227 '404': *6 '422': *7 x-github: @@ -33146,7 +33028,7 @@ paths: url: https://docs.github.com/rest/orgs/issue-types#delete-issue-type-for-an-organization parameters: - *68 - - *229 + - *228 responses: '204': description: Response @@ -33209,7 +33091,7 @@ paths: - closed - all default: open - - *230 + - *229 - name: type description: Can be the name of an issue type. in: query @@ -33240,7 +33122,7 @@ paths: type: array items: *75 examples: - default: *231 + default: *230 headers: Link: *59 '404': *6 @@ -33399,11 +33281,11 @@ paths: type: integer codespaces: type: array - items: *232 + items: *231 examples: - default: *233 + default: *232 '304': *37 - '500': *112 + '500': *111 '401': *25 '403': *29 '404': *6 @@ -33428,7 +33310,7 @@ paths: parameters: - *68 - *64 - - &234 + - &233 name: codespace_name in: path required: true @@ -33438,7 +33320,7 @@ paths: responses: '202': *39 '304': *37 - '500': *112 + '500': *111 '401': *25 '403': *29 '404': *6 @@ -33463,13 +33345,13 @@ paths: parameters: - *68 - *64 - - *234 + - *233 responses: '200': description: Response content: application/json: - schema: *232 + schema: *231 examples: default: &445 value: @@ -33613,7 +33495,7 @@ paths: recent_folders: [] template: '304': *37 - '500': *112 + '500': *111 '401': *25 '403': *29 '404': *6 @@ -33651,7 +33533,7 @@ paths: description: The user's GitHub Copilot seat details, including usage. content: application/json: - schema: *235 + schema: *234 examples: default: value: @@ -33695,7 +33577,7 @@ paths: members_url: https://api.github.com/teams/1/members{/member} repositories_url: https://api.github.com/teams/1/repos parent: - '500': *112 + '500': *111 '401': *25 '403': *29 '404': *6 @@ -33727,7 +33609,7 @@ paths: description: Response content: application/json: - schema: &236 + schema: &235 title: Org Membership description: Org Membership type: object @@ -33794,7 +33676,7 @@ paths: - organization - user examples: - response-if-user-has-an-active-admin-membership-with-organization: &237 + response-if-user-has-an-active-admin-membership-with-organization: &236 summary: Response if user has an active admin membership with organization value: url: https://api.github.com/orgs/octocat/memberships/defunkt @@ -33895,9 +33777,9 @@ paths: description: Response content: application/json: - schema: *236 + schema: *235 examples: - response-if-user-already-had-membership-with-organization: *237 + response-if-user-already-had-membership-with-organization: *236 '422': *15 '403': *29 x-github: @@ -33968,7 +33850,7 @@ paths: application/json: schema: type: array - items: &238 + items: &237 title: Migration description: A migration. type: object @@ -34297,7 +34179,7 @@ paths: description: Response content: application/json: - schema: *238 + schema: *237 examples: default: value: @@ -34476,7 +34358,7 @@ paths: url: https://docs.github.com/rest/migrations/orgs#get-an-organization-migration-status parameters: - *68 - - &239 + - &238 name: migration_id description: The unique identifier of the migration. in: path @@ -34503,7 +34385,7 @@ paths: * `failed`, which means the migration failed. content: application/json: - schema: *238 + schema: *237 examples: default: value: @@ -34673,7 +34555,7 @@ paths: url: https://docs.github.com/rest/migrations/orgs#download-an-organization-migration-archive parameters: - *68 - - *239 + - *238 responses: '302': description: Response @@ -34695,7 +34577,7 @@ paths: url: https://docs.github.com/rest/migrations/orgs#delete-an-organization-migration-archive parameters: - *68 - - *239 + - *238 responses: '204': description: Response @@ -34719,8 +34601,8 @@ paths: url: https://docs.github.com/rest/migrations/orgs#unlock-an-organization-repository parameters: - *68 - - *239 - - &675 + - *238 + - &673 name: repo_name description: repo_name parameter in: path @@ -34748,7 +34630,7 @@ paths: url: https://docs.github.com/rest/migrations/orgs#list-repositories-in-an-organization-migration parameters: - *68 - - *239 + - *238 - *17 - *19 responses: @@ -34758,9 +34640,9 @@ paths: application/json: schema: type: array - items: *152 + items: *151 examples: - default: &251 + default: &250 value: - id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -34913,7 +34795,7 @@ paths: roles: type: array description: The list of organization roles available to the organization. - items: &241 + items: &240 title: Organization Role description: Organization roles type: object @@ -35088,7 +34970,7 @@ paths: parameters: - *68 - *69 - - &240 + - &239 name: role_id description: The unique identifier of the role. in: path @@ -35125,7 +35007,7 @@ paths: parameters: - *68 - *69 - - *240 + - *239 responses: '204': description: Response @@ -35178,7 +35060,7 @@ paths: parameters: - *68 - *64 - - *240 + - *239 responses: '204': description: Response @@ -35210,7 +35092,7 @@ paths: parameters: - *68 - *64 - - *240 + - *239 responses: '204': description: Response @@ -35239,13 +35121,13 @@ paths: url: https://docs.github.com/rest/orgs/organization-roles#get-an-organization-role parameters: - *68 - - *240 + - *239 responses: '200': description: Response content: application/json: - schema: *241 + schema: *240 examples: default: value: @@ -35296,7 +35178,7 @@ paths: url: https://docs.github.com/rest/orgs/organization-roles#list-teams-that-are-assigned-to-an-organization-role parameters: - *68 - - *240 + - *239 - *17 - *19 responses: @@ -35374,8 +35256,8 @@ paths: description: Groups of organization members that gives permissions on specified repositories. type: object - properties: *242 - required: *243 + properties: *241 + required: *242 nullable: true type: description: The ownership type of the team @@ -35407,7 +35289,7 @@ paths: - type - parent examples: - default: *244 + default: *243 headers: Link: *59 '404': @@ -35437,7 +35319,7 @@ paths: url: https://docs.github.com/rest/orgs/organization-roles#list-users-that-are-assigned-to-an-organization-role parameters: - *68 - - *240 + - *239 - *17 - *19 responses: @@ -35470,8 +35352,8 @@ paths: description: Groups of organization members that gives permissions on specified repositories. type: object - properties: *242 - required: *243 + properties: *241 + required: *242 name: nullable: true type: string @@ -35759,7 +35641,7 @@ paths: - nuget - container - *68 - - &676 + - &674 name: visibility description: |- The selected visibility of the packages. This parameter is optional and only filters an existing result set. @@ -35795,12 +35677,12 @@ paths: application/json: schema: type: array - items: *245 + items: *244 examples: - default: *246 + default: *245 '403': *29 '401': *25 - '400': &678 + '400': &676 description: The value of `per_page` multiplied by `page` cannot be greater than 10000. x-github: @@ -35822,7 +35704,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-for-an-organization parameters: - - &247 + - &246 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 @@ -35840,7 +35722,7 @@ paths: - docker - nuget - container - - &248 + - &247 name: package_name description: The name of the package. in: path @@ -35853,7 +35735,7 @@ paths: description: Response content: application/json: - schema: *245 + schema: *244 examples: default: value: @@ -35905,8 +35787,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-a-package-for-an-organization parameters: + - *246 - *247 - - *248 - *68 responses: '204': @@ -35939,8 +35821,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-a-package-for-an-organization parameters: + - *246 - *247 - - *248 - *68 - name: token description: package token @@ -35973,8 +35855,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: + - *246 - *247 - - *248 - *68 - *19 - *17 @@ -35995,7 +35877,7 @@ paths: application/json: schema: type: array - items: &249 + items: &248 title: Package Version description: A version of a software package type: object @@ -36120,10 +36002,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-version-for-an-organization parameters: + - *246 - *247 - - *248 - *68 - - &250 + - &249 name: package_version_id description: Unique identifier of the package version. in: path @@ -36135,7 +36017,7 @@ paths: description: Response content: application/json: - schema: *249 + schema: *248 examples: default: value: @@ -36171,10 +36053,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-package-version-for-an-organization parameters: + - *246 - *247 - - *248 - *68 - - *250 + - *249 responses: '204': description: Response @@ -36206,10 +36088,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-package-version-for-an-organization parameters: + - *246 - *247 - - *248 - *68 - - *250 + - *249 responses: '204': description: Response @@ -36239,7 +36121,7 @@ paths: - *68 - *17 - *19 - - &252 + - &251 name: sort description: The property by which to sort the results. in: query @@ -36250,7 +36132,7 @@ paths: - created_at default: created_at - *53 - - &253 + - &252 name: owner description: A list of owner usernames to use to filter the results. in: query @@ -36261,7 +36143,7 @@ paths: items: type: string example: owner[]=octocat1,owner[]=octocat2 - - &254 + - &253 name: repository description: The name of the repository to use to filter the results. in: query @@ -36269,7 +36151,7 @@ paths: schema: type: string example: Hello-World - - &255 + - &254 name: permission description: The permission to use to filter the results. in: query @@ -36277,7 +36159,7 @@ paths: schema: type: string example: issues_read - - &256 + - &255 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) @@ -36287,7 +36169,7 @@ paths: schema: type: string format: date-time - - &257 + - &256 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) @@ -36297,7 +36179,7 @@ paths: schema: type: string format: date-time - - &258 + - &257 name: token_id description: The ID of the token in: query @@ -36309,7 +36191,7 @@ paths: type: string example: token_id[]=1,token_id[]=2 responses: - '500': *112 + '500': *111 '422': *15 '404': *6 '403': *29 @@ -36502,7 +36384,7 @@ paths: action: deny reason: Access is too broad. responses: - '500': *112 + '500': *111 '422': *15 '404': *6 '403': *29 @@ -36563,11 +36445,11 @@ paths: action: deny reason: This request is denied because the access is too broad. responses: - '500': *112 + '500': *111 '422': *15 '404': *6 '403': *29 - '204': *183 + '204': *182 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -36599,7 +36481,7 @@ paths: - *17 - *19 responses: - '500': *112 + '500': *111 '404': *6 '403': *29 '200': @@ -36608,9 +36490,9 @@ paths: application/json: schema: type: array - items: *152 + items: *151 examples: - default: *251 + default: *250 headers: Link: *59 x-github: @@ -36636,16 +36518,16 @@ paths: - *68 - *17 - *19 - - *252 + - *251 - *53 + - *252 - *253 - *254 - *255 - *256 - *257 - - *258 responses: - '500': *112 + '500': *111 '422': *15 '404': *6 '403': *29 @@ -36827,7 +36709,7 @@ paths: - 1296269 - 1296280 responses: - '500': *112 + '500': *111 '404': *6 '202': *39 '403': *29 @@ -36880,9 +36762,9 @@ paths: value: action: revoke responses: - '500': *112 + '500': *111 '404': *6 - '204': *183 + '204': *182 '403': *29 '422': *15 x-github: @@ -36914,7 +36796,7 @@ paths: - *17 - *19 responses: - '500': *112 + '500': *111 '404': *6 '403': *29 '200': @@ -36923,9 +36805,9 @@ paths: application/json: schema: type: array - items: *152 + items: *151 examples: - default: *251 + default: *250 headers: Link: *59 x-github: @@ -36967,7 +36849,7 @@ paths: type: integer configurations: type: array - items: &259 + items: &258 title: Organization private registry description: Private registry configuration for an organization type: object @@ -37257,7 +37139,7 @@ paths: - created_at - updated_at examples: - org-private-registry-with-selected-visibility: &260 + org-private-registry-with-selected-visibility: &259 value: name: MAVEN_REPOSITORY_SECRET registry_type: maven_repository @@ -37347,15 +37229,15 @@ paths: url: https://docs.github.com/rest/private-registries/organization-configurations#get-a-private-registry-for-an-organization parameters: - *68 - - *160 + - *159 responses: '200': description: The specified private registry configuration for the organization content: application/json: - schema: *259 + schema: *258 examples: - default: *260 + default: *259 '404': *6 x-github: githubCloudOnly: false @@ -37377,7 +37259,7 @@ paths: url: https://docs.github.com/rest/private-registries/organization-configurations#update-a-private-registry-for-an-organization parameters: - *68 - - *160 + - *159 requestBody: required: true content: @@ -37482,7 +37364,7 @@ paths: url: https://docs.github.com/rest/private-registries/organization-configurations#delete-a-private-registry-for-an-organization parameters: - *68 - - *160 + - *159 responses: '204': description: Response @@ -37522,7 +37404,7 @@ paths: application/json: schema: type: array - items: &261 + items: &260 title: Projects v2 Project description: A projects v2 project type: object @@ -37592,7 +37474,7 @@ paths: title: Projects v2 Status Update description: An status update belonging to a project type: object - properties: &762 + properties: &760 id: type: number description: The unique identifier of the status update. @@ -37640,7 +37522,7 @@ paths: example: The project is off to a great start! type: string nullable: true - required: &763 + required: &761 - id - node_id - created_at @@ -37665,7 +37547,7 @@ paths: - deleted_at - deleted_by examples: - default: &262 + default: &261 value: id: 2 node_id: MDc6UHJvamVjdDEwMDI2MDM= @@ -37768,7 +37650,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/projects#get-project-for-organization parameters: - - &263 + - &262 name: project_number description: The project's number. in: path @@ -37781,9 +37663,9 @@ paths: description: Response content: application/json: - schema: *261 + schema: *260 examples: - default: *262 + default: *261 headers: Link: *59 '304': *37 @@ -37806,7 +37688,7 @@ paths: url: https://docs.github.com/rest/projects/drafts#create-draft-item-for-organization-owned-project parameters: - *68 - - *263 + - *262 requestBody: required: true description: Details of the draft item to create in the project. @@ -37840,7 +37722,7 @@ paths: description: Response content: application/json: - schema: &269 + schema: &268 title: Projects v2 Item description: An item belonging to a project type: object @@ -37960,8 +37842,8 @@ paths: title: Milestone description: A collection of related issues and pull requests. type: object - properties: *264 - required: *265 + properties: *263 + required: *264 nullable: true active_lock_reason: type: string @@ -38006,7 +37888,7 @@ paths: nullable: true requested_teams: type: array - items: *189 + items: *188 nullable: true head: type: object @@ -38057,7 +37939,7 @@ paths: _links: type: object properties: - comments: &266 + comments: &265 title: Link description: Hypermedia Link type: object @@ -38066,13 +37948,13 @@ paths: type: string required: - href - commits: *266 - statuses: *266 - html: *266 - issue: *266 - review_comments: *266 - review_comment: *266 - self: *266 + commits: *265 + statuses: *265 + html: *265 + issue: *265 + review_comments: *265 + review_comment: *265 + self: *265 required: - comments - commits @@ -38083,7 +37965,7 @@ paths: - review_comment - self author_association: *76 - auto_merge: &570 + auto_merge: &568 title: Auto merge description: The status of auto merging a pull request. type: object @@ -38185,7 +38067,7 @@ paths: - created_at - updated_at description: The content represented by the item. - content_type: &268 + content_type: &267 title: Projects v2 Item Content Type description: The type of content tracked in a project item type: string @@ -38225,7 +38107,7 @@ paths: - updated_at - archived_at examples: - draft_issue: &270 + draft_issue: &269 value: id: 17 node_id: PVTI_lADOANN5s84ACbL0zgBueEI @@ -38299,7 +38181,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/fields#list-project-fields-for-organization parameters: - - *263 + - *262 - *68 - *17 - *45 @@ -38311,7 +38193,7 @@ paths: application/json: schema: type: array - items: &267 + items: &266 title: Projects v2 Field description: A field inside a projects v2 project type: object @@ -38458,7 +38340,7 @@ paths: - updated_at - project_url examples: - default: &695 + default: &693 value: - id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -38588,7 +38470,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/fields#add-a-field-to-an-organization-owned-project parameters: - - *263 + - *262 - *68 requestBody: required: true @@ -38635,7 +38517,7 @@ paths: description: The options available for single select fields. At least one option must be provided when creating a single select field. - items: &696 + items: &694 type: object properties: name: @@ -38671,7 +38553,7 @@ paths: description: The field's data type. enum: - iteration - iteration_configuration: &697 + iteration_configuration: &695 type: object description: The configuration for iteration fields. properties: @@ -38720,7 +38602,7 @@ paths: value: name: Due date data_type: date - single_select_field: &698 + single_select_field: &696 summary: Create a single select field value: name: Priority @@ -38747,7 +38629,7 @@ paths: description: raw: High priority items html: High priority items - iteration_field: &699 + iteration_field: &697 summary: Create an iteration field value: name: Sprint @@ -38771,9 +38653,9 @@ paths: description: Response for adding a field to an organization-owned project. content: application/json: - schema: *267 + schema: *266 examples: - text_field: &700 + text_field: &698 value: id: 24680 node_id: PVTF_lADOABCD2468024680 @@ -38782,7 +38664,7 @@ paths: project_url: https://api.github.com/projects/67890 created_at: '2022-05-15T08:00:00Z' updated_at: '2022-05-15T08:00:00Z' - number_field: &701 + number_field: &699 value: id: 13579 node_id: PVTF_lADOABCD1357913579 @@ -38791,7 +38673,7 @@ paths: project_url: https://api.github.com/projects/67890 created_at: '2022-06-01T14:30:00Z' updated_at: '2022-06-01T14:30:00Z' - date_field: &702 + date_field: &700 value: id: 98765 node_id: PVTF_lADOABCD9876598765 @@ -38800,7 +38682,7 @@ paths: project_url: https://api.github.com/projects/67890 created_at: '2022-06-10T09:15:00Z' updated_at: '2022-06-10T09:15:00Z' - single_select_field: &703 + single_select_field: &701 value: id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -38834,7 +38716,7 @@ paths: raw: High priority items created_at: '2022-04-28T12:00:00Z' updated_at: '2022-04-28T12:00:00Z' - iteration_field: &704 + iteration_field: &702 value: id: 11223 node_id: PVTF_lADOABCD1122311223 @@ -38879,8 +38761,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/fields#get-project-field-for-organization parameters: - - *263 - - &705 + - *262 + - &703 name: field_id description: The unique identifier of the field. in: path @@ -38893,9 +38775,9 @@ paths: description: Response content: application/json: - schema: *267 + schema: *266 examples: - default: &706 + default: &704 value: id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -38951,7 +38833,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#list-items-for-an-organization-owned-project parameters: - - *263 + - *262 - *68 - 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) @@ -38984,7 +38866,7 @@ paths: application/json: schema: type: array - items: &271 + items: &270 title: Projects v2 Item description: An item belonging to a project type: object @@ -39000,7 +38882,7 @@ paths: format: uri example: https://api.github.com/users/monalisa/2/projectsV2/3 description: The API URL of the project that contains this item. - content_type: *268 + content_type: *267 content: type: object additionalProperties: true @@ -39043,7 +38925,7 @@ paths: - updated_at - archived_at examples: - default: &272 + default: &271 value: id: 13 node_id: PVTI_lAAFAQ0 @@ -39740,7 +39622,7 @@ paths: url: https://docs.github.com/rest/projects/items#add-item-to-organization-owned-project parameters: - *68 - - *263 + - *262 requestBody: required: true description: Details of the item to add to the project. You can specify either @@ -39810,22 +39692,22 @@ paths: description: Response content: application/json: - schema: *269 + schema: *268 examples: issue_with_id: summary: Response for adding an issue using its unique ID - value: *270 + value: *269 pull_request_with_id: summary: Response for adding a pull request using its unique ID - value: *270 + value: *269 issue_with_nwo: summary: Response for adding an issue using repository owner, name, and issue number - value: *270 + value: *269 pull_request_with_nwo: summary: Response for adding a pull request using repository owner, name, and PR number - value: *270 + value: *269 '304': *37 '403': *29 '401': *25 @@ -39845,9 +39727,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#get-an-item-for-an-organization-owned-project parameters: - - *263 + - *262 - *68 - - &273 + - &272 name: item_id description: The unique identifier of the project item. in: path @@ -39873,9 +39755,9 @@ paths: description: Response content: application/json: - schema: *271 + schema: *270 examples: - default: *272 + default: *271 headers: Link: *59 '304': *37 @@ -39896,9 +39778,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#update-project-item-for-organization parameters: - - *263 + - *262 - *68 - - *273 + - *272 requestBody: required: true description: Field updates to apply to the project item. Only text, number, @@ -39968,13 +39850,13 @@ paths: description: Response content: application/json: - schema: *271 + schema: *270 examples: - text_field: *272 - number_field: *272 - date_field: *272 - single_select_field: *272 - iteration_field: *272 + text_field: *271 + number_field: *271 + date_field: *271 + single_select_field: *271 + iteration_field: *271 '401': *25 '403': *29 '404': *6 @@ -39994,9 +39876,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#delete-project-item-for-organization parameters: - - *263 + - *262 - *68 - - *273 + - *272 responses: '204': description: Response @@ -40019,9 +39901,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#list-items-for-an-organization-project-view parameters: - - *263 + - *262 - *68 - - &707 + - &705 name: view_number description: The number that identifies the project view. in: path @@ -40053,9 +39935,9 @@ paths: application/json: schema: type: array - items: *271 + items: *270 examples: - default: *272 + default: *271 headers: Link: *59 '304': *37 @@ -40088,7 +39970,7 @@ paths: application/json: schema: type: array - items: &274 + items: &273 title: Organization Custom Property description: Custom property defined on an organization type: object @@ -40153,7 +40035,7 @@ paths: - property_name - value_type examples: - default: &275 + default: &274 value: - property_name: environment url: https://api.github.com/orgs/github/properties/schema/environment @@ -40212,7 +40094,7 @@ paths: properties: type: array description: The array of custom properties to create or update. - items: *274 + items: *273 minItems: 1 maxItems: 100 required: @@ -40242,9 +40124,9 @@ paths: application/json: schema: type: array - items: *274 + items: *273 examples: - default: *275 + default: *274 '403': *29 '404': *6 x-github: @@ -40266,7 +40148,7 @@ paths: url: https://docs.github.com/rest/orgs/custom-properties#get-a-custom-property-for-an-organization parameters: - *68 - - &276 + - &275 name: custom_property_name description: The custom property name in: path @@ -40278,9 +40160,9 @@ paths: description: Response content: application/json: - schema: *274 + schema: *273 examples: - default: &277 + default: &276 value: property_name: environment url: https://api.github.com/orgs/github/properties/schema/environment @@ -40315,7 +40197,7 @@ paths: url: https://docs.github.com/rest/orgs/custom-properties#create-or-update-a-custom-property-for-an-organization parameters: - *68 - - *276 + - *275 requestBody: required: true content: @@ -40383,9 +40265,9 @@ paths: description: Response content: application/json: - schema: *274 + schema: *273 examples: - default: *277 + default: *276 '403': *29 '404': *6 x-github: @@ -40409,9 +40291,9 @@ paths: url: https://docs.github.com/rest/orgs/custom-properties#remove-a-custom-property-for-an-organization parameters: - *68 - - *276 + - *275 responses: - '204': *183 + '204': *182 '403': *29 '404': *6 x-github: @@ -40470,7 +40352,25 @@ paths: example: octocat/Hello-World properties: type: array - items: *111 + items: &277 + title: Custom Property Value + description: Custom property name and associated value + type: object + properties: + property_name: + type: string + description: The name of the property + value: + oneOf: + - type: string + - type: array + items: + type: string + description: The value assigned to the property + nullable: true + required: + - property_name + - value description: List of custom property names and associated values required: - repository_id @@ -40539,7 +40439,7 @@ paths: type: array description: List of custom property names and associated values to apply to the repositories. - items: *111 + items: *277 required: - repository_names - properties @@ -40729,9 +40629,9 @@ paths: application/json: schema: type: array - items: *152 + items: *151 examples: - default: *251 + default: *250 headers: Link: *59 x-github: @@ -41952,7 +41852,7 @@ paths: - *68 - *17 - *19 - - &592 + - &590 name: targets description: | A comma-separated list of rule targets to filter by. @@ -42233,7 +42133,7 @@ paths: - repository_property rules: type: array - items: &593 + items: &591 title: Repository Rule type: object description: A repository rule. @@ -42295,7 +42195,7 @@ paths: type: string enum: - required_linear_history - - &591 + - &589 title: merge_queue description: Merges must be performed via a merge queue. type: object @@ -43025,7 +42925,7 @@ paths: created_at: '2023-08-15T08:43:03Z' updated_at: '2023-09-23T16:29:47Z' '404': *6 - '500': *112 + '500': *111 post: summary: Create an organization repository ruleset description: Create a repository ruleset for an organization. @@ -43176,7 +43076,7 @@ paths: created_at: '2023-08-15T08:43:03Z' updated_at: '2023-09-23T16:29:47Z' '404': *6 - '500': *112 + '500': *111 "/orgs/{org}/rulesets/rule-suites": get: summary: List organization rule suites @@ -43191,7 +43091,7 @@ paths: url: https://docs.github.com/rest/orgs/rule-suites#list-organization-rule-suites parameters: - *68 - - &594 + - &592 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 @@ -43206,7 +43106,7 @@ paths: in: query schema: type: string - - &595 + - &593 name: time_period description: |- The time period to filter by. @@ -43222,14 +43122,14 @@ paths: - week - month default: day - - &596 + - &594 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 - - &597 + - &595 name: rule_suite_result description: The rule suite results to filter on. When specified, only suites with this result will be returned. @@ -43249,7 +43149,7 @@ paths: description: Response content: application/json: - schema: &598 + schema: &596 title: Rule Suites description: Response type: array @@ -43304,7 +43204,7 @@ paths: whether rules would pass or fail if all rules in the rule suite were `active`. examples: - default: &599 + default: &597 value: - id: 21 actor_id: 12 @@ -43328,7 +43228,7 @@ paths: result: pass evaluation_result: fail '404': *6 - '500': *112 + '500': *111 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -43348,7 +43248,7 @@ paths: url: https://docs.github.com/rest/orgs/rule-suites#get-an-organization-rule-suite parameters: - *68 - - &600 + - &598 name: rule_suite_id description: |- The unique identifier of the rule suite result. @@ -43364,7 +43264,7 @@ paths: description: Response content: application/json: - schema: &601 + schema: &599 title: Rule Suite description: Response type: object @@ -43463,7 +43363,7 @@ paths: description: The detailed failure message for the rule. Null if the rule passed. examples: - default: &602 + default: &600 value: id: 21 actor_id: 12 @@ -43498,7 +43398,7 @@ paths: result: fail rule_type: commit_message_pattern '404': *6 - '500': *112 + '500': *111 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -43540,7 +43440,7 @@ paths: examples: default: *308 '404': *6 - '500': *112 + '500': *111 put: summary: Update an organization repository ruleset description: Update a ruleset for an organization. @@ -43630,7 +43530,7 @@ paths: examples: default: *308 '404': *6 - '500': *112 + '500': *111 delete: summary: Delete an organization repository ruleset description: Delete a ruleset for an organization. @@ -43657,7 +43557,7 @@ paths: '204': description: Response '404': *6 - '500': *112 + '500': *111 "/orgs/{org}/rulesets/{ruleset_id}/history": get: summary: Get organization ruleset history @@ -43709,7 +43609,7 @@ paths: type: string format: date-time examples: - default: &604 + default: &602 value: - version_id: 3 actor: @@ -43727,7 +43627,7 @@ paths: type: User updated_at: '2024-08-23T16:29:47Z' '404': *6 - '500': *112 + '500': *111 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -43762,7 +43662,7 @@ paths: description: Response content: application/json: - schema: &605 + schema: &603 allOf: - *310 - type: object @@ -43811,7 +43711,7 @@ paths: operator: contains pattern: github '404': *6 - '500': *112 + '500': *111 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -43834,7 +43734,7 @@ paths: url: https://docs.github.com/rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-an-organization parameters: - *68 - - &606 + - &604 name: state in: query description: Set to `open` or `resolved` to only list secret scanning alerts @@ -43845,7 +43745,7 @@ paths: enum: - open - resolved - - &607 + - &605 name: secret_type in: query description: A comma-separated list of secret types to return. All default @@ -43855,7 +43755,7 @@ paths: required: false schema: type: string - - &608 + - &606 name: resolution in: query description: A comma-separated list of resolutions. Only secret scanning alerts @@ -43864,7 +43764,7 @@ paths: required: false schema: type: string - - &609 + - &607 name: assignee in: query description: Filters alerts by assignee. Use `*` to get all assigned alerts, @@ -43883,7 +43783,7 @@ paths: all-unassigned: value: none summary: Filter for all unassigned alerts - - &610 + - &608 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. @@ -43898,7 +43798,7 @@ paths: - *53 - *19 - *17 - - &611 + - &609 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 @@ -43908,7 +43808,7 @@ paths: required: false schema: type: string - - &612 + - &610 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 @@ -43918,7 +43818,7 @@ paths: required: false schema: type: string - - &613 + - &611 name: validity in: query description: A comma-separated list of validities that, when present, will @@ -43927,7 +43827,7 @@ paths: required: false schema: type: string - - &614 + - &612 name: is_publicly_leaked in: query description: A boolean value representing whether or not to filter alerts @@ -43936,7 +43836,7 @@ paths: schema: type: boolean default: false - - &615 + - &613 name: is_multi_repo in: query description: A boolean value representing whether or not to filter alerts @@ -43945,7 +43845,7 @@ paths: schema: type: boolean default: false - - &616 + - &614 name: hide_secret in: query description: A boolean value representing whether or not to hide literal secrets @@ -43964,8 +43864,8 @@ paths: items: type: object properties: - number: *170 - created_at: *171 + number: *169 + created_at: *170 updated_at: type: string description: 'The time that the alert was last updated in ISO @@ -43973,21 +43873,21 @@ paths: format: date-time readOnly: true nullable: true - url: *173 - html_url: *174 + url: *172 + html_url: *173 locations_url: type: string format: uri description: The REST API URL of the code locations for this alert. - state: &617 + state: &615 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: &618 + resolution: &616 type: string description: "**Required when the `state` is `resolved`.** The reason for resolving the alert." @@ -44094,8 +43994,8 @@ paths: pull request. ' - oneOf: &619 - - &621 + oneOf: &617 + - &619 description: Represents a 'commit' secret scanning location type. This location type shows that a secret was detected inside a commit to a repository. @@ -44147,7 +44047,7 @@ paths: - blob_url - commit_sha - commit_url - - &622 + - &620 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. @@ -44202,7 +44102,7 @@ paths: - page_url - commit_sha - commit_url - - &623 + - &621 description: Represents an 'issue_title' secret scanning location type. This location type shows that a secret was detected in the title of an issue. @@ -44216,7 +44116,7 @@ paths: example: https://api.github.com/repos/octocat/Hello-World/issues/1347 required: - issue_title_url - - &624 + - &622 description: Represents an 'issue_body' secret scanning location type. This location type shows that a secret was detected in the body of an issue. @@ -44230,7 +44130,7 @@ paths: example: https://api.github.com/repos/octocat/Hello-World/issues/1347 required: - issue_body_url - - &625 + - &623 description: Represents an 'issue_comment' secret scanning location type. This location type shows that a secret was detected in a comment on an issue. @@ -44244,7 +44144,7 @@ paths: example: https://api.github.com/repos/octocat/Hello-World/issues/comments/1081119451 required: - issue_comment_url - - &626 + - &624 description: Represents a 'discussion_title' secret scanning location type. This location type shows that a secret was detected in the title of a discussion. @@ -44258,7 +44158,7 @@ paths: example: https://github.com/community/community/discussions/39082 required: - discussion_title_url - - &627 + - &625 description: Represents a 'discussion_body' secret scanning location type. This location type shows that a secret was detected in the body of a discussion. @@ -44272,7 +44172,7 @@ paths: example: https://github.com/community/community/discussions/39082#discussion-4566270 required: - discussion_body_url - - &628 + - &626 description: Represents a 'discussion_comment' secret scanning location type. This location type shows that a secret was detected in a comment on a discussion. @@ -44286,7 +44186,7 @@ paths: example: https://github.com/community/community/discussions/39082#discussioncomment-4158232 required: - discussion_comment_url - - &629 + - &627 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. @@ -44300,7 +44200,7 @@ paths: example: https://api.github.com/repos/octocat/Hello-World/pulls/2846 required: - pull_request_title_url - - &630 + - &628 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. @@ -44314,7 +44214,7 @@ paths: example: https://api.github.com/repos/octocat/Hello-World/pulls/2846 required: - pull_request_body_url - - &631 + - &629 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. @@ -44328,7 +44228,7 @@ paths: example: https://api.github.com/repos/octocat/Hello-World/issues/comments/1081119451 required: - pull_request_comment_url - - &632 + - &630 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. @@ -44342,7 +44242,7 @@ paths: example: https://api.github.com/repos/octocat/Hello-World/pulls/2846/reviews/80 required: - pull_request_review_url - - &633 + - &631 description: Represents a 'pull_request_review_comment' secret scanning location type. This location type shows that a secret was detected in a review comment on a pull request. @@ -44547,7 +44447,7 @@ paths: headers: Link: *59 '404': *6 - '503': *113 + '503': *112 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -44840,7 +44740,7 @@ paths: application/json: schema: type: array - items: &637 + items: &635 description: A repository security advisory. type: object properties: @@ -45094,7 +44994,7 @@ paths: type: array description: A list of teams that collaborate on the advisory. nullable: true - items: *189 + items: *188 private_fork: readOnly: true nullable: true @@ -45131,7 +45031,7 @@ paths: - private_fork additionalProperties: false examples: - default: &638 + default: &636 value: - ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -45520,7 +45420,7 @@ paths: type: array items: *314 examples: - default: *244 + default: *243 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -45721,9 +45621,9 @@ paths: type: integer repositories: type: array - items: *152 + items: *151 examples: - default: *164 + default: *163 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -45792,7 +45692,7 @@ paths: url: https://docs.github.com/rest/orgs/orgs#enable-a-selected-repository-for-immutable-releases-in-an-organization parameters: - *68 - - *141 + - *140 responses: '204': description: Response @@ -45815,7 +45715,7 @@ paths: url: https://docs.github.com/rest/orgs/orgs#disable-a-selected-repository-for-immutable-releases-in-an-organization parameters: - *68 - - *141 + - *140 responses: '204': description: Response @@ -46259,7 +46159,7 @@ paths: items: *318 examples: default: *319 - '500': *112 + '500': *111 '403': *29 '404': *6 '422': *320 @@ -46290,9 +46190,9 @@ paths: application/json: schema: type: array - items: *189 + items: *188 examples: - default: *244 + default: *243 headers: Link: *59 '403': *29 @@ -46449,8 +46349,8 @@ paths: description: Groups of organization members that gives permissions on specified repositories. type: object - properties: *242 - required: *243 + properties: *241 + required: *242 nullable: true members_count: type: integer @@ -46946,9 +46846,9 @@ paths: application/json: schema: type: array - items: *224 + items: *223 examples: - default: *225 + default: *224 headers: Link: *59 x-github: @@ -47059,7 +46959,7 @@ paths: - state - url examples: - response-if-user-is-a-team-maintainer: &655 + response-if-user-is-a-team-maintainer: &653 summary: Response if user is a team maintainer value: url: https://api.github.com/teams/1/memberships/octocat @@ -47124,7 +47024,7 @@ paths: application/json: schema: *323 examples: - response-if-users-membership-with-team-is-now-pending: &656 + response-if-users-membership-with-team-is-now-pending: &654 summary: Response if user's membership with team is now pending value: url: https://api.github.com/teams/1/memberships/octocat @@ -47198,9 +47098,9 @@ paths: application/json: schema: type: array - items: *152 + items: *151 examples: - default: *251 + default: *250 headers: Link: *59 x-github: @@ -47238,7 +47138,7 @@ paths: description: Alternative response with repository permissions content: application/json: - schema: &657 + schema: &655 title: Team Repository description: A team's access to a repository. type: object @@ -47893,9 +47793,9 @@ paths: application/json: schema: type: array - items: *189 + items: *188 examples: - response-if-child-teams-exist: &658 + response-if-child-teams-exist: &656 value: - id: 2 node_id: MDQ6VGVhbTI= @@ -50062,7 +49962,7 @@ paths: description: Response content: application/json: - schema: *161 + schema: *160 examples: default: value: @@ -50172,7 +50072,7 @@ paths: description: Empty response content: application/json: - schema: *161 + schema: *160 examples: default: value: @@ -50368,9 +50268,9 @@ paths: enabled: &342 type: boolean description: Whether GitHub Actions is enabled on the repository. - allowed_actions: *137 + allowed_actions: *136 selected_actions_url: *341 - sha_pinning_required: *138 + sha_pinning_required: *137 required: - enabled examples: @@ -50411,8 +50311,8 @@ paths: type: object properties: enabled: *342 - allowed_actions: *137 - sha_pinning_required: *138 + allowed_actions: *136 + sha_pinning_required: *137 required: - enabled examples: @@ -50595,7 +50495,7 @@ paths: description: Response content: application/json: - schema: *139 + schema: *138 examples: default: *347 '404': *6 @@ -50627,7 +50527,7 @@ paths: required: true content: application/json: - schema: *139 + schema: *138 examples: default: summary: Set approval policy to first time contributors @@ -50660,7 +50560,7 @@ paths: application/json: schema: *348 examples: - default: *140 + default: *139 '403': *29 '404': *6 x-github: @@ -50688,7 +50588,7 @@ paths: application/json: schema: *349 examples: - default: *140 + default: *139 responses: '204': description: Empty response for successful settings update @@ -50719,9 +50619,9 @@ paths: description: Response content: application/json: - schema: *142 + schema: *141 examples: - default: *143 + default: *142 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -50749,9 +50649,9 @@ paths: required: false content: application/json: - schema: *142 + schema: *141 examples: - selected_actions: *143 + selected_actions: *142 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -50782,7 +50682,7 @@ paths: application/json: schema: *350 examples: - default: *147 + default: *146 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -50817,7 +50717,7 @@ paths: application/json: schema: *351 examples: - default: *147 + default: *146 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -50863,9 +50763,9 @@ paths: type: integer runners: type: array - items: *154 + items: *153 examples: - default: *155 + default: *154 headers: Link: *59 x-github: @@ -51004,7 +50904,7 @@ paths: description: Response content: application/json: - schema: *156 + schema: *155 examples: default: *355 x-github: @@ -51041,7 +50941,7 @@ paths: description: Response content: application/json: - schema: *156 + schema: *155 examples: default: *356 x-github: @@ -51067,13 +50967,13 @@ paths: parameters: - *324 - *325 - - *153 + - *152 responses: '200': description: Response content: application/json: - schema: *154 + schema: *153 examples: default: *357 x-github: @@ -51098,7 +50998,7 @@ paths: parameters: - *324 - *325 - - *153 + - *152 responses: '204': description: Response @@ -51126,9 +51026,9 @@ paths: parameters: - *324 - *325 - - *153 + - *152 responses: - '200': *158 + '200': *157 '404': *6 x-github: githubCloudOnly: false @@ -51152,7 +51052,7 @@ paths: parameters: - *324 - *325 - - *153 + - *152 requestBody: required: true content: @@ -51176,7 +51076,7 @@ paths: - gpu - accelerated responses: - '200': *158 + '200': *157 '404': *6 '422': *7 x-github: @@ -51202,7 +51102,7 @@ paths: parameters: - *324 - *325 - - *153 + - *152 requestBody: required: true content: @@ -51227,7 +51127,7 @@ paths: - gpu - accelerated responses: - '200': *158 + '200': *157 '404': *6 '422': *7 x-github: @@ -51253,7 +51153,7 @@ paths: parameters: - *324 - *325 - - *153 + - *152 responses: '200': *358 '404': *6 @@ -51284,10 +51184,10 @@ paths: parameters: - *324 - *325 - - *153 + - *152 - *359 responses: - '200': *158 + '200': *157 '404': *6 '422': *7 x-github: @@ -51621,8 +51521,8 @@ paths: - author - committer nullable: true - repository: *152 - head_repository: *152 + repository: *151 + head_repository: *151 head_repository_id: type: integer example: 5 @@ -52308,7 +52208,7 @@ paths: description: Response content: application/json: - schema: *161 + schema: *160 examples: default: value: @@ -52598,7 +52498,7 @@ paths: description: Response content: application/json: - schema: *161 + schema: *160 examples: default: value: @@ -52702,7 +52602,7 @@ paths: description: Response content: application/json: - schema: *161 + schema: *160 examples: default: value: @@ -52824,7 +52724,7 @@ paths: '204': description: Response '403': *29 - '500': *112 + '500': *111 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -52918,7 +52818,7 @@ paths: reviewer: anyOf: - *4 - - *189 + - *188 required: - environment - wait_timer @@ -53227,7 +53127,7 @@ paths: description: Response content: application/json: - schema: *161 + schema: *160 examples: default: value: @@ -53273,7 +53173,7 @@ paths: description: Response content: application/json: - schema: *161 + schema: *160 examples: default: value: @@ -53523,7 +53423,7 @@ paths: parameters: - *324 - *325 - - *160 + - *159 responses: '200': description: Response @@ -53559,7 +53459,7 @@ paths: parameters: - *324 - *325 - - *160 + - *159 requestBody: required: true content: @@ -53590,7 +53490,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *161 + schema: *160 examples: default: value: @@ -53618,7 +53518,7 @@ paths: parameters: - *324 - *325 - - *160 + - *159 responses: '204': description: Response @@ -53715,7 +53615,7 @@ paths: description: Response content: application/json: - schema: *161 + schema: *160 examples: default: value: @@ -53742,7 +53642,7 @@ paths: parameters: - *324 - *325 - - *163 + - *162 responses: '200': description: Response @@ -53778,7 +53678,7 @@ paths: parameters: - *324 - *325 - - *163 + - *162 requestBody: required: true content: @@ -53822,7 +53722,7 @@ paths: parameters: - *324 - *325 - - *163 + - *162 responses: '204': description: Response @@ -55095,7 +54995,7 @@ paths: description: The list of teams with review dismissal access. type: array - items: *189 + items: *188 apps: description: The list of apps with review dismissal access. @@ -55124,7 +55024,7 @@ paths: description: The list of teams allowed to bypass pull request requirements. type: array - items: *189 + items: *188 apps: description: The list of apps allowed to bypass pull request requirements. @@ -55213,7 +55113,7 @@ paths: type: string teams: type: array - items: *189 + items: *188 apps: type: array items: @@ -55555,12 +55455,12 @@ paths: nullable: true oneOf: - *4 - - *161 + - *160 committer: nullable: true oneOf: - *4 - - *161 + - *160 parents: type: array items: @@ -56339,7 +56239,7 @@ paths: items: *4 teams: type: array - items: *189 + items: *188 apps: type: array items: *5 @@ -56357,7 +56257,7 @@ paths: items: *4 teams: type: array - items: *189 + items: *188 apps: type: array items: *5 @@ -57744,9 +57644,9 @@ paths: application/json: schema: type: array - items: *189 + items: *188 examples: - default: *244 + default: *243 '404': *6 x-github: githubCloudOnly: false @@ -57804,9 +57704,9 @@ paths: application/json: schema: type: array - items: *189 + items: *188 examples: - default: *244 + default: *243 '422': *15 x-github: githubCloudOnly: false @@ -57865,9 +57765,9 @@ paths: application/json: schema: type: array - items: *189 + items: *188 examples: - default: *244 + default: *243 '422': *15 x-github: githubCloudOnly: false @@ -57925,9 +57825,9 @@ paths: application/json: schema: type: array - items: *189 + items: *188 examples: - default: *244 + default: *243 '422': *15 x-github: githubCloudOnly: false @@ -58707,7 +58607,7 @@ paths: check. type: array items: *80 - deployment: &720 + deployment: &718 title: Deployment description: A deployment created as the result of an Actions check run from a workflow that references an environment @@ -59472,7 +59372,7 @@ paths: description: Response content: application/json: - schema: *161 + schema: *160 examples: default: value: @@ -59610,7 +59510,7 @@ paths: nullable: true properties: *72 required: *73 - repository: *152 + repository: *151 created_at: type: string format: date-time @@ -59619,7 +59519,7 @@ paths: type: string format: date-time nullable: true - head_commit: &746 + head_commit: &744 title: Simple Commit description: A commit. type: object @@ -60026,7 +59926,7 @@ paths: required: - app_id - setting - repository: *152 + repository: *151 examples: default: value: @@ -60474,7 +60374,7 @@ paths: description: Response content: application/json: - schema: *161 + schema: *160 examples: default: value: @@ -60565,14 +60465,14 @@ paths: items: type: object properties: - number: *170 - created_at: *171 - updated_at: *172 - url: *173 - html_url: *174 + number: *169 + created_at: *170 + updated_at: *171 + url: *172 + html_url: *173 instances_url: *415 - state: *179 - fixed_at: *175 + state: *178 + fixed_at: *174 dismissed_by: title: Simple User description: A GitHub user. @@ -60580,7 +60480,7 @@ paths: properties: *20 required: *21 nullable: true - dismissed_at: *176 + dismissed_at: *175 dismissed_reason: *416 dismissed_comment: *417 rule: *418 @@ -60718,7 +60618,7 @@ paths: application/json: schema: *3 '404': *6 - '503': *113 + '503': *112 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -60748,7 +60648,7 @@ paths: field in the response from the `GET /repos/{owner}/{repo}/code-scanning/alerts` operation. required: true - schema: *170 + schema: *169 responses: '200': description: Response @@ -60757,14 +60657,14 @@ paths: schema: &423 type: object properties: - number: *170 - created_at: *171 - updated_at: *172 - url: *173 - html_url: *174 + number: *169 + created_at: *170 + updated_at: *171 + url: *172 + html_url: *173 instances_url: *415 - state: *179 - fixed_at: *175 + state: *178 + fixed_at: *174 dismissed_by: title: Simple User description: A GitHub user. @@ -60772,7 +60672,7 @@ paths: properties: *20 required: *21 nullable: true - dismissed_at: *176 + dismissed_at: *175 dismissed_reason: *416 dismissed_comment: *417 rule: @@ -60930,7 +60830,7 @@ paths: '304': *37 '403': *421 '404': *6 - '503': *113 + '503': *112 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -61077,7 +60977,7 @@ paths: application/json: schema: *3 '404': *6 - '503': *113 + '503': *112 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -61150,7 +61050,7 @@ paths: status: '400' '403': *421 '404': *6 - '503': *113 + '503': *112 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -61205,7 +61105,7 @@ paths: '404': *6 '422': description: Unprocessable Entity - '503': *113 + '503': *112 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -61279,7 +61179,7 @@ paths: '404': *6 '422': description: Unprocessable Entity - '503': *113 + '503': *112 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -61383,7 +61283,7 @@ paths: - source '403': *421 '404': *6 - '503': *113 + '503': *112 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -61558,7 +61458,7 @@ paths: warning: '' '403': *421 '404': *6 - '503': *113 + '503': *112 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -61667,7 +61567,7 @@ paths: content: application/json: schema: *3 - '503': *113 + '503': *112 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -61803,7 +61703,7 @@ paths: '400': *14 '403': *427 '404': *6 - '503': *113 + '503': *112 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -61945,7 +61845,7 @@ paths: commit_oid: 1927de39fefa25a9d0e64e3f540ff824a72f538c '403': *421 '404': *6 - '503': *113 + '503': *112 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -62021,7 +61921,7 @@ paths: description: Found '403': *421 '404': *6 - '503': *113 + '503': *112 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -62054,7 +61954,7 @@ paths: description: Response '403': *427 '404': *6 - '503': *113 + '503': *112 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -62504,7 +62404,7 @@ paths: content: application/json: schema: *3 - '503': *113 + '503': *112 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -62542,7 +62442,7 @@ paths: examples: default: *441 '404': *6 - '503': *113 + '503': *112 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -62702,7 +62602,7 @@ paths: source_location_prefix: "/" artifact_url: https://example.com '404': *6 - '503': *113 + '503': *112 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -62811,7 +62711,7 @@ paths: schedule: weekly '403': *421 '404': *6 - '503': *113 + '503': *112 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -62898,7 +62798,7 @@ paths: description: Response content: application/json: - schema: *161 + schema: *160 examples: default: value: @@ -62937,7 +62837,7 @@ paths: content: application/json: schema: *3 - '503': *113 + '503': *112 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -63079,7 +62979,7 @@ paths: '404': *6 '413': description: Payload Too Large if the sarif field is too large - '503': *113 + '503': *112 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -63148,7 +63048,7 @@ paths: '403': *421 '404': description: Not Found if the sarif id does not match any upload - '503': *113 + '503': *112 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -63227,7 +63127,7 @@ paths: html_url: https://github.com/organizations/octo-org/settings/security_products/configurations/edit/1325 created_at: '2024-05-01T00:00:00Z' updated_at: '2024-05-01T00:00:00Z' - '204': *183 + '204': *182 '304': *37 '403': *29 '404': *6 @@ -63390,7 +63290,7 @@ paths: type: integer codespaces: type: array - items: *232 + items: *231 examples: default: value: @@ -63666,7 +63566,7 @@ paths: start_url: https://api.github.com/user/codespaces/monalisa-octocat-hello-world-3f89ada1j3/start stop_url: https://api.github.com/user/codespaces/monalisa-octocat-hello-world-3f89ada1j3/stop recent_folders: [] - '500': *112 + '500': *111 '401': *25 '403': *29 '404': *6 @@ -63752,7 +63652,7 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *232 + schema: *231 examples: default: *445 '202': @@ -63760,14 +63660,14 @@ paths: being retried in the background content: application/json: - schema: *232 + schema: *231 examples: default: *445 '400': *14 '401': *25 '403': *29 '404': *6 - '503': *113 + '503': *112 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -63832,7 +63732,7 @@ paths: - path: ".devcontainer.json" display_name: Default project configuration total_count: 3 - '500': *112 + '500': *111 '400': *14 '401': *25 '403': *29 @@ -63892,14 +63792,14 @@ paths: type: integer machines: type: array - items: &665 + items: &663 type: object title: Codespace machine description: A description of the machine powering a codespace. properties: *446 required: *447 examples: - default: &666 + default: &664 value: total_count: 2 machines: @@ -63916,7 +63816,7 @@ paths: memory_in_bytes: 34359738368 cpus: 8 '304': *37 - '500': *112 + '500': *111 '401': *25 '403': *29 '404': *6 @@ -64070,7 +63970,7 @@ paths: '403': *29 '404': *6 '422': *15 - '503': *113 + '503': *112 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -64184,7 +64084,7 @@ paths: parameters: - *324 - *325 - - *160 + - *159 responses: '200': description: Response @@ -64214,7 +64114,7 @@ paths: parameters: - *324 - *325 - - *160 + - *159 requestBody: required: true content: @@ -64242,7 +64142,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *161 + schema: *160 examples: default: value: @@ -64268,7 +64168,7 @@ paths: parameters: - *324 - *325 - - *160 + - *159 responses: '204': description: Response @@ -64593,7 +64493,7 @@ paths: example: 42 type: integer format: int64 - repository: *152 + repository: *151 invitee: title: Simple User description: A GitHub user. @@ -64771,7 +64671,7 @@ paths: - an Enterprise Managed User (EMU) account was invited to a repository in an enterprise with personal user accounts content: application/json: - schema: *121 + schema: *120 '403': *29 x-github: triggersNotification: true @@ -65537,7 +65437,7 @@ paths: type: array items: *458 examples: - default: &577 + default: &575 value: - url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -65608,7 +65508,7 @@ paths: sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e headers: Link: *59 - '500': *112 + '500': *111 '400': *14 '404': *6 '409': *52 @@ -65828,7 +65728,7 @@ paths: type: array items: *462 examples: - default: &569 + default: &567 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -66472,8 +66372,8 @@ paths: ..... '422': *15 '404': *6 - '500': *112 - '503': *113 + '500': *111 + '503': *112 '409': *52 x-github: githubCloudOnly: false @@ -66861,7 +66761,7 @@ paths: type: string total_count: type: integer - repository: *152 + repository: *151 commit_url: type: string format: uri @@ -67004,7 +66904,7 @@ paths: application/json: schema: type: array - items: &642 + items: &640 title: Status description: The status of a commit. type: object @@ -67627,8 +67527,8 @@ paths: patch: "@@ -132,7 +132,7 @@ module Test @@ -1000,7 +1000,7 @@ module Test" '404': *6 - '500': *112 - '503': *113 + '500': *111 + '503': *112 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -67946,7 +67846,7 @@ paths: - size - type - url - - &582 + - &580 title: Content File description: Content File type: object @@ -68560,7 +68460,7 @@ paths: items: type: object properties: - placeholder_id: &634 + placeholder_id: &632 description: The ID of the push protection bypass placeholder. This value is returned on any push protected routes. @@ -68689,7 +68589,7 @@ paths: '422': *15 '404': *6 '409': *52 - '503': *113 + '503': *112 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -68835,20 +68735,20 @@ paths: parameters: - *324 - *325 + - *189 - *190 - *191 - *192 - - *193 - name: manifest in: query description: A comma-separated list of full manifest paths. If specified, only alerts for these manifests will be returned. schema: type: string - - *194 + - *193 - *475 + - *194 - *195 - - *196 - *53 - name: per_page description: The number of results per page (max 100). For more information, @@ -68871,7 +68771,7 @@ paths: type: object description: A Dependabot alert. properties: - number: *170 + number: *169 state: type: string description: The state of the Dependabot alert. @@ -68915,11 +68815,11 @@ paths: - transitive security_advisory: *476 security_vulnerability: *57 - url: *173 - html_url: *174 - created_at: *171 - updated_at: *172 - dismissed_at: *176 + url: *172 + html_url: *173 + created_at: *170 + updated_at: *171 + dismissed_at: *175 dismissed_by: title: Simple User description: A GitHub user. @@ -68943,7 +68843,7 @@ paths: dismissal. nullable: true maxLength: 280 - fixed_at: *175 + fixed_at: *174 auto_dismissed_at: *477 dismissal_request: *478 required: @@ -69186,7 +69086,7 @@ paths: or in `number` fields in the response from the `GET /repos/{owner}/{repo}/dependabot/alerts` operation. required: true - schema: *170 + schema: *169 responses: '200': description: Response @@ -69584,7 +69484,7 @@ paths: parameters: - *324 - *325 - - *160 + - *159 responses: '200': description: Response @@ -69618,7 +69518,7 @@ paths: parameters: - *324 - *325 - - *160 + - *159 requestBody: required: true content: @@ -69646,7 +69546,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *161 + schema: *160 examples: default: value: @@ -69672,7 +69572,7 @@ paths: parameters: - *324 - *325 - - *160 + - *159 responses: '204': description: Response @@ -71230,7 +71130,7 @@ paths: reviewer: anyOf: - *4 - - *189 + - *188 required: - id - node_id @@ -72260,7 +72160,7 @@ paths: - *324 - *325 - *492 - - *160 + - *159 responses: '200': description: Response @@ -72293,7 +72193,7 @@ paths: - *324 - *325 - *492 - - *160 + - *159 requestBody: required: true content: @@ -72324,7 +72224,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *161 + schema: *160 examples: default: value: @@ -72353,7 +72253,7 @@ paths: - *324 - *325 - *492 - - *160 + - *159 responses: '204': description: Default response @@ -72452,7 +72352,7 @@ paths: description: Response content: application/json: - schema: *161 + schema: *160 examples: default: value: @@ -72480,7 +72380,7 @@ paths: - *324 - *325 - *492 - - *163 + - *162 responses: '200': description: Response @@ -72511,7 +72411,7 @@ paths: parameters: - *324 - *325 - - *163 + - *162 - *492 requestBody: required: true @@ -72556,7 +72456,7 @@ paths: parameters: - *324 - *325 - - *163 + - *162 - *492 responses: '204': @@ -72671,7 +72571,7 @@ paths: application/json: schema: type: array - items: *152 + items: *151 examples: default: value: @@ -72924,7 +72824,7 @@ paths: application/json: schema: oneOf: - - *121 + - *120 - *505 x-github: githubCloudOnly: false @@ -74295,7 +74195,7 @@ paths: type: string format: uri example: https://api.github.com/repos/octocat/Hello-World/hooks/1/deliveries - last_response: &754 + last_response: &752 title: Hook Response type: object properties: @@ -74474,7 +74374,7 @@ paths: parameters: - *324 - *325 - - *204 + - *203 responses: '200': description: Response @@ -74504,7 +74404,7 @@ paths: parameters: - *324 - *325 - - *204 + - *203 requestBody: required: true content: @@ -74574,7 +74474,7 @@ paths: parameters: - *324 - *325 - - *204 + - *203 responses: '204': description: Response @@ -74600,7 +74500,7 @@ paths: parameters: - *324 - *325 - - *204 + - *203 responses: '200': description: Response @@ -74629,7 +74529,7 @@ paths: parameters: - *324 - *325 - - *204 + - *203 requestBody: required: false content: @@ -74675,9 +74575,9 @@ paths: parameters: - *324 - *325 - - *204 + - *203 - *17 - - *205 + - *204 responses: '200': description: Response @@ -74685,9 +74585,9 @@ paths: application/json: schema: type: array - items: *206 + items: *205 examples: - default: *207 + default: *206 '400': *14 '422': *15 x-github: @@ -74708,16 +74608,16 @@ paths: parameters: - *324 - *325 - - *204 + - *203 - *16 responses: '200': description: Response content: application/json: - schema: *208 + schema: *207 examples: - default: *209 + default: *208 '400': *14 '422': *15 x-github: @@ -74738,7 +74638,7 @@ paths: parameters: - *324 - *325 - - *204 + - *203 - *16 responses: '202': *39 @@ -74763,7 +74663,7 @@ paths: parameters: - *324 - *325 - - *204 + - *203 responses: '204': description: Response @@ -74790,7 +74690,7 @@ paths: parameters: - *324 - *325 - - *204 + - *203 responses: '204': description: Response @@ -74863,7 +74763,7 @@ paths: - *324 - *325 responses: - '204': *183 + '204': *182 '409': *52 x-github: githubCloudOnly: false @@ -74884,7 +74784,7 @@ paths: - *324 - *325 responses: - '204': *183 + '204': *182 '409': *52 x-github: githubCloudOnly: false @@ -75346,7 +75246,7 @@ paths: parameters: - *324 - *325 - - &687 + - &685 name: since description: A user ID. Only return users with an ID greater than this ID. in: query @@ -75671,7 +75571,7 @@ paths: application/json: schema: anyOf: - - *222 + - *221 - type: object properties: {} additionalProperties: false @@ -75719,7 +75619,7 @@ paths: description: Response content: application/json: - schema: *222 + schema: *221 examples: default: *522 '409': @@ -75780,7 +75680,7 @@ paths: type: array items: *523 examples: - default: &680 + default: &678 value: - id: 1 repository: @@ -75913,7 +75813,7 @@ paths: parameters: - *324 - *325 - - *226 + - *225 requestBody: required: false content: @@ -76075,7 +75975,7 @@ paths: parameters: - *324 - *325 - - *226 + - *225 responses: '204': description: Response @@ -76155,7 +76055,7 @@ paths: required: false schema: type: string - - *230 + - *229 - name: sort description: What to sort results by. in: query @@ -76596,7 +76496,7 @@ paths: '400': *14 '403': *29 '422': *15 - '503': *113 + '503': *112 '404': *6 '410': *524 x-github: @@ -77076,7 +76976,7 @@ paths: properties: *20 required: *21 nullable: true - requested_team: *189 + requested_team: *188 dismissed_review: title: Issue Event Dismissed Review type: object @@ -77731,7 +77631,7 @@ paths: examples: default: *532 '422': *15 - '503': *113 + '503': *112 '403': *29 '301': *328 '404': *6 @@ -78593,7 +78493,7 @@ paths: properties: *72 required: *73 review_requester: *4 - requested_team: *189 + requested_team: *188 requested_reviewer: *4 required: - review_requester @@ -78640,7 +78540,7 @@ paths: properties: *72 required: *73 review_requester: *4 - requested_team: *189 + requested_team: *188 requested_reviewer: *4 required: - review_requester @@ -79821,7 +79721,7 @@ paths: '403': *29 '404': *6 '422': *7 - '503': *113 + '503': *112 x-github: triggersNotification: true githubCloudOnly: false @@ -80177,7 +80077,7 @@ paths: type: string comments: type: array - items: &571 + items: &569 title: Pull Request Review Comment description: Pull Request Review Comments are comments on a portion of the Pull Request's diff. @@ -81494,8 +81394,8 @@ paths: title: Milestone description: A collection of related issues and pull requests. type: object - properties: *264 - required: *265 + properties: *263 + required: *264 examples: default: value: @@ -82692,7 +82592,7 @@ paths: - *325 - *566 responses: - '204': *183 + '204': *182 '404': *6 x-github: githubCloudOnly: false @@ -82949,7 +82849,7 @@ paths: description: Empty response content: application/json: - schema: *161 + schema: *160 examples: default: value: @@ -83017,7 +82917,7 @@ paths: - *324 - *325 responses: - '204': *183 + '204': *182 '422': *14 x-github: githubCloudOnly: false @@ -83039,7 +82939,7 @@ paths: - *324 - *325 responses: - '204': *183 + '204': *182 '422': *14 x-github: githubCloudOnly: false @@ -83068,9 +82968,16 @@ paths: application/json: schema: type: array - items: *111 + items: *277 examples: - default: *567 + default: + value: + - property_name: environment + value: production + - property_name: service + value: web + - property_name: team + value: octocat '403': *29 '404': *6 x-github: @@ -83105,11 +83012,19 @@ paths: type: array description: A list of custom property names and associated values to apply to the repositories. - items: *111 + items: *277 required: - properties examples: - default: *568 + default: + value: + properties: + - property_name: environment + value: production + - property_name: service + value: web + - property_name: team + value: octocat responses: '204': description: No Content when custom property values are successfully created @@ -83210,7 +83125,7 @@ paths: type: array items: *462 examples: - default: *569 + default: *567 headers: Link: *59 '304': *37 @@ -83308,7 +83223,7 @@ paths: description: Response content: application/json: - schema: &573 + schema: &571 type: object title: Pull Request description: Pull requests let you tell others about changes you've @@ -83419,8 +83334,8 @@ paths: title: Milestone description: A collection of related issues and pull requests. type: object - properties: *264 - required: *265 + properties: *263 + required: *264 nullable: true active_lock_reason: type: string @@ -83504,14 +83419,14 @@ paths: _links: type: object properties: - comments: *266 - commits: *266 - statuses: *266 - html: *266 - issue: *266 - review_comments: *266 - review_comment: *266 - self: *266 + comments: *265 + commits: *265 + statuses: *265 + html: *265 + issue: *265 + review_comments: *265 + review_comment: *265 + self: *265 required: - comments - commits @@ -83522,7 +83437,7 @@ paths: - review_comment - self author_association: *76 - auto_merge: *570 + auto_merge: *568 draft: description: Indicates whether or not the pull request is a draft. example: false @@ -83614,7 +83529,7 @@ paths: - merged_by - review_comments examples: - default: &574 + default: &572 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -84171,9 +84086,9 @@ paths: application/json: schema: type: array - items: *571 + items: *569 examples: - default: &576 + default: &574 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -84258,9 +84173,9 @@ paths: description: Response content: application/json: - schema: *571 + schema: *569 examples: - default: &572 + default: &570 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -84359,9 +84274,9 @@ paths: description: Response content: application/json: - schema: *571 + schema: *569 examples: - default: *572 + default: *570 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -84564,7 +84479,7 @@ paths: parameters: - *324 - *325 - - &575 + - &573 name: pull_number description: The number that identifies the pull request. in: path @@ -84577,9 +84492,9 @@ paths: to fetch diff and patch formats. content: application/json: - schema: *573 + schema: *571 examples: - default: *574 + default: *572 '304': *37 '404': *6 '406': @@ -84587,8 +84502,8 @@ paths: content: application/json: schema: *3 - '500': *112 - '503': *113 + '500': *111 + '503': *112 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -84616,7 +84531,7 @@ paths: parameters: - *324 - *325 - - *575 + - *573 requestBody: required: false content: @@ -84658,9 +84573,9 @@ paths: description: Response content: application/json: - schema: *573 + schema: *571 examples: - default: *574 + default: *572 '422': *15 '403': *29 x-github: @@ -84684,7 +84599,7 @@ paths: parameters: - *324 - *325 - - *575 + - *573 requestBody: required: true content: @@ -84744,7 +84659,7 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *232 + schema: *231 examples: default: *445 '202': @@ -84752,13 +84667,13 @@ paths: being retried in the background content: application/json: - schema: *232 + schema: *231 examples: default: *445 '401': *25 '403': *29 '404': *6 - '503': *113 + '503': *112 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -84786,7 +84701,7 @@ paths: parameters: - *324 - *325 - - *575 + - *573 - *99 - name: direction description: The direction to sort results. Ignored without `sort` parameter. @@ -84807,9 +84722,9 @@ paths: application/json: schema: type: array - items: *571 + items: *569 examples: - default: *576 + default: *574 headers: Link: *59 x-github: @@ -84844,7 +84759,7 @@ paths: parameters: - *324 - *325 - - *575 + - *573 requestBody: required: true content: @@ -84949,7 +84864,7 @@ paths: description: Response content: application/json: - schema: *571 + schema: *569 examples: example-for-a-multi-line-comment: value: @@ -85039,7 +84954,7 @@ paths: parameters: - *324 - *325 - - *575 + - *573 - *91 requestBody: required: true @@ -85062,7 +84977,7 @@ paths: description: Response content: application/json: - schema: *571 + schema: *569 examples: default: value: @@ -85150,7 +85065,7 @@ paths: parameters: - *324 - *325 - - *575 + - *573 - *17 - *19 responses: @@ -85162,7 +85077,7 @@ paths: type: array items: *458 examples: - default: *577 + default: *575 headers: Link: *59 x-github: @@ -85194,7 +85109,7 @@ paths: parameters: - *324 - *325 - - *575 + - *573 - *17 - *19 responses: @@ -85222,8 +85137,8 @@ paths: headers: Link: *59 '422': *15 - '500': *112 - '503': *113 + '500': *111 + '503': *112 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -85244,7 +85159,7 @@ paths: parameters: - *324 - *325 - - *575 + - *573 responses: '204': description: Response if pull request has been merged @@ -85269,7 +85184,7 @@ paths: parameters: - *324 - *325 - - *575 + - *573 requestBody: required: false content: @@ -85382,7 +85297,7 @@ paths: parameters: - *324 - *325 - - *575 + - *573 responses: '200': description: Response @@ -85398,7 +85313,7 @@ paths: items: *4 teams: type: array - items: *189 + items: *188 required: - users - teams @@ -85459,7 +85374,7 @@ paths: parameters: - *324 - *325 - - *575 + - *573 requestBody: required: false content: @@ -86034,7 +85949,7 @@ paths: parameters: - *324 - *325 - - *575 + - *573 requestBody: required: true content: @@ -86575,7 +86490,7 @@ paths: parameters: - *324 - *325 - - *575 + - *573 - *17 - *19 responses: @@ -86585,7 +86500,7 @@ paths: application/json: schema: type: array - items: &578 + items: &576 title: Pull Request Review description: Pull Request Reviews are reviews on pull requests. type: object @@ -86738,7 +86653,7 @@ paths: parameters: - *324 - *325 - - *575 + - *573 requestBody: required: false content: @@ -86824,9 +86739,9 @@ paths: description: Response content: application/json: - schema: *578 + schema: *576 examples: - default: &580 + default: &578 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -86891,8 +86806,8 @@ paths: parameters: - *324 - *325 - - *575 - - &579 + - *573 + - &577 name: review_id description: The unique identifier of the review. in: path @@ -86904,9 +86819,9 @@ paths: description: Response content: application/json: - schema: *578 + schema: *576 examples: - default: &581 + default: &579 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -86967,8 +86882,8 @@ paths: parameters: - *324 - *325 - - *575 - - *579 + - *573 + - *577 requestBody: required: true content: @@ -86991,7 +86906,7 @@ paths: description: Response content: application/json: - schema: *578 + schema: *576 examples: default: value: @@ -87055,16 +86970,16 @@ paths: parameters: - *324 - *325 - - *575 - - *579 + - *573 + - *577 responses: '200': description: Response content: application/json: - schema: *578 + schema: *576 examples: - default: *580 + default: *578 '422': *7 '404': *6 x-github: @@ -87093,8 +87008,8 @@ paths: parameters: - *324 - *325 - - *575 - - *579 + - *573 + - *577 - *17 - *19 responses: @@ -87177,9 +87092,9 @@ paths: _links: type: object properties: - self: *266 - html: *266 - pull_request: *266 + self: *265 + html: *265 + pull_request: *265 required: - self - html @@ -87331,8 +87246,8 @@ paths: parameters: - *324 - *325 - - *575 - - *579 + - *573 + - *577 requestBody: required: true content: @@ -87360,7 +87275,7 @@ paths: description: Response content: application/json: - schema: *578 + schema: *576 examples: default: value: @@ -87425,8 +87340,8 @@ paths: parameters: - *324 - *325 - - *575 - - *579 + - *573 + - *577 requestBody: required: true content: @@ -87461,9 +87376,9 @@ paths: description: Response content: application/json: - schema: *578 + schema: *576 examples: - default: *581 + default: *579 '404': *6 '422': *7 '403': *29 @@ -87487,7 +87402,7 @@ paths: parameters: - *324 - *325 - - *575 + - *573 requestBody: required: false content: @@ -87564,9 +87479,9 @@ paths: description: Response content: application/json: - schema: *582 + schema: *580 examples: - default: &583 + default: &581 value: type: file encoding: base64 @@ -87629,9 +87544,9 @@ paths: description: Response content: application/json: - schema: *582 + schema: *580 examples: - default: *583 + default: *581 '404': *6 '422': *15 x-github: @@ -87664,7 +87579,7 @@ paths: application/json: schema: type: array - items: *584 + items: *582 examples: default: value: @@ -87835,9 +87750,9 @@ paths: description: Response content: application/json: - schema: *584 + schema: *582 examples: - default: &588 + default: &586 value: url: https://api.github.com/repos/octocat/Hello-World/releases/1 html_url: https://github.com/octocat/Hello-World/releases/v1.0.0 @@ -87944,7 +87859,7 @@ paths: parameters: - *324 - *325 - - &586 + - &584 name: asset_id description: The unique identifier of the asset. in: path @@ -87956,9 +87871,9 @@ paths: description: Response content: application/json: - schema: *585 + schema: *583 examples: - default: &587 + default: &585 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 @@ -88011,7 +87926,7 @@ paths: parameters: - *324 - *325 - - *586 + - *584 requestBody: required: false content: @@ -88039,9 +87954,9 @@ paths: description: Response content: application/json: - schema: *585 + schema: *583 examples: - default: *587 + default: *585 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -88059,7 +87974,7 @@ paths: parameters: - *324 - *325 - - *586 + - *584 responses: '204': description: Response @@ -88176,9 +88091,9 @@ paths: description: Response content: application/json: - schema: *584 + schema: *582 examples: - default: *588 + default: *586 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -88209,9 +88124,9 @@ paths: description: Response content: application/json: - schema: *584 + schema: *582 examples: - default: *588 + default: *586 '404': *6 x-github: githubCloudOnly: false @@ -88235,7 +88150,7 @@ paths: parameters: - *324 - *325 - - &589 + - &587 name: release_id description: The unique identifier of the release. in: path @@ -88249,9 +88164,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: *584 + schema: *582 examples: - default: *588 + default: *586 '401': description: Unauthorized x-github: @@ -88271,7 +88186,7 @@ paths: parameters: - *324 - *325 - - *589 + - *587 requestBody: required: false content: @@ -88335,9 +88250,9 @@ paths: description: Response content: application/json: - schema: *584 + schema: *582 examples: - default: *588 + default: *586 '404': description: Not Found if the discussion category name is invalid content: @@ -88360,7 +88275,7 @@ paths: parameters: - *324 - *325 - - *589 + - *587 responses: '204': description: Response @@ -88382,7 +88297,7 @@ paths: parameters: - *324 - *325 - - *589 + - *587 - *17 - *19 responses: @@ -88392,7 +88307,7 @@ paths: application/json: schema: type: array - items: *585 + items: *583 examples: default: value: @@ -88475,7 +88390,7 @@ paths: parameters: - *324 - *325 - - *589 + - *587 - name: name in: query required: true @@ -88501,7 +88416,7 @@ paths: description: Response for successful upload content: application/json: - schema: *585 + schema: *583 examples: response-for-successful-upload: value: @@ -88558,7 +88473,7 @@ paths: parameters: - *324 - *325 - - *589 + - *587 - 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. @@ -88607,7 +88522,7 @@ paths: parameters: - *324 - *325 - - *589 + - *587 requestBody: required: true content: @@ -88670,7 +88585,7 @@ paths: parameters: - *324 - *325 - - *589 + - *587 - *528 responses: '204': @@ -88714,7 +88629,7 @@ paths: oneOf: - allOf: - *286 - - &590 + - &588 title: repository ruleset data for rule description: User-defined metadata to store domain-specific information limited to 8 keys with scalar values. @@ -88735,67 +88650,67 @@ paths: description: The ID of the ruleset that includes this rule. - allOf: - *287 - - *590 + - *588 - allOf: - *288 - - *590 + - *588 - allOf: - *289 - - *590 + - *588 - allOf: - - *591 - - *590 + - *589 + - *588 - allOf: - *290 - - *590 + - *588 - allOf: - *291 - - *590 + - *588 - allOf: - *292 - - *590 + - *588 - allOf: - *293 - - *590 + - *588 - allOf: - *294 - - *590 + - *588 - allOf: - *295 - - *590 + - *588 - allOf: - *296 - - *590 + - *588 - allOf: - *297 - - *590 + - *588 - allOf: - *298 - - *590 + - *588 - allOf: - *299 - - *590 + - *588 - allOf: - *300 - - *590 + - *588 - allOf: - *301 - - *590 + - *588 - allOf: - *302 - - *590 + - *588 - allOf: - *303 - - *590 + - *588 - allOf: - *304 - - *590 + - *588 - allOf: - *305 - - *590 + - *588 - allOf: - *306 - - *590 + - *588 examples: default: value: @@ -88846,7 +88761,7 @@ paths: schema: type: boolean default: true - - *592 + - *590 responses: '200': description: Response @@ -88885,7 +88800,7 @@ paths: created_at: '2023-08-15T08:43:03Z' updated_at: '2023-09-23T16:29:47Z' '404': *6 - '500': *112 + '500': *111 post: summary: Create a repository ruleset description: Create a ruleset for a repository. @@ -88931,7 +88846,7 @@ paths: rules: type: array description: An array of rules within the ruleset. - items: *593 + items: *591 required: - name - enforcement @@ -88964,7 +88879,7 @@ paths: application/json: schema: *307 examples: - default: &603 + default: &601 value: id: 42 name: super cool ruleset @@ -88997,7 +88912,7 @@ paths: created_at: '2023-07-15T08:43:03Z' updated_at: '2023-08-23T16:29:47Z' '404': *6 - '500': *112 + '500': *111 "/repos/{owner}/{repo}/rulesets/rule-suites": get: summary: List repository rule suites @@ -89013,10 +88928,10 @@ paths: parameters: - *324 - *325 + - *592 + - *593 - *594 - *595 - - *596 - - *597 - *17 - *19 responses: @@ -89024,11 +88939,11 @@ paths: description: Response content: application/json: - schema: *598 + schema: *596 examples: - default: *599 + default: *597 '404': *6 - '500': *112 + '500': *111 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -89049,17 +88964,17 @@ paths: parameters: - *324 - *325 - - *600 + - *598 responses: '200': description: Response content: application/json: - schema: *601 + schema: *599 examples: - default: *602 + default: *600 '404': *6 - '500': *112 + '500': *111 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -89108,9 +89023,9 @@ paths: application/json: schema: *307 examples: - default: *603 + default: *601 '404': *6 - '500': *112 + '500': *111 put: summary: Update a repository ruleset description: Update a ruleset for a repository. @@ -89161,7 +89076,7 @@ paths: rules: description: An array of rules within the ruleset. type: array - items: *593 + items: *591 examples: default: value: @@ -89191,9 +89106,9 @@ paths: application/json: schema: *307 examples: - default: *603 + default: *601 '404': *6 - '500': *112 + '500': *111 delete: summary: Delete a repository ruleset description: Delete a ruleset for a repository. @@ -89221,7 +89136,7 @@ paths: '204': description: Response '404': *6 - '500': *112 + '500': *111 "/repos/{owner}/{repo}/rulesets/{ruleset_id}/history": get: summary: Get repository ruleset history @@ -89252,9 +89167,9 @@ paths: type: array items: *310 examples: - default: *604 + default: *602 '404': *6 - '500': *112 + '500': *111 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -89290,7 +89205,7 @@ paths: description: Response content: application/json: - schema: *605 + schema: *603 examples: default: value: @@ -89323,7 +89238,7 @@ paths: operator: contains pattern: github '404': *6 - '500': *112 + '500': *111 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -89347,20 +89262,20 @@ paths: parameters: - *324 - *325 + - *604 + - *605 - *606 - *607 - *608 - - *609 - - *610 - *53 - *19 - *17 + - *609 + - *610 - *611 - *612 - *613 - *614 - - *615 - - *616 responses: '200': description: Response @@ -89368,11 +89283,11 @@ paths: application/json: schema: type: array - items: &620 + items: &618 type: object properties: - number: *170 - created_at: *171 + number: *169 + created_at: *170 updated_at: type: string description: 'The time that the alert was last updated in ISO @@ -89380,15 +89295,15 @@ paths: format: date-time readOnly: true nullable: true - url: *173 - html_url: *174 + url: *172 + html_url: *173 locations_url: type: string format: uri description: The REST API URL of the code locations for this alert. - state: *617 - resolution: *618 + state: *615 + resolution: *616 resolved_at: type: string format: date-time @@ -89484,7 +89399,7 @@ paths: pull request. ' - oneOf: *619 + oneOf: *617 nullable: true has_more_locations: type: boolean @@ -89611,7 +89526,7 @@ paths: '404': description: Repository is public or secret scanning is disabled for the repository - '503': *113 + '503': *112 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -89636,13 +89551,13 @@ paths: - *324 - *325 - *422 - - *616 + - *614 responses: '200': description: Response content: application/json: - schema: *620 + schema: *618 examples: default: value: @@ -89673,7 +89588,7 @@ paths: '404': description: Repository is public, or secret scanning is disabled for the repository, or the resource is not found - '503': *113 + '503': *112 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -89706,8 +89621,8 @@ paths: schema: type: object properties: - state: *617 - resolution: *618 + state: *615 + resolution: *616 resolution_comment: description: An optional comment when closing or reopening an alert. Cannot be updated or deleted. @@ -89741,7 +89656,7 @@ paths: description: Response content: application/json: - schema: *620 + schema: *618 examples: default: value: @@ -89814,7 +89729,7 @@ paths: '422': description: State does not match the resolution or resolution comment, or assignee does not have write access to the repository - '503': *113 + '503': *112 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -89849,7 +89764,7 @@ paths: schema: type: array description: List of locations where the secret was detected - items: &776 + items: &774 type: object properties: type: @@ -89875,6 +89790,8 @@ paths: example: commit details: oneOf: + - *619 + - *620 - *621 - *622 - *623 @@ -89886,8 +89803,6 @@ paths: - *629 - *630 - *631 - - *632 - - *633 examples: default: value: @@ -89951,7 +89866,7 @@ paths: '404': description: Repository is public, or secret scanning is disabled for the repository, or the resource is not found - '503': *113 + '503': *112 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -89982,14 +89897,14 @@ paths: schema: type: object properties: - reason: &635 + reason: &633 description: The reason for bypassing push protection. type: string enum: - false_positive - used_in_tests - will_fix_later - placeholder_id: *634 + placeholder_id: *632 required: - reason - placeholder_id @@ -90006,7 +89921,7 @@ paths: schema: type: object properties: - reason: *635 + reason: *633 expire_at: type: string format: date-time @@ -90029,7 +89944,7 @@ paths: this repository. '422': description: Bad request, input data missing or incorrect. - '503': *113 + '503': *112 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -90058,7 +89973,7 @@ paths: '404': description: Repository does not have GitHub Advanced Security or secret scanning enabled - '503': *113 + '503': *112 '200': description: Response content: @@ -90068,7 +89983,7 @@ paths: properties: incremental_scans: type: array - items: &636 + items: &634 description: Information on a single scan performed by secret scanning on the repository type: object @@ -90094,15 +90009,15 @@ paths: nullable: true pattern_update_scans: type: array - items: *636 + items: *634 backfill_scans: type: array - items: *636 + items: *634 custom_pattern_backfill_scans: type: array items: allOf: - - *636 + - *634 - type: object properties: pattern_name: @@ -90217,9 +90132,9 @@ paths: application/json: schema: type: array - items: *637 + items: *635 examples: - default: *638 + default: *636 '400': *14 '404': *6 x-github: @@ -90403,9 +90318,9 @@ paths: description: Response content: application/json: - schema: *637 + schema: *635 examples: - default: &640 + default: &638 value: ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -90743,7 +90658,7 @@ paths: description: Response content: application/json: - schema: *637 + schema: *635 examples: default: value: @@ -90892,15 +90807,15 @@ paths: parameters: - *324 - *325 - - *639 + - *637 responses: '200': description: Response content: application/json: - schema: *637 + schema: *635 examples: - default: *640 + default: *638 '403': *29 '404': *6 x-github: @@ -90926,7 +90841,7 @@ paths: parameters: - *324 - *325 - - *639 + - *637 requestBody: required: true content: @@ -91085,17 +91000,17 @@ paths: description: Response content: application/json: - schema: *637 + schema: *635 examples: - default: *640 - add_credit: *640 + default: *638 + add_credit: *638 '403': *29 '404': *6 '422': description: Validation failed, or the endpoint has been spammed. content: application/json: - schema: *121 + schema: *120 examples: invalid_state_transition: value: @@ -91128,7 +91043,7 @@ paths: parameters: - *324 - *325 - - *639 + - *637 responses: '202': *39 '400': *14 @@ -91157,7 +91072,7 @@ paths: parameters: - *324 - *325 - - *639 + - *637 responses: '202': description: Response @@ -91301,7 +91216,7 @@ paths: application/json: schema: type: array - items: &641 + items: &639 title: Code Frequency Stat description: Code Frequency Stat type: array @@ -91314,7 +91229,7 @@ paths: - 1124 - -435 '202': *39 - '204': *183 + '204': *182 '422': description: Repository contains more than 10,000 commits x-github: @@ -91384,7 +91299,7 @@ paths: total: 89 week: 1336280400 '202': *39 - '204': *183 + '204': *182 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -91486,7 +91401,7 @@ paths: d: 77 c: 10 '202': *39 - '204': *183 + '204': *182 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -91674,7 +91589,7 @@ paths: application/json: schema: type: array - items: *641 + items: *639 examples: default: value: @@ -91687,7 +91602,7 @@ paths: - - 0 - 2 - 21 - '204': *183 + '204': *182 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -91762,7 +91677,7 @@ paths: description: Response content: application/json: - schema: *642 + schema: *640 examples: default: value: @@ -91856,7 +91771,7 @@ paths: description: if you subscribe to the repository content: application/json: - schema: &643 + schema: &641 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -91951,7 +91866,7 @@ paths: description: Response content: application/json: - schema: *643 + schema: *641 examples: default: value: @@ -92088,7 +92003,7 @@ paths: application/json: schema: type: array - items: &644 + items: &642 title: Tag protection description: Tag protection type: object @@ -92164,7 +92079,7 @@ paths: description: Response content: application/json: - schema: *644 + schema: *642 examples: default: value: @@ -92281,9 +92196,9 @@ paths: application/json: schema: type: array - items: *189 + items: *188 examples: - default: *244 + default: *243 headers: Link: *59 '404': *6 @@ -92312,7 +92227,7 @@ paths: description: Response content: application/json: - schema: &645 + schema: &643 title: Topic description: A topic aggregates entities that are related to a subject. type: object @@ -92324,7 +92239,7 @@ paths: required: - names examples: - default: &646 + default: &644 value: names: - octocat @@ -92379,9 +92294,9 @@ paths: description: Response content: application/json: - schema: *645 + schema: *643 examples: - default: *646 + default: *644 '404': *6 '422': *7 x-github: @@ -92404,7 +92319,7 @@ paths: parameters: - *324 - *325 - - &647 + - &645 name: per description: The time frame to display results for. in: query @@ -92433,7 +92348,7 @@ paths: example: 128 clones: type: array - items: &648 + items: &646 title: Traffic type: object properties: @@ -92674,7 +92589,7 @@ paths: parameters: - *324 - *325 - - *647 + - *645 responses: '200': description: Response @@ -92693,7 +92608,7 @@ paths: example: 3782 views: type: array - items: *648 + items: *646 required: - uniques - count @@ -92807,7 +92722,7 @@ paths: description: Response content: application/json: - schema: *152 + schema: *151 examples: default: value: @@ -93255,7 +93170,7 @@ paths: application/json: schema: type: array - items: *152 + items: *151 examples: default: value: @@ -93444,7 +93359,7 @@ paths: html_url: type: string format: uri - repository: *152 + repository: *151 score: type: number file_size: @@ -93462,7 +93377,7 @@ paths: example: - 73..77 - 77..78 - text_matches: &649 + text_matches: &647 title: Search Result Text Matches type: array items: @@ -93576,7 +93491,7 @@ paths: releases_url: http://api.github.com/repos/octocat/Hello-World/releases{/id} score: 1 '304': *37 - '503': *113 + '503': *112 '422': *15 '403': *29 x-github: @@ -93624,7 +93539,7 @@ paths: enum: - author-date - committer-date - - &650 + - &648 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 @@ -93747,12 +93662,12 @@ paths: type: string sha: type: string - repository: *152 + repository: *151 score: type: number node_id: type: string - text_matches: *649 + text_matches: *647 required: - sha - node_id @@ -93944,7 +93859,7 @@ paths: - interactions - created - updated - - *650 + - *648 - *17 - *19 - name: advanced_search @@ -94041,11 +93956,11 @@ paths: description: type: string nullable: true - sub_issues_summary: *651 - issue_dependencies_summary: *652 + sub_issues_summary: *649 + issue_dependencies_summary: *650 issue_field_values: type: array - items: *653 + items: *651 state: type: string state_reason: @@ -94062,8 +93977,8 @@ paths: title: Milestone description: A collection of related issues and pull requests. type: object - properties: *264 - required: *265 + properties: *263 + required: *264 nullable: true comments: type: integer @@ -94077,7 +93992,7 @@ paths: type: string format: date-time nullable: true - text_matches: *649 + text_matches: *647 pull_request: type: object properties: @@ -94121,7 +94036,7 @@ paths: timeline_url: type: string format: uri - type: *227 + type: *226 performed_via_github_app: title: GitHub app description: GitHub apps are a new way to extend GitHub. @@ -94249,7 +94164,7 @@ paths: locked: true author_association: COLLABORATOR state_reason: completed - '503': *113 + '503': *112 '422': *15 '304': *37 '403': *29 @@ -94302,7 +94217,7 @@ paths: enum: - created - updated - - *650 + - *648 - *17 - *19 responses: @@ -94346,7 +94261,7 @@ paths: nullable: true score: type: number - text_matches: *649 + text_matches: *647 required: - id - node_id @@ -94431,7 +94346,7 @@ paths: - forks - help-wanted-issues - updated - - *650 + - *648 - *17 - *19 responses: @@ -94670,7 +94585,7 @@ paths: - admin - pull - push - text_matches: *649 + text_matches: *647 temp_clone_token: type: string allow_merge_commit: @@ -94872,7 +94787,7 @@ paths: spdx_id: MIT node_id: MDc6TGljZW5zZW1pdA== html_url: https://api.github.com/licenses/mit - '503': *113 + '503': *112 '422': *15 '304': *37 x-github: @@ -94970,7 +94885,7 @@ paths: type: string format: uri nullable: true - text_matches: *649 + text_matches: *647 related: type: array nullable: true @@ -95161,7 +95076,7 @@ paths: - followers - repositories - joined - - *650 + - *648 - *17 - *19 responses: @@ -95265,7 +95180,7 @@ paths: hireable: type: boolean nullable: true - text_matches: *649 + text_matches: *647 blog: type: string nullable: true @@ -95324,7 +95239,7 @@ paths: events_url: https://api.github.com/users/mojombo/events{/privacy} site_admin: true '304': *37 - '503': *113 + '503': *112 '422': *15 x-github: githubCloudOnly: false @@ -95344,7 +95259,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#get-a-team-legacy parameters: - - &654 + - &652 name: team_id description: The unique identifier of the team. in: path @@ -95385,7 +95300,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#update-a-team-legacy parameters: - - *654 + - *652 requestBody: required: true content: @@ -95485,7 +95400,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#delete-a-team-legacy parameters: - - *654 + - *652 responses: '204': description: Response @@ -95514,7 +95429,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#list-pending-team-invitations-legacy parameters: - - *654 + - *652 - *17 - *19 responses: @@ -95524,9 +95439,9 @@ paths: application/json: schema: type: array - items: *224 + items: *223 examples: - default: *225 + default: *224 headers: Link: *59 x-github: @@ -95552,7 +95467,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#list-team-members-legacy parameters: - - *654 + - *652 - name: role description: Filters members returned by their role in the team. in: query @@ -95603,7 +95518,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#get-team-member-legacy parameters: - - *654 + - *652 - *64 responses: '204': @@ -95640,7 +95555,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#add-team-member-legacy parameters: - - *654 + - *652 - *64 responses: '204': @@ -95680,7 +95595,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#remove-team-member-legacy parameters: - - *654 + - *652 - *64 responses: '204': @@ -95717,7 +95632,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#get-team-membership-for-a-user-legacy parameters: - - *654 + - *652 - *64 responses: '200': @@ -95726,7 +95641,7 @@ paths: application/json: schema: *323 examples: - response-if-user-is-a-team-maintainer: *655 + response-if-user-is-a-team-maintainer: *653 '404': *6 x-github: githubCloudOnly: false @@ -95759,7 +95674,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#add-or-update-team-membership-for-a-user-legacy parameters: - - *654 + - *652 - *64 requestBody: required: false @@ -95787,7 +95702,7 @@ paths: application/json: schema: *323 examples: - response-if-users-membership-with-team-is-now-pending: *656 + response-if-users-membership-with-team-is-now-pending: *654 '403': description: Forbidden if team synchronization is set up '422': @@ -95821,7 +95736,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#remove-team-membership-for-a-user-legacy parameters: - - *654 + - *652 - *64 responses: '204': @@ -95849,7 +95764,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#list-team-repositories-legacy parameters: - - *654 + - *652 - *17 - *19 responses: @@ -95859,9 +95774,9 @@ paths: application/json: schema: type: array - items: *152 + items: *151 examples: - default: *251 + default: *250 headers: Link: *59 '404': *6 @@ -95891,7 +95806,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#check-team-permissions-for-a-repository-legacy parameters: - - *654 + - *652 - *324 - *325 responses: @@ -95899,7 +95814,7 @@ paths: description: Alternative response with extra repository information content: application/json: - schema: *657 + schema: *655 examples: alternative-response-with-extra-repository-information: value: @@ -96050,7 +95965,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#add-or-update-team-repository-permissions-legacy parameters: - - *654 + - *652 - *324 - *325 requestBody: @@ -96102,7 +96017,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#remove-a-repository-from-a-team-legacy parameters: - - *654 + - *652 - *324 - *325 responses: @@ -96129,7 +96044,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#list-child-teams-legacy parameters: - - *654 + - *652 - *17 - *19 responses: @@ -96139,9 +96054,9 @@ paths: application/json: schema: type: array - items: *189 + items: *188 examples: - response-if-child-teams-exist: *658 + response-if-child-teams-exist: *656 headers: Link: *59 '404': *6 @@ -96174,7 +96089,7 @@ paths: application/json: schema: oneOf: - - &660 + - &658 title: Private User description: Private User type: object @@ -96377,7 +96292,7 @@ paths: - private_gists - total_private_repos - two_factor_authentication - - *659 + - *657 examples: response-with-public-and-private-profile-information: summary: Response with public and private profile information @@ -96530,7 +96445,7 @@ paths: description: Response content: application/json: - schema: *660 + schema: *658 examples: default: value: @@ -96733,11 +96648,11 @@ paths: type: integer codespaces: type: array - items: *232 + items: *231 examples: - default: *233 + default: *232 '304': *37 - '500': *112 + '500': *111 '401': *25 '403': *29 '404': *6 @@ -96874,7 +96789,7 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *232 + schema: *231 examples: default: *445 '202': @@ -96882,13 +96797,13 @@ paths: being retried in the background content: application/json: - schema: *232 + schema: *231 examples: default: *445 '401': *25 '403': *29 '404': *6 - '503': *113 + '503': *112 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -96928,7 +96843,7 @@ paths: type: integer secrets: type: array - items: &661 + items: &659 title: Codespaces Secret description: Secrets for a GitHub Codespace. type: object @@ -97038,13 +96953,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/secrets#get-a-secret-for-the-authenticated-user parameters: - - *160 + - *159 responses: '200': description: Response content: application/json: - schema: *661 + schema: *659 examples: default: value: @@ -97074,7 +96989,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/secrets#create-or-update-a-secret-for-the-authenticated-user parameters: - - *160 + - *159 requestBody: required: true content: @@ -97119,7 +97034,7 @@ paths: description: Response after successfully creating a secret content: application/json: - schema: *161 + schema: *160 examples: default: value: @@ -97147,7 +97062,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/secrets#delete-a-secret-for-the-authenticated-user parameters: - - *160 + - *159 responses: '204': description: Response @@ -97172,7 +97087,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/secrets#list-selected-repositories-for-a-user-secret parameters: - - *160 + - *159 responses: '200': description: Response @@ -97188,13 +97103,13 @@ paths: type: integer repositories: type: array - items: *152 + items: *151 examples: - default: *662 + default: *660 '401': *25 '403': *29 '404': *6 - '500': *112 + '500': *111 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -97215,7 +97130,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/secrets#set-selected-repositories-for-a-user-secret parameters: - - *160 + - *159 requestBody: required: true content: @@ -97247,7 +97162,7 @@ paths: '401': *25 '403': *29 '404': *6 - '500': *112 + '500': *111 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -97269,7 +97184,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/secrets#add-a-selected-repository-to-a-user-secret parameters: - - *160 + - *159 - name: repository_id in: path required: true @@ -97281,7 +97196,7 @@ paths: '401': *25 '403': *29 '404': *6 - '500': *112 + '500': *111 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -97302,7 +97217,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/secrets#remove-a-selected-repository-from-a-user-secret parameters: - - *160 + - *159 - name: repository_id in: path required: true @@ -97314,7 +97229,7 @@ paths: '401': *25 '403': *29 '404': *6 - '500': *112 + '500': *111 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -97334,17 +97249,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#get-a-codespace-for-the-authenticated-user parameters: - - *234 + - *233 responses: '200': description: Response content: application/json: - schema: *232 + schema: *231 examples: default: *445 '304': *37 - '500': *112 + '500': *111 '401': *25 '403': *29 '404': *6 @@ -97368,7 +97283,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#update-a-codespace-for-the-authenticated-user parameters: - - *234 + - *233 requestBody: required: false content: @@ -97398,7 +97313,7 @@ paths: description: Response content: application/json: - schema: *232 + schema: *231 examples: default: *445 '401': *25 @@ -97422,11 +97337,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#delete-a-codespace-for-the-authenticated-user parameters: - - *234 + - *233 responses: '202': *39 '304': *37 - '500': *112 + '500': *111 '401': *25 '403': *29 '404': *6 @@ -97451,13 +97366,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#export-a-codespace-for-the-authenticated-user parameters: - - *234 + - *233 responses: '202': description: Response content: application/json: - schema: &663 + schema: &661 type: object title: Fetches information about an export of a codespace. description: An export of a codespace. Also, latest export details @@ -97498,7 +97413,7 @@ paths: description: Web url for the exported branch example: https://github.com/octocat/hello-world/tree/:branch examples: - default: &664 + default: &662 value: state: succeeded completed_at: '2022-01-01T14:59:22Z' @@ -97506,7 +97421,7 @@ paths: sha: fd95a81ca01e48ede9f39c799ecbcef817b8a3b2 id: latest export_url: https://api.github.com/user/codespaces/:name/exports/latest - '500': *112 + '500': *111 '401': *25 '403': *29 '404': *6 @@ -97530,7 +97445,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#get-details-about-a-codespace-export parameters: - - *234 + - *233 - name: export_id in: path required: true @@ -97543,9 +97458,9 @@ paths: description: Response content: application/json: - schema: *663 + schema: *661 examples: - default: *664 + default: *662 '404': *6 x-github: githubCloudOnly: false @@ -97566,7 +97481,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/machines#list-machine-types-for-a-codespace parameters: - - *234 + - *233 responses: '200': description: Response @@ -97582,11 +97497,11 @@ paths: type: integer machines: type: array - items: *665 + items: *663 examples: - default: *666 + default: *664 '304': *37 - '500': *112 + '500': *111 '401': *25 '403': *29 '404': *6 @@ -97613,7 +97528,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#create-a-repository-from-an-unpublished-codespace parameters: - - *234 + - *233 requestBody: required: true content: @@ -98443,17 +98358,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#start-a-codespace-for-the-authenticated-user parameters: - - *234 + - *233 responses: '200': description: Response content: application/json: - schema: *232 + schema: *231 examples: default: *445 '304': *37 - '500': *112 + '500': *111 '400': *14 '401': *25 '402': @@ -98483,16 +98398,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#stop-a-codespace-for-the-authenticated-user parameters: - - *234 + - *233 responses: '200': description: Response content: application/json: - schema: *232 + schema: *231 examples: default: *445 - '500': *112 + '500': *111 '401': *25 '403': *29 '404': *6 @@ -98521,9 +98436,9 @@ paths: application/json: schema: type: array - items: *245 + items: *244 examples: - default: &677 + default: &675 value: - id: 197 name: hello_docker @@ -98624,7 +98539,7 @@ paths: application/json: schema: type: array - items: &667 + items: &665 title: Email description: Email type: object @@ -98689,9 +98604,9 @@ paths: application/json: schema: type: array - items: *667 + items: *665 examples: - default: &679 + default: &677 value: - email: octocat@github.com verified: true @@ -98766,7 +98681,7 @@ paths: application/json: schema: type: array - items: *667 + items: *665 examples: default: value: @@ -99022,7 +98937,7 @@ paths: application/json: schema: type: array - items: &668 + items: &666 title: GPG Key description: A unique encryption key type: object @@ -99153,7 +99068,7 @@ paths: - subkeys - revoked examples: - default: &693 + default: &691 value: - id: 3 name: Octocat's GPG Key @@ -99238,9 +99153,9 @@ paths: description: Response content: application/json: - schema: *668 + schema: *666 examples: - default: &669 + default: &667 value: id: 3 name: Octocat's GPG Key @@ -99297,7 +99212,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/gpg-keys#get-a-gpg-key-for-the-authenticated-user parameters: - - &670 + - &668 name: gpg_key_id description: The unique identifier of the GPG key. in: path @@ -99309,9 +99224,9 @@ paths: description: Response content: application/json: - schema: *668 + schema: *666 examples: - default: *669 + default: *667 '404': *6 '304': *37 '403': *29 @@ -99334,7 +99249,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/gpg-keys#delete-a-gpg-key-for-the-authenticated-user parameters: - - *670 + - *668 responses: '204': description: Response @@ -99525,7 +99440,7 @@ paths: type: array items: *71 examples: - default: *144 + default: *143 headers: Link: *59 '404': *6 @@ -99550,7 +99465,7 @@ paths: url: https://docs.github.com/rest/apps/installations#add-a-repository-to-an-app-installation parameters: - *23 - - *141 + - *140 responses: '204': description: Response @@ -99576,7 +99491,7 @@ paths: url: https://docs.github.com/rest/apps/installations#remove-a-repository-from-an-app-installation parameters: - *23 - - *141 + - *140 responses: '204': description: Response @@ -99610,12 +99525,12 @@ paths: application/json: schema: anyOf: - - *222 + - *221 - type: object properties: {} additionalProperties: false examples: - default: *223 + default: *222 '204': description: Response when there are no restrictions x-github: @@ -99650,7 +99565,7 @@ paths: description: Response content: application/json: - schema: *222 + schema: *221 examples: default: value: @@ -99731,7 +99646,7 @@ paths: - closed - all default: open - - *230 + - *229 - name: sort description: What to sort results by. in: query @@ -99756,7 +99671,7 @@ paths: type: array items: *75 examples: - default: *231 + default: *230 headers: Link: *59 '404': *6 @@ -99789,7 +99704,7 @@ paths: application/json: schema: type: array - items: &671 + items: &669 title: Key description: Key type: object @@ -99890,9 +99805,9 @@ paths: description: Response content: application/json: - schema: *671 + schema: *669 examples: - default: &672 + default: &670 value: key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -99931,9 +99846,9 @@ paths: description: Response content: application/json: - schema: *671 + schema: *669 examples: - default: *672 + default: *670 '404': *6 '304': *37 '403': *29 @@ -99989,7 +99904,7 @@ paths: application/json: schema: type: array - items: &673 + items: &671 title: User Marketplace Purchase description: User Marketplace Purchase type: object @@ -100057,7 +99972,7 @@ paths: - account - plan examples: - default: &674 + default: &672 value: - billing_cycle: monthly next_billing_date: '2017-11-11T00:00:00Z' @@ -100119,9 +100034,9 @@ paths: application/json: schema: type: array - items: *673 + items: *671 examples: - default: *674 + default: *672 headers: Link: *59 '304': *37 @@ -100161,7 +100076,7 @@ paths: application/json: schema: type: array - items: *236 + items: *235 examples: default: value: @@ -100275,7 +100190,7 @@ paths: description: Response content: application/json: - schema: *236 + schema: *235 examples: default: value: @@ -100362,7 +100277,7 @@ paths: description: Response content: application/json: - schema: *236 + schema: *235 examples: default: value: @@ -100434,7 +100349,7 @@ paths: application/json: schema: type: array - items: *238 + items: *237 examples: default: value: @@ -100687,7 +100602,7 @@ paths: description: Response content: application/json: - schema: *238 + schema: *237 examples: default: value: @@ -100867,7 +100782,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#get-a-user-migration-status parameters: - - *239 + - *238 - name: exclude in: query required: false @@ -100880,7 +100795,7 @@ paths: description: Response content: application/json: - schema: *238 + schema: *237 examples: default: value: @@ -101074,7 +100989,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#download-a-user-migration-archive parameters: - - *239 + - *238 responses: '302': description: Response @@ -101100,7 +101015,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#delete-a-user-migration-archive parameters: - - *239 + - *238 responses: '204': description: Response @@ -101129,8 +101044,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#unlock-a-user-repository parameters: - - *239 - - *675 + - *238 + - *673 responses: '204': description: Response @@ -101154,7 +101069,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#list-repositories-for-a-user-migration parameters: - - *239 + - *238 - *17 - *19 responses: @@ -101164,9 +101079,9 @@ paths: application/json: schema: type: array - items: *152 + items: *151 examples: - default: *251 + default: *250 headers: Link: *59 '404': *6 @@ -101245,7 +101160,7 @@ paths: - docker - nuget - container - - *676 + - *674 - *19 - *17 responses: @@ -101255,10 +101170,10 @@ paths: application/json: schema: type: array - items: *245 + items: *244 examples: - default: *677 - '400': *678 + default: *675 + '400': *676 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -101278,16 +101193,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-for-the-authenticated-user parameters: + - *246 - *247 - - *248 responses: '200': description: Response content: application/json: - schema: *245 + schema: *244 examples: - default: &694 + default: &692 value: id: 40201 name: octo-name @@ -101400,8 +101315,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-a-package-for-the-authenticated-user parameters: + - *246 - *247 - - *248 responses: '204': description: Response @@ -101431,8 +101346,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-a-package-for-the-authenticated-user parameters: + - *246 - *247 - - *248 - name: token description: package token schema: @@ -101464,8 +101379,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: + - *246 - *247 - - *248 - *19 - *17 - name: state @@ -101485,7 +101400,7 @@ paths: application/json: schema: type: array - items: *249 + items: *248 examples: default: value: @@ -101534,15 +101449,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-version-for-the-authenticated-user parameters: + - *246 - *247 - - *248 - - *250 + - *249 responses: '200': description: Response content: application/json: - schema: *249 + schema: *248 examples: default: value: @@ -101578,9 +101493,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-a-package-version-for-the-authenticated-user parameters: + - *246 - *247 - - *248 - - *250 + - *249 responses: '204': description: Response @@ -101610,9 +101525,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-a-package-version-for-the-authenticated-user parameters: + - *246 - *247 - - *248 - - *250 + - *249 responses: '204': description: Response @@ -101649,9 +101564,9 @@ paths: application/json: schema: type: array - items: *667 + items: *665 examples: - default: *679 + default: *677 headers: Link: *59 '304': *37 @@ -101764,7 +101679,7 @@ paths: type: array items: *71 examples: - default: &686 + default: &684 summary: Default response value: - id: 1296269 @@ -102110,7 +102025,7 @@ paths: type: array items: *523 examples: - default: *680 + default: *678 headers: Link: *59 '304': *37 @@ -102133,7 +102048,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#accept-a-repository-invitation parameters: - - *226 + - *225 responses: '204': description: Response @@ -102156,7 +102071,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#decline-a-repository-invitation parameters: - - *226 + - *225 responses: '204': description: Response @@ -102189,7 +102104,7 @@ paths: application/json: schema: type: array - items: &681 + items: &679 title: Social account description: Social media account type: object @@ -102204,7 +102119,7 @@ paths: - provider - url examples: - default: &682 + default: &680 value: - provider: twitter url: https://twitter.com/github @@ -102266,9 +102181,9 @@ paths: application/json: schema: type: array - items: *681 + items: *679 examples: - default: *682 + default: *680 '422': *15 '304': *37 '404': *6 @@ -102355,7 +102270,7 @@ paths: application/json: schema: type: array - items: &683 + items: &681 title: SSH Signing Key description: A public SSH key used to sign Git commits type: object @@ -102375,7 +102290,7 @@ paths: - title - created_at examples: - default: &712 + default: &710 value: - id: 2 key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -102439,9 +102354,9 @@ paths: description: Response content: application/json: - schema: *683 + schema: *681 examples: - default: &684 + default: &682 value: id: 2 key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -102471,7 +102386,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: - - &685 + - &683 name: ssh_signing_key_id description: The unique identifier of the SSH signing key. in: path @@ -102483,9 +102398,9 @@ paths: description: Response content: application/json: - schema: *683 + schema: *681 examples: - default: *684 + default: *682 '404': *6 '304': *37 '403': *29 @@ -102508,7 +102423,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: - - *685 + - *683 responses: '204': description: Response @@ -102537,7 +102452,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#list-repositories-starred-by-the-authenticated-user parameters: - - &713 + - &711 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 @@ -102562,11 +102477,11 @@ paths: type: array items: *71 examples: - default-response: *686 + default-response: *684 application/vnd.github.v3.star+json: schema: type: array - items: &714 + items: &712 title: Starred Repository description: Starred Repository type: object @@ -102810,9 +102725,9 @@ paths: application/json: schema: type: array - items: *152 + items: *151 examples: - default: *251 + default: *250 headers: Link: *59 '304': *37 @@ -102935,10 +102850,10 @@ paths: application/json: schema: oneOf: - - *660 - - *659 + - *658 + - *657 examples: - default-response: &688 + default-response: &686 summary: Default response value: login: octocat @@ -102973,7 +102888,7 @@ paths: following: 0 created_at: '2008-01-14T04:33:35Z' updated_at: '2008-01-14T04:33:35Z' - response-with-git-hub-plan-information: &689 + response-with-git-hub-plan-information: &687 summary: Response with GitHub plan information value: login: octocat @@ -103036,7 +102951,7 @@ paths: required: true schema: type: string - - *263 + - *262 requestBody: required: true description: Details of the draft item to create in the project. @@ -103070,9 +102985,9 @@ paths: description: Response content: application/json: - schema: *269 + schema: *268 examples: - draft_issue: *270 + draft_issue: *269 '304': *37 '403': *29 '401': *25 @@ -103095,7 +103010,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/users#list-users parameters: - - *687 + - *685 - *17 responses: '200': @@ -103144,11 +103059,11 @@ paths: application/json: schema: oneOf: - - *660 - - *659 + - *658 + - *657 examples: - default-response: *688 - response-with-git-hub-plan-information: *689 + default-response: *686 + response-with-git-hub-plan-information: *687 '404': *6 x-github: githubCloudOnly: false @@ -103198,8 +103113,8 @@ paths: required: - subject_digests examples: - default: *690 - withPredicateType: *691 + default: *688 + withPredicateType: *689 responses: '200': description: Response @@ -103252,7 +103167,7 @@ paths: description: The cursor to the previous page. description: Information about the current page. examples: - default: *692 + default: *690 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -103462,7 +103377,7 @@ paths: description: Response content: application/json: - schema: *161 + schema: *160 examples: default: value: @@ -103496,9 +103411,9 @@ paths: application/json: schema: type: array - items: *245 + items: *244 examples: - default: *677 + default: *675 '403': *29 '401': *25 x-github: @@ -103882,9 +103797,9 @@ paths: application/json: schema: type: array - items: *668 + items: *666 examples: - default: *693 + default: *691 headers: Link: *59 x-github: @@ -104112,7 +104027,7 @@ paths: - docker - nuget - container - - *676 + - *674 - *64 - *19 - *17 @@ -104123,12 +104038,12 @@ paths: application/json: schema: type: array - items: *245 + items: *244 examples: - default: *677 + default: *675 '403': *29 '401': *25 - '400': *678 + '400': *676 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -104148,17 +104063,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-for-a-user parameters: + - *246 - *247 - - *248 - *64 responses: '200': description: Response content: application/json: - schema: *245 + schema: *244 examples: - default: *694 + default: *692 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -104179,8 +104094,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-a-package-for-a-user parameters: + - *246 - *247 - - *248 - *64 responses: '204': @@ -104213,8 +104128,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-a-package-for-a-user parameters: + - *246 - *247 - - *248 - *64 - name: token description: package token @@ -104247,8 +104162,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: + - *246 - *247 - - *248 - *64 responses: '200': @@ -104257,7 +104172,7 @@ paths: application/json: schema: type: array - items: *249 + items: *248 examples: default: value: @@ -104315,16 +104230,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-version-for-a-user parameters: + - *246 - *247 - - *248 - - *250 + - *249 - *64 responses: '200': description: Response content: application/json: - schema: *249 + schema: *248 examples: default: value: @@ -104359,10 +104274,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-package-version-for-a-user parameters: + - *246 - *247 - - *248 - *64 - - *250 + - *249 responses: '204': description: Response @@ -104394,10 +104309,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-package-version-for-a-user parameters: + - *246 - *247 - - *248 - *64 - - *250 + - *249 responses: '204': description: Response @@ -104438,9 +104353,9 @@ paths: application/json: schema: type: array - items: *261 + items: *260 examples: - default: *262 + default: *261 headers: Link: *59 '304': *37 @@ -104462,16 +104377,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/projects#get-project-for-user parameters: - - *263 + - *262 - *64 responses: '200': description: Response content: application/json: - schema: *261 + schema: *260 examples: - default: *262 + default: *261 headers: Link: *59 '304': *37 @@ -104493,7 +104408,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/fields#list-project-fields-for-user parameters: - - *263 + - *262 - *64 - *17 - *45 @@ -104505,9 +104420,9 @@ paths: application/json: schema: type: array - items: *267 + items: *266 examples: - default: *695 + default: *693 headers: Link: *59 '304': *37 @@ -104529,7 +104444,7 @@ paths: url: https://docs.github.com/rest/projects/fields#add-field-to-user-owned-project parameters: - *64 - - *263 + - *262 requestBody: required: true content: @@ -104567,7 +104482,7 @@ paths: description: The options available for single select fields. At least one option must be provided when creating a single select field. - items: *696 + items: *694 required: - name - data_type @@ -104583,7 +104498,7 @@ paths: description: The field's data type. enum: - iteration - iteration_configuration: *697 + iteration_configuration: *695 required: - name - data_type @@ -104605,20 +104520,20 @@ paths: value: name: Due date data_type: date - single_select_field: *698 - iteration_field: *699 + single_select_field: *696 + iteration_field: *697 responses: '201': description: Response content: application/json: - schema: *267 + schema: *266 examples: - text_field: *700 - number_field: *701 - date_field: *702 - single_select_field: *703 - iteration_field: *704 + text_field: *698 + number_field: *699 + date_field: *700 + single_select_field: *701 + iteration_field: *702 '304': *37 '403': *29 '401': *25 @@ -104639,17 +104554,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/fields#get-project-field-for-user parameters: - - *263 - - *705 + - *262 + - *703 - *64 responses: '200': description: Response content: application/json: - schema: *267 + schema: *266 examples: - default: *706 + default: *704 headers: Link: *59 '304': *37 @@ -104672,7 +104587,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#list-items-for-a-user-owned-project parameters: - - *263 + - *262 - *64 - *45 - *46 @@ -104705,9 +104620,9 @@ paths: application/json: schema: type: array - items: *271 + items: *270 examples: - default: *272 + default: *271 headers: Link: *59 '304': *37 @@ -104729,7 +104644,7 @@ paths: url: https://docs.github.com/rest/projects/items#add-item-to-user-owned-project parameters: - *64 - - *263 + - *262 requestBody: required: true description: Details of the item to add to the project. You can specify either @@ -104799,22 +104714,22 @@ paths: description: Response content: application/json: - schema: *269 + schema: *268 examples: issue_with_id: summary: Response for adding an issue using its unique ID - value: *270 + value: *269 pull_request_with_id: summary: Response for adding a pull request using its unique ID - value: *270 + value: *269 issue_with_nwo: summary: Response for adding an issue using repository owner, name, and issue number - value: *270 + value: *269 pull_request_with_nwo: summary: Response for adding a pull request using repository owner, name, and PR number - value: *270 + value: *269 '304': *37 '403': *29 '401': *25 @@ -104834,9 +104749,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#get-an-item-for-a-user-owned-project parameters: - - *263 + - *262 - *64 - - *273 + - *272 - name: fields description: |- Limit results to specific fields, by their IDs. If not specified, the title field will be returned. @@ -104856,9 +104771,9 @@ paths: description: Response content: application/json: - schema: *271 + schema: *270 examples: - default: *272 + default: *271 headers: Link: *59 '304': *37 @@ -104879,9 +104794,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#update-project-item-for-user parameters: - - *263 + - *262 - *64 - - *273 + - *272 requestBody: required: true description: Field updates to apply to the project item. Only text, number, @@ -104951,13 +104866,13 @@ paths: description: Response content: application/json: - schema: *271 + schema: *270 examples: - text_field: *272 - number_field: *272 - date_field: *272 - single_select_field: *272 - iteration_field: *272 + text_field: *271 + number_field: *271 + date_field: *271 + single_select_field: *271 + iteration_field: *271 '401': *25 '403': *29 '404': *6 @@ -104977,9 +104892,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#delete-project-item-for-user parameters: - - *263 + - *262 - *64 - - *273 + - *272 responses: '204': description: Response @@ -105001,9 +104916,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#list-items-for-a-user-project-view parameters: - - *263 + - *262 - *64 - - *707 + - *705 - name: fields description: |- Limit results to specific fields, by their IDs. If not specified, the @@ -105029,9 +104944,9 @@ paths: application/json: schema: type: array - items: *271 + items: *270 examples: - default: *272 + default: *271 headers: Link: *59 '304': *37 @@ -105250,9 +105165,9 @@ paths: application/json: schema: type: array - items: *152 + items: *151 examples: - default: *251 + default: *250 headers: Link: *59 x-github: @@ -105275,11 +105190,11 @@ paths: url: https://docs.github.com/rest/billing/usage#get-billing-premium-request-usage-report-for-a-user parameters: - *64 + - *114 + - *116 - *115 + - *706 - *117 - - *116 - - *708 - - *118 responses: '200': description: Response when getting a billing premium request usage report @@ -105386,8 +105301,8 @@ paths: '400': *14 '403': *29 '404': *6 - '500': *112 - '503': *113 + '500': *111 + '503': *112 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -105408,9 +105323,9 @@ paths: url: https://docs.github.com/rest/billing/usage#get-billing-usage-report-for-a-user parameters: - *64 + - *114 + - *707 - *115 - - *709 - - *116 responses: '200': description: Response when getting a billing usage report @@ -105480,8 +105395,8 @@ paths: repositoryName: user/example '400': *14 '403': *29 - '500': *112 - '503': *113 + '500': *111 + '503': *112 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -105505,12 +105420,12 @@ paths: url: https://docs.github.com/rest/billing/usage#get-billing-usage-summary-for-a-user parameters: - *64 + - *114 + - *116 - *115 + - *708 - *117 - - *116 - - *710 - - *118 - - *711 + - *709 responses: '200': description: Response when getting a billing usage summary @@ -105615,8 +105530,8 @@ paths: '400': *14 '403': *29 '404': *6 - '500': *112 - '503': *113 + '500': *111 + '503': *112 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -105644,9 +105559,9 @@ paths: application/json: schema: type: array - items: *681 + items: *679 examples: - default: *682 + default: *680 headers: Link: *59 x-github: @@ -105676,9 +105591,9 @@ paths: application/json: schema: type: array - items: *683 + items: *681 examples: - default: *712 + default: *710 headers: Link: *59 x-github: @@ -105703,7 +105618,7 @@ paths: url: https://docs.github.com/rest/activity/starring#list-repositories-starred-by-a-user parameters: - *64 - - *713 + - *711 - *53 - *17 - *19 @@ -105715,11 +105630,11 @@ paths: schema: anyOf: - type: array - items: *714 + items: *712 - type: array items: *71 examples: - default-response: *686 + default-response: *684 headers: Link: *59 x-github: @@ -105748,9 +105663,9 @@ paths: application/json: schema: type: array - items: *152 + items: *151 examples: - default: *251 + default: *250 headers: Link: *59 x-github: @@ -105878,7 +105793,7 @@ x-webhooks: type: string enum: - disabled - enterprise: &715 + enterprise: &713 title: Enterprise description: |- An enterprise on GitHub. Webhook payloads contain the `enterprise` property when the webhook is configured @@ -105936,7 +105851,7 @@ x-webhooks: - created_at - updated_at - avatar_url - installation: &716 + installation: &714 title: Simple Installation description: |- The GitHub App installation. Webhook payloads contain the `installation` property when the event is configured @@ -105955,7 +105870,7 @@ x-webhooks: required: - id - node_id - organization: &717 + organization: &715 title: Organization Simple description: |- A GitHub organization. Webhook payloads contain the `organization` property when the webhook is configured for an @@ -106015,13 +105930,13 @@ x-webhooks: - public_members_url - avatar_url - description - repository: &718 + repository: &716 title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: &748 + properties: &746 id: description: Unique identifier of the repository example: 42 @@ -106704,7 +106619,7 @@ x-webhooks: type: boolean description: Whether anonymous git access is enabled for this repository - required: &749 + required: &747 - archive_url - assignees_url - blobs_url @@ -106855,10 +106770,10 @@ x-webhooks: type: string enum: - enabled - enterprise: *715 - installation: *716 - organization: *717 - repository: *718 + enterprise: *713 + installation: *714 + organization: *715 + repository: *716 sender: *4 required: - action @@ -106934,11 +106849,11 @@ x-webhooks: type: string enum: - created - enterprise: *715 - installation: *716 - organization: *717 - repository: *718 - rule: &719 + enterprise: *713 + installation: *714 + organization: *715 + repository: *716 + rule: &717 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) @@ -107161,11 +107076,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *715 - installation: *716 - organization: *717 - repository: *718 - rule: *719 + enterprise: *713 + installation: *714 + organization: *715 + repository: *716 + rule: *717 sender: *4 required: - action @@ -107348,11 +107263,11 @@ x-webhooks: - everyone required: - from - enterprise: *715 - installation: *716 - organization: *717 - repository: *718 - rule: *719 + enterprise: *713 + installation: *714 + organization: *715 + repository: *716 + rule: *717 sender: *4 required: - action @@ -107436,7 +107351,7 @@ x-webhooks: type: string enum: - completed - check_run: &721 + check_run: &719 title: CheckRun description: A check performed on the code of a given code change type: object @@ -107490,7 +107405,7 @@ x-webhooks: pull_requests: type: array items: *80 - repository: *152 + repository: *151 status: example: completed type: string @@ -107527,7 +107442,7 @@ x-webhooks: - skipped - timed_out - action_required - deployment: *720 + deployment: *718 details_url: example: https://example.com type: string @@ -107612,10 +107527,10 @@ x-webhooks: - output - app - pull_requests - installation: *716 - enterprise: *715 - organization: *717 - repository: *718 + installation: *714 + enterprise: *713 + organization: *715 + repository: *716 sender: *4 required: - check_run @@ -108008,11 +107923,11 @@ x-webhooks: type: string enum: - created - check_run: *721 - installation: *716 - enterprise: *715 - organization: *717 - repository: *718 + check_run: *719 + installation: *714 + enterprise: *713 + organization: *715 + repository: *716 sender: *4 required: - check_run @@ -108408,11 +108323,11 @@ x-webhooks: type: string enum: - requested_action - check_run: *721 - installation: *716 - enterprise: *715 - organization: *717 - repository: *718 + check_run: *719 + installation: *714 + enterprise: *713 + organization: *715 + repository: *716 requested_action: description: The action requested by the user. type: object @@ -108817,11 +108732,11 @@ x-webhooks: type: string enum: - rerequested - check_run: *721 - installation: *716 - enterprise: *715 - organization: *717 - repository: *718 + check_run: *719 + installation: *714 + enterprise: *713 + organization: *715 + repository: *716 sender: *4 required: - check_run @@ -109798,10 +109713,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *715 - installation: *716 - organization: *717 - repository: *718 + enterprise: *713 + installation: *714 + organization: *715 + repository: *716 sender: *4 required: - action @@ -110495,10 +110410,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *715 - installation: *716 - organization: *717 - repository: *718 + enterprise: *713 + installation: *714 + organization: *715 + repository: *716 sender: *4 required: - action @@ -111186,10 +111101,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *715 - installation: *716 - organization: *717 - repository: *718 + enterprise: *713 + installation: *714 + organization: *715 + repository: *716 sender: *4 required: - action @@ -111500,20 +111415,20 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: &722 + commit_oid: &720 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: *715 - installation: *716 - organization: *717 - ref: &723 + enterprise: *713 + installation: *714 + organization: *715 + ref: &721 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: *718 + repository: *716 sender: *4 required: - action @@ -111908,12 +111823,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *722 - enterprise: *715 - installation: *716 - organization: *717 - ref: *723 - repository: *718 + commit_oid: *720 + enterprise: *713 + installation: *714 + organization: *715 + ref: *721 + repository: *716 sender: *4 required: - action @@ -112179,12 +112094,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *722 - enterprise: *715 - installation: *716 - organization: *717 - ref: *723 - repository: *718 + commit_oid: *720 + enterprise: *713 + installation: *714 + organization: *715 + ref: *721 + repository: *716 sender: *4 required: - action @@ -112516,12 +112431,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *722 - enterprise: *715 - installation: *716 - organization: *717 - ref: *723 - repository: *718 + commit_oid: *720 + enterprise: *713 + installation: *714 + organization: *715 + ref: *721 + repository: *716 sender: *4 required: - action @@ -112795,16 +112710,16 @@ x-webhooks: triggered by the `sender` and this value will be empty. type: string nullable: true - enterprise: *715 - installation: *716 - organization: *717 + enterprise: *713 + installation: *714 + organization: *715 ref: description: The Git reference of the code scanning alert. When the action is `reopened_by_user` or `closed_by_user`, the event was triggered by the `sender` and this value will be empty. type: string nullable: true - repository: *718 + repository: *716 sender: *4 required: - action @@ -113041,12 +112956,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *722 - enterprise: *715 - installation: *716 - organization: *717 - ref: *723 - repository: *718 + commit_oid: *720 + enterprise: *713 + installation: *714 + organization: *715 + ref: *721 + repository: *716 sender: *4 required: - action @@ -113357,10 +113272,10 @@ x-webhooks: - dismissed_reason - rule - tool - enterprise: *715 - installation: *716 - organization: *717 - repository: *718 + enterprise: *713 + installation: *714 + organization: *715 + repository: *716 sender: *4 required: - action @@ -113615,10 +113530,10 @@ x-webhooks: - updated_at - author_association - body - enterprise: *715 - installation: *716 - organization: *717 - repository: *718 + enterprise: *713 + installation: *714 + organization: *715 + repository: *716 sender: *4 required: - action @@ -113698,18 +113613,18 @@ x-webhooks: description: The repository's current description. type: string nullable: true - enterprise: *715 - installation: *716 + enterprise: *713 + installation: *714 master_branch: description: The name of the repository's default branch (usually `main`). type: string - organization: *717 - pusher_type: &724 + organization: *715 + pusher_type: &722 description: The pusher type for the event. Can be either `user` or a deploy key. type: string - ref: &725 + ref: &723 description: The [`git ref`](https://docs.github.com/rest/git/refs#get-a-reference) resource. type: string @@ -113719,7 +113634,7 @@ x-webhooks: enum: - tag - branch - repository: *718 + repository: *716 sender: *4 required: - ref @@ -113801,10 +113716,10 @@ x-webhooks: type: string enum: - created - definition: *274 - enterprise: *715 - installation: *716 - organization: *717 + definition: *273 + enterprise: *713 + installation: *714 + organization: *715 sender: *4 required: - action @@ -113889,9 +113804,9 @@ x-webhooks: description: The name of the property that was deleted. required: - property_name - enterprise: *715 - installation: *716 - organization: *717 + enterprise: *713 + installation: *714 + organization: *715 sender: *4 required: - action @@ -113968,10 +113883,10 @@ x-webhooks: type: string enum: - promote_to_enterprise - definition: *274 - enterprise: *715 - installation: *716 - organization: *717 + definition: *273 + enterprise: *713 + installation: *714 + organization: *715 sender: *4 required: - action @@ -114048,10 +113963,10 @@ x-webhooks: type: string enum: - updated - definition: *274 - enterprise: *715 - installation: *716 - organization: *717 + definition: *273 + enterprise: *713 + installation: *714 + organization: *715 sender: *4 required: - action @@ -114128,19 +114043,19 @@ x-webhooks: type: string enum: - updated - enterprise: *715 - installation: *716 - repository: *718 - organization: *717 + enterprise: *713 + installation: *714 + repository: *716 + organization: *715 sender: *4 new_property_values: type: array description: The new custom property values for the repository. - items: *111 + items: *277 old_property_values: type: array description: The old custom property values for the repository. - items: *111 + items: *277 required: - action - repository @@ -114216,18 +114131,18 @@ x-webhooks: title: delete event type: object properties: - enterprise: *715 - installation: *716 - organization: *717 - pusher_type: *724 - ref: *725 + enterprise: *713 + installation: *714 + organization: *715 + pusher_type: *722 + ref: *723 ref_type: description: The type of Git ref object deleted in the repository. type: string enum: - tag - branch - repository: *718 + repository: *716 sender: *4 required: - ref @@ -114312,10 +114227,10 @@ x-webhooks: enum: - auto_dismissed alert: *479 - installation: *716 - organization: *717 - enterprise: *715 - repository: *718 + installation: *714 + organization: *715 + enterprise: *713 + repository: *716 sender: *4 required: - action @@ -114400,10 +114315,10 @@ x-webhooks: enum: - auto_reopened alert: *479 - installation: *716 - organization: *717 - enterprise: *715 - repository: *718 + installation: *714 + organization: *715 + enterprise: *713 + repository: *716 sender: *4 required: - action @@ -114488,10 +114403,10 @@ x-webhooks: enum: - created alert: *479 - installation: *716 - organization: *717 - enterprise: *715 - repository: *718 + installation: *714 + organization: *715 + enterprise: *713 + repository: *716 sender: *4 required: - action @@ -114574,10 +114489,10 @@ x-webhooks: enum: - dismissed alert: *479 - installation: *716 - organization: *717 - enterprise: *715 - repository: *718 + installation: *714 + organization: *715 + enterprise: *713 + repository: *716 sender: *4 required: - action @@ -114660,10 +114575,10 @@ x-webhooks: enum: - fixed alert: *479 - installation: *716 - organization: *717 - enterprise: *715 - repository: *718 + installation: *714 + organization: *715 + enterprise: *713 + repository: *716 sender: *4 required: - action @@ -114747,10 +114662,10 @@ x-webhooks: enum: - reintroduced alert: *479 - installation: *716 - organization: *717 - enterprise: *715 - repository: *718 + installation: *714 + organization: *715 + enterprise: *713 + repository: *716 sender: *4 required: - action @@ -114833,10 +114748,10 @@ x-webhooks: enum: - reopened alert: *479 - installation: *716 - organization: *717 - enterprise: *715 - repository: *718 + installation: *714 + organization: *715 + enterprise: *713 + repository: *716 sender: *4 required: - action @@ -114913,9 +114828,9 @@ x-webhooks: type: string enum: - created - enterprise: *715 - installation: *716 - key: &726 + enterprise: *713 + installation: *714 + key: &724 description: The [`deploy key`](https://docs.github.com/rest/deploy-keys/deploy-keys#get-a-deploy-key) resource. type: object @@ -114951,8 +114866,8 @@ x-webhooks: - verified - created_at - read_only - organization: *717 - repository: *718 + organization: *715 + repository: *716 sender: *4 required: - action @@ -115029,11 +114944,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *715 - installation: *716 - key: *726 - organization: *717 - repository: *718 + enterprise: *713 + installation: *714 + key: *724 + organization: *715 + repository: *716 sender: *4 required: - action @@ -115594,12 +115509,12 @@ x-webhooks: - updated_at - statuses_url - repository_url - enterprise: *715 - installation: *716 - organization: *717 - repository: *718 + enterprise: *713 + installation: *714 + organization: *715 + repository: *716 sender: *4 - workflow: &730 + workflow: &728 title: Workflow type: object nullable: true @@ -116328,10 +116243,10 @@ x-webhooks: deployment: *485 pull_requests: type: array - items: *573 - repository: *718 - organization: *717 - installation: *716 + items: *571 + repository: *716 + organization: *715 + installation: *714 sender: *4 responses: '200': @@ -116402,7 +116317,7 @@ x-webhooks: type: string enum: - approved - approver: &727 + approver: &725 type: object properties: avatar_url: @@ -116445,11 +116360,11 @@ x-webhooks: type: string comment: type: string - enterprise: *715 - installation: *716 - organization: *717 - repository: *718 - reviewers: &728 + enterprise: *713 + installation: *714 + organization: *715 + repository: *716 + reviewers: &726 type: array items: type: object @@ -116528,7 +116443,7 @@ x-webhooks: sender: *4 since: type: string - workflow_job_run: &729 + workflow_job_run: &727 type: object properties: conclusion: @@ -117259,18 +117174,18 @@ x-webhooks: type: string enum: - rejected - approver: *727 + approver: *725 comment: type: string - enterprise: *715 - installation: *716 - organization: *717 - repository: *718 - reviewers: *728 + enterprise: *713 + installation: *714 + organization: *715 + repository: *716 + reviewers: *726 sender: *4 since: type: string - workflow_job_run: *729 + workflow_job_run: *727 workflow_job_runs: type: array items: @@ -117974,13 +117889,13 @@ x-webhooks: type: string enum: - requested - enterprise: *715 + enterprise: *713 environment: type: string - installation: *716 - organization: *717 - repository: *718 - requestor: &735 + installation: *714 + organization: *715 + repository: *716 + requestor: &733 title: User type: object nullable: true @@ -119879,12 +119794,12 @@ x-webhooks: - updated_at - deployment_url - repository_url - enterprise: *715 - installation: *716 - organization: *717 - repository: *718 + enterprise: *713 + installation: *714 + organization: *715 + repository: *716 sender: *4 - workflow: *730 + workflow: *728 workflow_run: title: Deployment Workflow Run type: object @@ -120564,7 +120479,7 @@ x-webhooks: type: string enum: - answered - answer: &733 + answer: &731 type: object properties: author_association: @@ -120721,11 +120636,11 @@ x-webhooks: - created_at - updated_at - body - discussion: *731 - enterprise: *715 - installation: *716 - organization: *717 - repository: *718 + discussion: *729 + enterprise: *713 + installation: *714 + organization: *715 + repository: *716 sender: *4 required: - action @@ -120852,11 +120767,11 @@ x-webhooks: - from required: - category - discussion: *731 - enterprise: *715 - installation: *716 - organization: *717 - repository: *718 + discussion: *729 + enterprise: *713 + installation: *714 + organization: *715 + repository: *716 sender: *4 required: - action @@ -120939,11 +120854,11 @@ x-webhooks: type: string enum: - closed - discussion: *731 - enterprise: *715 - installation: *716 - organization: *717 - repository: *718 + discussion: *729 + enterprise: *713 + installation: *714 + organization: *715 + repository: *716 sender: *4 required: - action @@ -121025,7 +120940,7 @@ x-webhooks: type: string enum: - created - comment: &732 + comment: &730 type: object properties: author_association: @@ -121182,11 +121097,11 @@ x-webhooks: - updated_at - body - reactions - discussion: *731 - enterprise: *715 - installation: *716 - organization: *717 - repository: *718 + discussion: *729 + enterprise: *713 + installation: *714 + organization: *715 + repository: *716 sender: *4 required: - action @@ -121269,12 +121184,12 @@ x-webhooks: type: string enum: - deleted - comment: *732 - discussion: *731 - enterprise: *715 - installation: *716 - organization: *717 - repository: *718 + comment: *730 + discussion: *729 + enterprise: *713 + installation: *714 + organization: *715 + repository: *716 sender: *4 required: - action @@ -121369,12 +121284,12 @@ x-webhooks: - from required: - body - comment: *732 - discussion: *731 - enterprise: *715 - installation: *716 - organization: *717 - repository: *718 + comment: *730 + discussion: *729 + enterprise: *713 + installation: *714 + organization: *715 + repository: *716 sender: *4 required: - action @@ -121458,11 +121373,11 @@ x-webhooks: type: string enum: - created - discussion: *731 - enterprise: *715 - installation: *716 - organization: *717 - repository: *718 + discussion: *729 + enterprise: *713 + installation: *714 + organization: *715 + repository: *716 sender: *4 required: - action @@ -121544,11 +121459,11 @@ x-webhooks: type: string enum: - deleted - discussion: *731 - enterprise: *715 - installation: *716 - organization: *717 - repository: *718 + discussion: *729 + enterprise: *713 + installation: *714 + organization: *715 + repository: *716 sender: *4 required: - action @@ -121648,11 +121563,11 @@ x-webhooks: type: string required: - from - discussion: *731 - enterprise: *715 - installation: *716 - organization: *717 - repository: *718 + discussion: *729 + enterprise: *713 + installation: *714 + organization: *715 + repository: *716 sender: *4 required: - action @@ -121734,10 +121649,10 @@ x-webhooks: type: string enum: - labeled - discussion: *731 - enterprise: *715 - installation: *716 - label: &734 + discussion: *729 + enterprise: *713 + installation: *714 + label: &732 title: Label type: object properties: @@ -121769,8 +121684,8 @@ x-webhooks: - color - default - description - organization: *717 - repository: *718 + organization: *715 + repository: *716 sender: *4 required: - action @@ -121853,11 +121768,11 @@ x-webhooks: type: string enum: - locked - discussion: *731 - enterprise: *715 - installation: *716 - organization: *717 - repository: *718 + discussion: *729 + enterprise: *713 + installation: *714 + organization: *715 + repository: *716 sender: *4 required: - action @@ -121939,11 +121854,11 @@ x-webhooks: type: string enum: - pinned - discussion: *731 - enterprise: *715 - installation: *716 - organization: *717 - repository: *718 + discussion: *729 + enterprise: *713 + installation: *714 + organization: *715 + repository: *716 sender: *4 required: - action @@ -122025,11 +121940,11 @@ x-webhooks: type: string enum: - reopened - discussion: *731 - enterprise: *715 - installation: *716 - organization: *717 - repository: *718 + discussion: *729 + enterprise: *713 + installation: *714 + organization: *715 + repository: *716 sender: *4 required: - action @@ -122114,16 +122029,16 @@ x-webhooks: changes: type: object properties: - new_discussion: *731 - new_repository: *718 + new_discussion: *729 + new_repository: *716 required: - new_discussion - new_repository - discussion: *731 - enterprise: *715 - installation: *716 - organization: *717 - repository: *718 + discussion: *729 + enterprise: *713 + installation: *714 + organization: *715 + repository: *716 sender: *4 required: - action @@ -122206,10 +122121,10 @@ x-webhooks: type: string enum: - unanswered - discussion: *731 - old_answer: *733 - organization: *717 - repository: *718 + discussion: *729 + old_answer: *731 + organization: *715 + repository: *716 sender: *4 required: - action @@ -122291,12 +122206,12 @@ x-webhooks: type: string enum: - unlabeled - discussion: *731 - enterprise: *715 - installation: *716 - label: *734 - organization: *717 - repository: *718 + discussion: *729 + enterprise: *713 + installation: *714 + label: *732 + organization: *715 + repository: *716 sender: *4 required: - action @@ -122379,11 +122294,11 @@ x-webhooks: type: string enum: - unlocked - discussion: *731 - enterprise: *715 - installation: *716 - organization: *717 - repository: *718 + discussion: *729 + enterprise: *713 + installation: *714 + organization: *715 + repository: *716 sender: *4 required: - action @@ -122465,11 +122380,11 @@ x-webhooks: type: string enum: - unpinned - discussion: *731 - enterprise: *715 - installation: *716 - organization: *717 - repository: *718 + discussion: *729 + enterprise: *713 + installation: *714 + organization: *715 + repository: *716 sender: *4 required: - action @@ -122542,7 +122457,7 @@ x-webhooks: description: A user forks a repository. type: object properties: - enterprise: *715 + enterprise: *713 forkee: description: The created [`repository`](https://docs.github.com/rest/repos/repos#get-a-repository) resource. @@ -123202,9 +123117,9 @@ x-webhooks: type: integer watchers_count: type: integer - installation: *716 - organization: *717 - repository: *718 + installation: *714 + organization: *715 + repository: *716 sender: *4 required: - forkee @@ -123350,9 +123265,9 @@ x-webhooks: title: gollum event type: object properties: - enterprise: *715 - installation: *716 - organization: *717 + enterprise: *713 + installation: *714 + organization: *715 pages: description: The pages that were updated. type: array @@ -123389,7 +123304,7 @@ x-webhooks: - action - sha - html_url - repository: *718 + repository: *716 sender: *4 required: - pages @@ -123465,10 +123380,10 @@ x-webhooks: type: string enum: - created - enterprise: *715 + enterprise: *713 installation: *22 - organization: *717 - repositories: &736 + organization: *715 + repositories: &734 description: An array of repository objects that the installation can access. type: array @@ -123494,8 +123409,8 @@ x-webhooks: - name - full_name - private - repository: *718 - requester: *735 + repository: *716 + requester: *733 sender: *4 required: - action @@ -123570,11 +123485,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *715 + enterprise: *713 installation: *22 - organization: *717 - repositories: *736 - repository: *718 + organization: *715 + repositories: *734 + repository: *716 requester: nullable: true sender: *4 @@ -123650,11 +123565,11 @@ x-webhooks: type: string enum: - new_permissions_accepted - enterprise: *715 + enterprise: *713 installation: *22 - organization: *717 - repositories: *736 - repository: *718 + organization: *715 + repositories: *734 + repository: *716 requester: nullable: true sender: *4 @@ -123730,10 +123645,10 @@ x-webhooks: type: string enum: - added - enterprise: *715 + enterprise: *713 installation: *22 - organization: *717 - repositories_added: &737 + organization: *715 + repositories_added: &735 description: An array of repository objects, which were added to the installation. type: array @@ -123779,15 +123694,15 @@ x-webhooks: private: description: Whether the repository is private or public. type: boolean - repository: *718 - repository_selection: &738 + repository: *716 + repository_selection: &736 description: Describe whether all repositories have been selected or there's a selection involved type: string enum: - all - selected - requester: *735 + requester: *733 sender: *4 required: - action @@ -123866,10 +123781,10 @@ x-webhooks: type: string enum: - removed - enterprise: *715 + enterprise: *713 installation: *22 - organization: *717 - repositories_added: *737 + organization: *715 + repositories_added: *735 repositories_removed: description: An array of repository objects, which were removed from the installation. @@ -123896,9 +123811,9 @@ x-webhooks: - name - full_name - private - repository: *718 - repository_selection: *738 - requester: *735 + repository: *716 + repository_selection: *736 + requester: *733 sender: *4 required: - action @@ -123977,11 +123892,11 @@ x-webhooks: type: string enum: - suspend - enterprise: *715 + enterprise: *713 installation: *22 - organization: *717 - repositories: *736 - repository: *718 + organization: *715 + repositories: *734 + repository: *716 requester: nullable: true sender: *4 @@ -124159,10 +124074,10 @@ x-webhooks: type: string required: - from - enterprise: *715 - installation: *716 - organization: *717 - repository: *718 + enterprise: *713 + installation: *714 + organization: *715 + repository: *716 sender: *4 target_type: type: string @@ -124241,11 +124156,11 @@ x-webhooks: type: string enum: - unsuspend - enterprise: *715 + enterprise: *713 installation: *22 - organization: *717 - repositories: *736 - repository: *718 + organization: *715 + repositories: *734 + repository: *716 requester: nullable: true sender: *4 @@ -124497,8 +124412,8 @@ x-webhooks: - performed_via_github_app - body - reactions - enterprise: *715 - installation: *716 + enterprise: *713 + installation: *714 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -125292,8 +125207,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *651 - issue_dependencies_summary: *652 + sub_issues_summary: *649 + issue_dependencies_summary: *650 state: description: State of the issue; either 'open' or 'closed' type: string @@ -125309,7 +125224,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *227 + type: *226 updated_at: type: string format: date-time @@ -125642,8 +125557,8 @@ x-webhooks: - state - locked - assignee - organization: *717 - repository: *718 + organization: *715 + repository: *716 sender: *4 required: - action @@ -125723,7 +125638,7 @@ x-webhooks: type: string enum: - deleted - comment: &739 + comment: &737 title: issue comment description: The [comment](https://docs.github.com/rest/issues/comments#get-an-issue-comment) itself. @@ -125888,8 +125803,8 @@ x-webhooks: - performed_via_github_app - body - reactions - enterprise: *715 - installation: *716 + enterprise: *713 + installation: *714 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -126679,8 +126594,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *651 - issue_dependencies_summary: *652 + sub_issues_summary: *649 + issue_dependencies_summary: *650 state: description: State of the issue; either 'open' or 'closed' type: string @@ -126696,7 +126611,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *227 + type: *226 updated_at: type: string format: date-time @@ -127031,8 +126946,8 @@ x-webhooks: - state - locked - assignee - organization: *717 - repository: *718 + organization: *715 + repository: *716 sender: *4 required: - action @@ -127112,7 +127027,7 @@ x-webhooks: type: string enum: - edited - changes: &768 + changes: &766 description: The changes to the comment. type: object properties: @@ -127124,9 +127039,9 @@ x-webhooks: type: string required: - from - comment: *739 - enterprise: *715 - installation: *716 + comment: *737 + enterprise: *713 + installation: *714 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -127919,8 +127834,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *651 - issue_dependencies_summary: *652 + sub_issues_summary: *649 + issue_dependencies_summary: *650 state: description: State of the issue; either 'open' or 'closed' type: string @@ -127936,7 +127851,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *227 + type: *226 updated_at: type: string format: date-time @@ -128269,8 +128184,8 @@ x-webhooks: - state - locked - assignee - organization: *717 - repository: *718 + organization: *715 + repository: *716 sender: *4 required: - action @@ -128360,9 +128275,9 @@ x-webhooks: type: number blocking_issue: *75 blocking_issue_repo: *71 - installation: *716 - organization: *717 - repository: *718 + installation: *714 + organization: *715 + repository: *716 sender: *4 required: - action @@ -128451,9 +128366,9 @@ x-webhooks: type: number blocking_issue: *75 blocking_issue_repo: *71 - installation: *716 - organization: *717 - repository: *718 + installation: *714 + organization: *715 + repository: *716 sender: *4 required: - action @@ -128541,9 +128456,9 @@ x-webhooks: description: The ID of the blocking issue. type: number blocking_issue: *75 - installation: *716 - organization: *717 - repository: *718 + installation: *714 + organization: *715 + repository: *716 sender: *4 required: - action @@ -128632,9 +128547,9 @@ x-webhooks: description: The ID of the blocking issue. type: number blocking_issue: *75 - installation: *716 - organization: *717 - repository: *718 + installation: *714 + organization: *715 + repository: *716 sender: *4 required: - action @@ -128714,10 +128629,10 @@ x-webhooks: type: string enum: - assigned - assignee: *735 - enterprise: *715 - installation: *716 - issue: &742 + assignee: *733 + enterprise: *713 + installation: *714 + issue: &740 title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -129506,11 +129421,11 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *651 - issue_dependencies_summary: *652 + sub_issues_summary: *649 + issue_dependencies_summary: *650 issue_field_values: type: array - items: *653 + items: *651 state: description: State of the issue; either 'open' or 'closed' type: string @@ -129526,7 +129441,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *227 + type: *226 updated_at: type: string format: date-time @@ -129627,8 +129542,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *717 - repository: *718 + organization: *715 + repository: *716 sender: *4 required: - action @@ -129708,8 +129623,8 @@ x-webhooks: type: string enum: - closed - enterprise: *715 - installation: *716 + enterprise: *713 + installation: *714 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -130503,11 +130418,11 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *651 - issue_dependencies_summary: *652 + sub_issues_summary: *649 + issue_dependencies_summary: *650 issue_field_values: type: array - items: *653 + items: *651 state: description: State of the issue; either 'open' or 'closed' type: string @@ -130523,7 +130438,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *227 + type: *226 updated_at: type: string format: date-time @@ -130759,8 +130674,8 @@ x-webhooks: required: - state - closed_at - organization: *717 - repository: *718 + organization: *715 + repository: *716 sender: *4 required: - action @@ -130839,8 +130754,8 @@ x-webhooks: type: string enum: - deleted - enterprise: *715 - installation: *716 + enterprise: *713 + installation: *714 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -131625,11 +131540,11 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *651 - issue_dependencies_summary: *652 + sub_issues_summary: *649 + issue_dependencies_summary: *650 issue_field_values: type: array - items: *653 + items: *651 state: description: State of the issue; either 'open' or 'closed' type: string @@ -131645,7 +131560,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *227 + type: *226 updated_at: type: string format: date-time @@ -131745,8 +131660,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *717 - repository: *718 + organization: *715 + repository: *716 sender: *4 required: - action @@ -131825,8 +131740,8 @@ x-webhooks: type: string enum: - demilestoned - enterprise: *715 - installation: *716 + enterprise: *713 + installation: *714 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -132633,11 +132548,11 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *651 - issue_dependencies_summary: *652 + sub_issues_summary: *649 + issue_dependencies_summary: *650 issue_field_values: type: array - items: *653 + items: *651 state: description: State of the issue; either 'open' or 'closed' type: string @@ -132653,7 +132568,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *227 + type: *226 updated_at: type: string format: date-time @@ -132732,7 +132647,7 @@ x-webhooks: format: uri user_view_type: type: string - milestone: &740 + milestone: &738 title: Milestone description: A collection of related issues and pull requests. type: object @@ -132870,8 +132785,8 @@ x-webhooks: - updated_at - due_on - closed_at - organization: *717 - repository: *718 + organization: *715 + repository: *716 sender: *4 required: - action @@ -132970,8 +132885,8 @@ x-webhooks: type: string required: - from - enterprise: *715 - installation: *716 + enterprise: *713 + installation: *714 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -133760,11 +133675,11 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *651 - issue_dependencies_summary: *652 + sub_issues_summary: *649 + issue_dependencies_summary: *650 issue_field_values: type: array - items: *653 + items: *651 state: description: State of the issue; either 'open' or 'closed' type: string @@ -133777,7 +133692,7 @@ x-webhooks: timeline_url: type: string format: uri - type: *227 + type: *226 title: description: Title of the issue type: string @@ -133881,9 +133796,9 @@ x-webhooks: - active_lock_reason - body - reactions - label: *734 - organization: *717 - repository: *718 + label: *732 + organization: *715 + repository: *716 sender: *4 required: - action @@ -133963,8 +133878,8 @@ x-webhooks: type: string enum: - labeled - enterprise: *715 - installation: *716 + enterprise: *713 + installation: *714 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -134752,11 +134667,11 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *651 - issue_dependencies_summary: *652 + sub_issues_summary: *649 + issue_dependencies_summary: *650 issue_field_values: type: array - items: *653 + items: *651 state: description: State of the issue; either 'open' or 'closed' type: string @@ -134769,7 +134684,7 @@ x-webhooks: timeline_url: type: string format: uri - type: *227 + type: *226 title: description: Title of the issue type: string @@ -134873,9 +134788,9 @@ x-webhooks: - active_lock_reason - body - reactions - label: *734 - organization: *717 - repository: *718 + label: *732 + organization: *715 + repository: *716 sender: *4 required: - action @@ -134955,8 +134870,8 @@ x-webhooks: type: string enum: - locked - enterprise: *715 - installation: *716 + enterprise: *713 + installation: *714 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -135768,11 +135683,11 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *651 - issue_dependencies_summary: *652 + sub_issues_summary: *649 + issue_dependencies_summary: *650 issue_field_values: type: array - items: *653 + items: *651 state: description: State of the issue; either 'open' or 'closed' type: string @@ -135785,7 +135700,7 @@ x-webhooks: timeline_url: type: string format: uri - type: *227 + type: *226 title: description: Title of the issue type: string @@ -135866,8 +135781,8 @@ x-webhooks: format: uri user_view_type: type: string - organization: *717 - repository: *718 + organization: *715 + repository: *716 sender: *4 required: - action @@ -135946,8 +135861,8 @@ x-webhooks: type: string enum: - milestoned - enterprise: *715 - installation: *716 + enterprise: *713 + installation: *714 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -136753,11 +136668,11 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *651 - issue_dependencies_summary: *652 + sub_issues_summary: *649 + issue_dependencies_summary: *650 issue_field_values: type: array - items: *653 + items: *651 state: description: State of the issue; either 'open' or 'closed' type: string @@ -136773,7 +136688,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *227 + type: *226 updated_at: type: string format: date-time @@ -136851,9 +136766,9 @@ x-webhooks: format: uri user_view_type: type: string - milestone: *740 - organization: *717 - repository: *718 + milestone: *738 + organization: *715 + repository: *716 sender: *4 required: - action @@ -137721,11 +137636,11 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *651 - issue_dependencies_summary: *652 + sub_issues_summary: *649 + issue_dependencies_summary: *650 issue_field_values: type: array - items: *653 + items: *651 state: description: State of the issue; either 'open' or 'closed' type: string @@ -137818,7 +137733,7 @@ x-webhooks: required: - login - id - type: *227 + type: *226 required: - id - number @@ -138287,8 +138202,8 @@ x-webhooks: required: - old_issue - old_repository - enterprise: *715 - installation: *716 + enterprise: *713 + installation: *714 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -139077,11 +138992,11 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *651 - issue_dependencies_summary: *652 + sub_issues_summary: *649 + issue_dependencies_summary: *650 issue_field_values: type: array - items: *653 + items: *651 state: description: State of the issue; either 'open' or 'closed' type: string @@ -139097,7 +139012,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *227 + type: *226 updated_at: type: string format: date-time @@ -139197,8 +139112,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *717 - repository: *718 + organization: *715 + repository: *716 sender: *4 required: - action @@ -139278,9 +139193,9 @@ x-webhooks: type: string enum: - pinned - enterprise: *715 - installation: *716 - issue: &741 + enterprise: *713 + installation: *714 + issue: &739 title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -140063,11 +139978,11 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *651 - issue_dependencies_summary: *652 + sub_issues_summary: *649 + issue_dependencies_summary: *650 issue_field_values: type: array - items: *653 + items: *651 state: description: State of the issue; either 'open' or 'closed' type: string @@ -140083,7 +139998,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *227 + type: *226 updated_at: type: string format: date-time @@ -140183,8 +140098,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *717 - repository: *718 + organization: *715 + repository: *716 sender: *4 required: - action @@ -140263,8 +140178,8 @@ x-webhooks: type: string enum: - reopened - enterprise: *715 - installation: *716 + enterprise: *713 + installation: *714 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -141074,11 +140989,11 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *651 - issue_dependencies_summary: *652 + sub_issues_summary: *649 + issue_dependencies_summary: *650 issue_field_values: type: array - items: *653 + items: *651 state: description: State of the issue; either 'open' or 'closed' type: string @@ -141172,9 +141087,9 @@ x-webhooks: format: uri user_view_type: type: string - type: *227 - organization: *717 - repository: *718 + type: *226 + organization: *715 + repository: *716 sender: *4 required: - action @@ -142040,11 +141955,11 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *651 - issue_dependencies_summary: *652 + sub_issues_summary: *649 + issue_dependencies_summary: *650 issue_field_values: type: array - items: *653 + items: *651 state: description: State of the issue; either 'open' or 'closed' type: string @@ -142060,7 +141975,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *227 + type: *226 updated_at: type: string format: date-time @@ -142628,11 +142543,11 @@ x-webhooks: required: - new_issue - new_repository - enterprise: *715 - installation: *716 - issue: *741 - organization: *717 - repository: *718 + enterprise: *713 + installation: *714 + issue: *739 + organization: *715 + repository: *716 sender: *4 required: - action @@ -142712,12 +142627,12 @@ x-webhooks: type: string enum: - typed - enterprise: *715 - installation: *716 - issue: *742 - type: *227 - organization: *717 - repository: *718 + enterprise: *713 + installation: *714 + issue: *740 + type: *226 + organization: *715 + repository: *716 sender: *4 required: - action @@ -142798,7 +142713,7 @@ x-webhooks: type: string enum: - unassigned - assignee: &771 + assignee: &769 title: User type: object nullable: true @@ -142868,11 +142783,11 @@ x-webhooks: required: - login - id - enterprise: *715 - installation: *716 - issue: *742 - organization: *717 - repository: *718 + enterprise: *713 + installation: *714 + issue: *740 + organization: *715 + repository: *716 sender: *4 required: - action @@ -142951,12 +142866,12 @@ x-webhooks: type: string enum: - unlabeled - enterprise: *715 - installation: *716 - issue: *742 - label: *734 - organization: *717 - repository: *718 + enterprise: *713 + installation: *714 + issue: *740 + label: *732 + organization: *715 + repository: *716 sender: *4 required: - action @@ -143036,8 +142951,8 @@ x-webhooks: type: string enum: - unlocked - enterprise: *715 - installation: *716 + enterprise: *713 + installation: *714 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -143847,11 +143762,11 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *651 - issue_dependencies_summary: *652 + sub_issues_summary: *649 + issue_dependencies_summary: *650 issue_field_values: type: array - items: *653 + items: *651 state: description: State of the issue; either 'open' or 'closed' type: string @@ -143867,7 +143782,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *227 + type: *226 updated_at: type: string format: date-time @@ -143945,8 +143860,8 @@ x-webhooks: format: uri user_view_type: type: string - organization: *717 - repository: *718 + organization: *715 + repository: *716 sender: *4 required: - action @@ -144026,11 +143941,11 @@ x-webhooks: type: string enum: - unpinned - enterprise: *715 - installation: *716 - issue: *741 - organization: *717 - repository: *718 + enterprise: *713 + installation: *714 + issue: *739 + organization: *715 + repository: *716 sender: *4 required: - action @@ -144109,12 +144024,12 @@ x-webhooks: type: string enum: - untyped - enterprise: *715 - installation: *716 - issue: *742 - type: *227 - organization: *717 - repository: *718 + enterprise: *713 + installation: *714 + issue: *740 + type: *226 + organization: *715 + repository: *716 sender: *4 required: - action @@ -144194,11 +144109,11 @@ x-webhooks: type: string enum: - created - enterprise: *715 - installation: *716 - label: *734 - organization: *717 - repository: *718 + enterprise: *713 + installation: *714 + label: *732 + organization: *715 + repository: *716 sender: *4 required: - action @@ -144276,11 +144191,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *715 - installation: *716 - label: *734 - organization: *717 - repository: *718 + enterprise: *713 + installation: *714 + label: *732 + organization: *715 + repository: *716 sender: *4 required: - action @@ -144390,11 +144305,11 @@ x-webhooks: type: string required: - from - enterprise: *715 - installation: *716 - label: *734 - organization: *717 - repository: *718 + enterprise: *713 + installation: *714 + label: *732 + organization: *715 + repository: *716 sender: *4 required: - action @@ -144476,9 +144391,9 @@ x-webhooks: - cancelled effective_date: type: string - enterprise: *715 - installation: *716 - marketplace_purchase: &743 + enterprise: *713 + installation: *714 + marketplace_purchase: &741 title: Marketplace Purchase type: object required: @@ -144561,8 +144476,8 @@ x-webhooks: type: integer unit_count: type: integer - organization: *717 - previous_marketplace_purchase: &744 + organization: *715 + previous_marketplace_purchase: &742 title: Marketplace Purchase type: object properties: @@ -144642,7 +144557,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *718 + repository: *716 sender: *4 required: - action @@ -144722,10 +144637,10 @@ x-webhooks: - changed effective_date: type: string - enterprise: *715 - installation: *716 - marketplace_purchase: *743 - organization: *717 + enterprise: *713 + installation: *714 + marketplace_purchase: *741 + organization: *715 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -144808,7 +144723,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *718 + repository: *716 sender: *4 required: - action @@ -144890,10 +144805,10 @@ x-webhooks: - pending_change effective_date: type: string - enterprise: *715 - installation: *716 - marketplace_purchase: *743 - organization: *717 + enterprise: *713 + installation: *714 + marketplace_purchase: *741 + organization: *715 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -144975,7 +144890,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *718 + repository: *716 sender: *4 required: - action @@ -145056,8 +144971,8 @@ x-webhooks: - pending_change_cancelled effective_date: type: string - enterprise: *715 - installation: *716 + enterprise: *713 + installation: *714 marketplace_purchase: title: Marketplace Purchase type: object @@ -145139,9 +145054,9 @@ x-webhooks: type: integer unit_count: type: integer - organization: *717 - previous_marketplace_purchase: *744 - repository: *718 + organization: *715 + previous_marketplace_purchase: *742 + repository: *716 sender: *4 required: - action @@ -145221,12 +145136,12 @@ x-webhooks: - purchased effective_date: type: string - enterprise: *715 - installation: *716 - marketplace_purchase: *743 - organization: *717 - previous_marketplace_purchase: *744 - repository: *718 + enterprise: *713 + installation: *714 + marketplace_purchase: *741 + organization: *715 + previous_marketplace_purchase: *742 + repository: *716 sender: *4 required: - action @@ -145328,11 +145243,11 @@ x-webhooks: type: string required: - to - enterprise: *715 - installation: *716 - member: *735 - organization: *717 - repository: *718 + enterprise: *713 + installation: *714 + member: *733 + organization: *715 + repository: *716 sender: *4 required: - action @@ -145432,11 +145347,11 @@ x-webhooks: to: type: string nullable: true - enterprise: *715 - installation: *716 - member: *735 - organization: *717 - repository: *718 + enterprise: *713 + installation: *714 + member: *733 + organization: *715 + repository: *716 sender: *4 required: - action @@ -145515,11 +145430,11 @@ x-webhooks: type: string enum: - removed - enterprise: *715 - installation: *716 - member: *735 - organization: *717 - repository: *718 + enterprise: *713 + installation: *714 + member: *733 + organization: *715 + repository: *716 sender: *4 required: - action @@ -145597,11 +145512,11 @@ x-webhooks: type: string enum: - added - enterprise: *715 - installation: *716 - member: *735 - organization: *717 - repository: *718 + enterprise: *713 + installation: *714 + member: *733 + organization: *715 + repository: *716 scope: description: The scope of the membership. Currently, can only be `team`. @@ -145677,7 +145592,7 @@ x-webhooks: required: - login - id - team: &745 + team: &743 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -145900,11 +145815,11 @@ x-webhooks: type: string enum: - removed - enterprise: *715 - installation: *716 - member: *735 - organization: *717 - repository: *718 + enterprise: *713 + installation: *714 + member: *733 + organization: *715 + repository: *716 scope: description: The scope of the membership. Currently, can only be `team`. @@ -145981,7 +145896,7 @@ x-webhooks: required: - login - id - team: *745 + team: *743 required: - action - scope @@ -146063,8 +145978,8 @@ x-webhooks: type: string enum: - checks_requested - installation: *716 - merge_group: &747 + installation: *714 + merge_group: &745 type: object title: Merge Group description: A group of pull requests that the merge queue has grouped @@ -146083,15 +145998,15 @@ x-webhooks: description: The full ref of the branch the merge group will be merged into. type: string - head_commit: *746 + head_commit: *744 required: - head_sha - head_ref - base_sha - base_ref - head_commit - organization: *717 - repository: *718 + organization: *715 + repository: *716 sender: *4 required: - action @@ -146177,10 +146092,10 @@ x-webhooks: - merged - invalidated - dequeued - installation: *716 - merge_group: *747 - organization: *717 - repository: *718 + installation: *714 + merge_group: *745 + organization: *715 + repository: *716 sender: *4 required: - action @@ -146253,7 +146168,7 @@ x-webhooks: type: string enum: - deleted - enterprise: *715 + enterprise: *713 hook: description: 'The deleted webhook. This will contain different keys based on the type of webhook it is: repository, organization, @@ -146362,16 +146277,16 @@ x-webhooks: hook_id: description: The id of the modified webhook. type: integer - installation: *716 - organization: *717 + installation: *714 + organization: *715 repository: title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *748 - required: *749 + properties: *746 + required: *747 nullable: true sender: *4 required: @@ -146452,11 +146367,11 @@ x-webhooks: type: string enum: - closed - enterprise: *715 - installation: *716 - milestone: *740 - organization: *717 - repository: *718 + enterprise: *713 + installation: *714 + milestone: *738 + organization: *715 + repository: *716 sender: *4 required: - action @@ -146535,9 +146450,9 @@ x-webhooks: type: string enum: - created - enterprise: *715 - installation: *716 - milestone: &750 + enterprise: *713 + installation: *714 + milestone: &748 title: Milestone description: A collection of related issues and pull requests. type: object @@ -146674,8 +146589,8 @@ x-webhooks: - updated_at - due_on - closed_at - organization: *717 - repository: *718 + organization: *715 + repository: *716 sender: *4 required: - action @@ -146754,11 +146669,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *715 - installation: *716 - milestone: *740 - organization: *717 - repository: *718 + enterprise: *713 + installation: *714 + milestone: *738 + organization: *715 + repository: *716 sender: *4 required: - action @@ -146868,11 +146783,11 @@ x-webhooks: type: string required: - from - enterprise: *715 - installation: *716 - milestone: *740 - organization: *717 - repository: *718 + enterprise: *713 + installation: *714 + milestone: *738 + organization: *715 + repository: *716 sender: *4 required: - action @@ -146952,11 +146867,11 @@ x-webhooks: type: string enum: - opened - enterprise: *715 - installation: *716 - milestone: *750 - organization: *717 - repository: *718 + enterprise: *713 + installation: *714 + milestone: *748 + organization: *715 + repository: *716 sender: *4 required: - action @@ -147035,11 +146950,11 @@ x-webhooks: type: string enum: - blocked - blocked_user: *735 - enterprise: *715 - installation: *716 - organization: *717 - repository: *718 + blocked_user: *733 + enterprise: *713 + installation: *714 + organization: *715 + repository: *716 sender: *4 required: - action @@ -147118,11 +147033,11 @@ x-webhooks: type: string enum: - unblocked - blocked_user: *735 - enterprise: *715 - installation: *716 - organization: *717 - repository: *718 + blocked_user: *733 + enterprise: *713 + installation: *714 + organization: *715 + repository: *716 sender: *4 required: - action @@ -147201,9 +147116,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *715 - installation: *716 - membership: &751 + enterprise: *713 + installation: *714 + membership: &749 title: Membership description: The membership between the user and the organization. Not present when the action is `member_invited`. @@ -147310,8 +147225,8 @@ x-webhooks: - role - organization_url - user - organization: *717 - repository: *718 + organization: *715 + repository: *716 sender: *4 required: - action @@ -147389,11 +147304,11 @@ x-webhooks: type: string enum: - member_added - enterprise: *715 - installation: *716 - membership: *751 - organization: *717 - repository: *718 + enterprise: *713 + installation: *714 + membership: *749 + organization: *715 + repository: *716 sender: *4 required: - action @@ -147472,8 +147387,8 @@ x-webhooks: type: string enum: - member_invited - enterprise: *715 - installation: *716 + enterprise: *713 + installation: *714 invitation: description: The invitation for the user or email if the action is `member_invited`. @@ -147589,10 +147504,10 @@ x-webhooks: - inviter - team_count - invitation_teams_url - organization: *717 - repository: *718 + organization: *715 + repository: *716 sender: *4 - user: *735 + user: *733 required: - action - invitation @@ -147670,11 +147585,11 @@ x-webhooks: type: string enum: - member_removed - enterprise: *715 - installation: *716 - membership: *751 - organization: *717 - repository: *718 + enterprise: *713 + installation: *714 + membership: *749 + organization: *715 + repository: *716 sender: *4 required: - action @@ -147761,11 +147676,11 @@ x-webhooks: properties: from: type: string - enterprise: *715 - installation: *716 - membership: *751 - organization: *717 - repository: *718 + enterprise: *713 + installation: *714 + membership: *749 + organization: *715 + repository: *716 sender: *4 required: - action @@ -147841,9 +147756,9 @@ x-webhooks: type: string enum: - published - enterprise: *715 - installation: *716 - organization: *717 + enterprise: *713 + installation: *714 + organization: *715 package: description: Information about the package. type: object @@ -148342,7 +148257,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: &752 + items: &750 title: Ruby Gems metadata type: object properties: @@ -148437,7 +148352,7 @@ x-webhooks: - owner - package_version - registry - repository: *718 + repository: *716 sender: *4 required: - action @@ -148513,9 +148428,9 @@ x-webhooks: type: string enum: - updated - enterprise: *715 - installation: *716 - organization: *717 + enterprise: *713 + installation: *714 + organization: *715 package: description: Information about the package. type: object @@ -148868,7 +148783,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: *752 + items: *750 source_url: type: string format: uri @@ -148938,7 +148853,7 @@ x-webhooks: - owner - package_version - registry - repository: *718 + repository: *716 sender: *4 required: - action @@ -149115,12 +149030,12 @@ x-webhooks: - duration - created_at - updated_at - enterprise: *715 + enterprise: *713 id: type: integer - installation: *716 - organization: *717 - repository: *718 + installation: *714 + organization: *715 + repository: *716 sender: *4 required: - id @@ -149197,7 +149112,7 @@ x-webhooks: type: string enum: - approved - personal_access_token_request: &753 + personal_access_token_request: &751 title: Personal Access Token Request description: Details of a Personal Access Token Request. type: object @@ -149343,10 +149258,10 @@ x-webhooks: - token_expired - token_expires_at - token_last_used_at - enterprise: *715 - organization: *717 + enterprise: *713 + organization: *715 sender: *4 - installation: *716 + installation: *714 required: - action - personal_access_token_request @@ -149423,11 +149338,11 @@ x-webhooks: type: string enum: - cancelled - personal_access_token_request: *753 - enterprise: *715 - organization: *717 + personal_access_token_request: *751 + enterprise: *713 + organization: *715 sender: *4 - installation: *716 + installation: *714 required: - action - personal_access_token_request @@ -149503,11 +149418,11 @@ x-webhooks: type: string enum: - created - personal_access_token_request: *753 - enterprise: *715 - organization: *717 + personal_access_token_request: *751 + enterprise: *713 + organization: *715 sender: *4 - installation: *716 + installation: *714 required: - action - personal_access_token_request @@ -149582,11 +149497,11 @@ x-webhooks: type: string enum: - denied - personal_access_token_request: *753 - organization: *717 - enterprise: *715 + personal_access_token_request: *751 + organization: *715 + enterprise: *713 sender: *4 - installation: *716 + installation: *714 required: - action - personal_access_token_request @@ -149691,7 +149606,7 @@ x-webhooks: id: description: Unique identifier of the webhook. type: integer - last_response: *754 + last_response: *752 name: description: The type of webhook. The only valid value is 'web'. type: string @@ -149723,8 +149638,8 @@ x-webhooks: hook_id: description: The ID of the webhook that triggered the ping. type: integer - organization: *717 - repository: *718 + organization: *715 + repository: *716 sender: *4 zen: description: Random string of GitHub zen. @@ -149969,10 +149884,10 @@ x-webhooks: - from required: - note - enterprise: *715 - installation: *716 - organization: *717 - project_card: &755 + enterprise: *713 + installation: *714 + organization: *715 + project_card: &753 title: Project Card type: object properties: @@ -150091,7 +150006,7 @@ x-webhooks: - creator - created_at - updated_at - repository: *718 + repository: *716 sender: *4 required: - action @@ -150172,11 +150087,11 @@ x-webhooks: type: string enum: - created - enterprise: *715 - installation: *716 - organization: *717 - project_card: *755 - repository: *718 + enterprise: *713 + installation: *714 + organization: *715 + project_card: *753 + repository: *716 sender: *4 required: - action @@ -150256,9 +150171,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *715 - installation: *716 - organization: *717 + enterprise: *713 + installation: *714 + organization: *715 project_card: title: Project Card type: object @@ -150386,8 +150301,8 @@ x-webhooks: The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *748 - required: *749 + properties: *746 + required: *747 nullable: true sender: *4 required: @@ -150481,11 +150396,11 @@ x-webhooks: - from required: - note - enterprise: *715 - installation: *716 - organization: *717 - project_card: *755 - repository: *718 + enterprise: *713 + installation: *714 + organization: *715 + project_card: *753 + repository: *716 sender: *4 required: - action @@ -150579,9 +150494,9 @@ x-webhooks: - from required: - column_id - enterprise: *715 - installation: *716 - organization: *717 + enterprise: *713 + installation: *714 + organization: *715 project_card: allOf: - title: Project Card @@ -150771,7 +150686,7 @@ x-webhooks: type: string required: - after_id - repository: *718 + repository: *716 sender: *4 required: - action @@ -150851,10 +150766,10 @@ x-webhooks: type: string enum: - closed - enterprise: *715 - installation: *716 - organization: *717 - project: &757 + enterprise: *713 + installation: *714 + organization: *715 + project: &755 title: Project type: object properties: @@ -150978,7 +150893,7 @@ x-webhooks: - creator - created_at - updated_at - repository: *718 + repository: *716 sender: *4 required: - action @@ -151058,10 +150973,10 @@ x-webhooks: type: string enum: - created - enterprise: *715 - installation: *716 - organization: *717 - project_column: &756 + enterprise: *713 + installation: *714 + organization: *715 + project_column: &754 title: Project Column type: object properties: @@ -151100,7 +151015,7 @@ x-webhooks: - name - created_at - updated_at - repository: *718 + repository: *716 sender: *4 required: - action @@ -151179,18 +151094,18 @@ x-webhooks: type: string enum: - deleted - enterprise: *715 - installation: *716 - organization: *717 - project_column: *756 + enterprise: *713 + installation: *714 + organization: *715 + project_column: *754 repository: title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *748 - required: *749 + properties: *746 + required: *747 nullable: true sender: *4 required: @@ -151280,11 +151195,11 @@ x-webhooks: type: string required: - from - enterprise: *715 - installation: *716 - organization: *717 - project_column: *756 - repository: *718 + enterprise: *713 + installation: *714 + organization: *715 + project_column: *754 + repository: *716 sender: *4 required: - action @@ -151364,11 +151279,11 @@ x-webhooks: type: string enum: - moved - enterprise: *715 - installation: *716 - organization: *717 - project_column: *756 - repository: *718 + enterprise: *713 + installation: *714 + organization: *715 + project_column: *754 + repository: *716 sender: *4 required: - action @@ -151448,11 +151363,11 @@ x-webhooks: type: string enum: - created - enterprise: *715 - installation: *716 - organization: *717 - project: *757 - repository: *718 + enterprise: *713 + installation: *714 + organization: *715 + project: *755 + repository: *716 sender: *4 required: - action @@ -151532,18 +151447,18 @@ x-webhooks: type: string enum: - deleted - enterprise: *715 - installation: *716 - organization: *717 - project: *757 + enterprise: *713 + installation: *714 + organization: *715 + project: *755 repository: title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *748 - required: *749 + properties: *746 + required: *747 nullable: true sender: *4 required: @@ -151645,11 +151560,11 @@ x-webhooks: type: string required: - from - enterprise: *715 - installation: *716 - organization: *717 - project: *757 - repository: *718 + enterprise: *713 + installation: *714 + organization: *715 + project: *755 + repository: *716 sender: *4 required: - action @@ -151728,11 +151643,11 @@ x-webhooks: type: string enum: - reopened - enterprise: *715 - installation: *716 - organization: *717 - project: *757 - repository: *718 + enterprise: *713 + installation: *714 + organization: *715 + project: *755 + repository: *716 sender: *4 required: - action @@ -151813,9 +151728,9 @@ x-webhooks: type: string enum: - closed - installation: *716 - organization: *717 - projects_v2: *261 + installation: *714 + organization: *715 + projects_v2: *260 sender: *4 required: - action @@ -151896,9 +151811,9 @@ x-webhooks: type: string enum: - created - installation: *716 - organization: *717 - projects_v2: *261 + installation: *714 + organization: *715 + projects_v2: *260 sender: *4 required: - action @@ -151979,9 +151894,9 @@ x-webhooks: type: string enum: - deleted - installation: *716 - organization: *717 - projects_v2: *261 + installation: *714 + organization: *715 + projects_v2: *260 sender: *4 required: - action @@ -152098,9 +152013,9 @@ x-webhooks: type: string to: type: string - installation: *716 - organization: *717 - projects_v2: *261 + installation: *714 + organization: *715 + projects_v2: *260 sender: *4 required: - action @@ -152183,7 +152098,7 @@ x-webhooks: type: string enum: - archived - changes: &761 + changes: &759 type: object properties: archived_at: @@ -152197,9 +152112,9 @@ x-webhooks: type: string nullable: true format: date-time - installation: *716 - organization: *717 - projects_v2_item: &758 + installation: *714 + organization: *715 + projects_v2_item: &756 title: Projects v2 Item description: An item belonging to a project type: object @@ -152217,7 +152132,7 @@ x-webhooks: type: string description: The node ID of the content represented by this item. - content_type: *268 + content_type: *267 creator: *4 created_at: type: string @@ -152334,9 +152249,9 @@ x-webhooks: nullable: true to: type: string - installation: *716 - organization: *717 - projects_v2_item: *758 + installation: *714 + organization: *715 + projects_v2_item: *756 sender: *4 required: - action @@ -152418,9 +152333,9 @@ x-webhooks: type: string enum: - created - installation: *716 - organization: *717 - projects_v2_item: *758 + installation: *714 + organization: *715 + projects_v2_item: *756 sender: *4 required: - action @@ -152501,9 +152416,9 @@ x-webhooks: type: string enum: - deleted - installation: *716 - organization: *717 - projects_v2_item: *758 + installation: *714 + organization: *715 + projects_v2_item: *756 sender: *4 required: - action @@ -152609,7 +152524,7 @@ x-webhooks: oneOf: - type: string - type: integer - - &759 + - &757 title: Projects v2 Single Select Option description: An option for a single select field type: object @@ -152631,7 +152546,7 @@ x-webhooks: required: - id - name - - &760 + - &758 title: Projects v2 Iteration Setting description: An iteration setting for an iteration field type: object @@ -152665,8 +152580,8 @@ x-webhooks: oneOf: - type: string - type: integer - - *759 - - *760 + - *757 + - *758 required: - field_value - type: object @@ -152682,9 +152597,9 @@ x-webhooks: nullable: true required: - body - installation: *716 - organization: *717 - projects_v2_item: *758 + installation: *714 + organization: *715 + projects_v2_item: *756 sender: *4 required: - action @@ -152779,9 +152694,9 @@ x-webhooks: to: type: string nullable: true - installation: *716 - organization: *717 - projects_v2_item: *758 + installation: *714 + organization: *715 + projects_v2_item: *756 sender: *4 required: - action @@ -152864,10 +152779,10 @@ x-webhooks: type: string enum: - restored - changes: *761 - installation: *716 - organization: *717 - projects_v2_item: *758 + changes: *759 + installation: *714 + organization: *715 + projects_v2_item: *756 sender: *4 required: - action @@ -152949,9 +152864,9 @@ x-webhooks: type: string enum: - reopened - installation: *716 - organization: *717 - projects_v2: *261 + installation: *714 + organization: *715 + projects_v2: *260 sender: *4 required: - action @@ -153032,14 +152947,14 @@ x-webhooks: type: string enum: - created - installation: *716 - organization: *717 - projects_v2_status_update: &764 + installation: *714 + organization: *715 + projects_v2_status_update: &762 title: Projects v2 Status Update description: An status update belonging to a project type: object - properties: *762 - required: *763 + properties: *760 + required: *761 sender: *4 required: - action @@ -153120,9 +153035,9 @@ x-webhooks: type: string enum: - deleted - installation: *716 - organization: *717 - projects_v2_status_update: *764 + installation: *714 + organization: *715 + projects_v2_status_update: *762 sender: *4 required: - action @@ -153258,9 +153173,9 @@ x-webhooks: type: string format: date nullable: true - installation: *716 - organization: *717 - projects_v2_status_update: *764 + installation: *714 + organization: *715 + projects_v2_status_update: *762 sender: *4 required: - action @@ -153331,10 +153246,10 @@ x-webhooks: title: public event type: object properties: - enterprise: *715 - installation: *716 - organization: *717 - repository: *718 + enterprise: *713 + installation: *714 + organization: *715 + repository: *716 sender: *4 required: - repository @@ -153411,13 +153326,13 @@ x-webhooks: type: string enum: - assigned - assignee: *735 - enterprise: *715 - installation: *716 - number: &765 + assignee: *733 + enterprise: *713 + installation: *714 + number: &763 description: The pull request number. type: integer - organization: *717 + organization: *715 pull_request: title: Pull Request type: object @@ -155700,7 +155615,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *718 + repository: *716 sender: *4 required: - action @@ -155782,11 +155697,11 @@ x-webhooks: type: string enum: - auto_merge_disabled - enterprise: *715 - installation: *716 + enterprise: *713 + installation: *714 number: type: integer - organization: *717 + organization: *715 pull_request: title: Pull Request type: object @@ -158064,7 +157979,7 @@ x-webhooks: - draft reason: type: string - repository: *718 + repository: *716 sender: *4 required: - action @@ -158146,11 +158061,11 @@ x-webhooks: type: string enum: - auto_merge_enabled - enterprise: *715 - installation: *716 + enterprise: *713 + installation: *714 number: type: integer - organization: *717 + organization: *715 pull_request: title: Pull Request type: object @@ -160428,7 +160343,7 @@ x-webhooks: - draft reason: type: string - repository: *718 + repository: *716 sender: *4 required: - action @@ -160510,13 +160425,13 @@ x-webhooks: type: string enum: - closed - enterprise: *715 - installation: *716 - number: *765 - organization: *717 - pull_request: &766 + enterprise: *713 + installation: *714 + number: *763 + organization: *715 + pull_request: &764 allOf: - - *573 + - *571 - type: object properties: allow_auto_merge: @@ -160578,7 +160493,7 @@ x-webhooks: Please use `squash_merge_commit_title` instead.** type: boolean default: false - repository: *718 + repository: *716 sender: *4 required: - action @@ -160659,12 +160574,12 @@ x-webhooks: type: string enum: - converted_to_draft - enterprise: *715 - installation: *716 - number: *765 - organization: *717 - pull_request: *766 - repository: *718 + enterprise: *713 + installation: *714 + number: *763 + organization: *715 + pull_request: *764 + repository: *716 sender: *4 required: - action @@ -160744,11 +160659,11 @@ x-webhooks: type: string enum: - demilestoned - enterprise: *715 + enterprise: *713 milestone: *555 - number: *765 - organization: *717 - pull_request: &767 + number: *763 + organization: *715 + pull_request: &765 title: Pull Request type: object properties: @@ -163011,7 +162926,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *718 + repository: *716 sender: *4 required: - action @@ -163090,11 +163005,11 @@ x-webhooks: type: string enum: - dequeued - enterprise: *715 - installation: *716 + enterprise: *713 + installation: *714 number: type: integer - organization: *717 + organization: *715 pull_request: title: Pull Request type: object @@ -165376,7 +165291,7 @@ x-webhooks: - BRANCH_PROTECTIONS - GIT_TREE_INVALID - INVALID_MERGE_COMMIT - repository: *718 + repository: *716 sender: *4 required: - action @@ -165500,12 +165415,12 @@ x-webhooks: type: string required: - from - enterprise: *715 - installation: *716 - number: *765 - organization: *717 - pull_request: *766 - repository: *718 + enterprise: *713 + installation: *714 + number: *763 + organization: *715 + pull_request: *764 + repository: *716 sender: *4 required: - action @@ -165585,11 +165500,11 @@ x-webhooks: type: string enum: - enqueued - enterprise: *715 - installation: *716 + enterprise: *713 + installation: *714 number: type: integer - organization: *717 + organization: *715 pull_request: title: Pull Request type: object @@ -167856,7 +167771,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *718 + repository: *716 sender: *4 required: - action @@ -167936,11 +167851,11 @@ x-webhooks: type: string enum: - labeled - enterprise: *715 - installation: *716 - label: *734 - number: *765 - organization: *717 + enterprise: *713 + installation: *714 + label: *732 + number: *763 + organization: *715 pull_request: title: Pull Request type: object @@ -170222,7 +170137,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *718 + repository: *716 sender: *4 required: - action @@ -170303,10 +170218,10 @@ x-webhooks: type: string enum: - locked - enterprise: *715 - installation: *716 - number: *765 - organization: *717 + enterprise: *713 + installation: *714 + number: *763 + organization: *715 pull_request: title: Pull Request type: object @@ -172586,7 +172501,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *718 + repository: *716 sender: *4 required: - action @@ -172666,12 +172581,12 @@ x-webhooks: type: string enum: - milestoned - enterprise: *715 + enterprise: *713 milestone: *555 - number: *765 - organization: *717 - pull_request: *767 - repository: *718 + number: *763 + organization: *715 + pull_request: *765 + repository: *716 sender: *4 required: - action @@ -172750,12 +172665,12 @@ x-webhooks: type: string enum: - opened - enterprise: *715 - installation: *716 - number: *765 - organization: *717 - pull_request: *766 - repository: *718 + enterprise: *713 + installation: *714 + number: *763 + organization: *715 + pull_request: *764 + repository: *716 sender: *4 required: - action @@ -172836,12 +172751,12 @@ x-webhooks: type: string enum: - ready_for_review - enterprise: *715 - installation: *716 - number: *765 - organization: *717 - pull_request: *766 - repository: *718 + enterprise: *713 + installation: *714 + number: *763 + organization: *715 + pull_request: *764 + repository: *716 sender: *4 required: - action @@ -172921,12 +172836,12 @@ x-webhooks: type: string enum: - reopened - enterprise: *715 - installation: *716 - number: *765 - organization: *717 - pull_request: *766 - repository: *718 + enterprise: *713 + installation: *714 + number: *763 + organization: *715 + pull_request: *764 + repository: *716 sender: *4 required: - action @@ -173292,9 +173207,9 @@ x-webhooks: - start_side - side - reactions - enterprise: *715 - installation: *716 - organization: *717 + enterprise: *713 + installation: *714 + organization: *715 pull_request: type: object properties: @@ -175464,7 +175379,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *718 + repository: *716 sender: *4 required: - action @@ -175544,7 +175459,7 @@ x-webhooks: type: string enum: - deleted - comment: &769 + comment: &767 title: Pull Request Review Comment description: The [comment](https://docs.github.com/rest/pulls/comments#get-a-review-comment-for-a-pull-request) itself. @@ -175829,9 +175744,9 @@ x-webhooks: - start_side - side - reactions - enterprise: *715 - installation: *716 - organization: *717 + enterprise: *713 + installation: *714 + organization: *715 pull_request: type: object properties: @@ -177989,7 +177904,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *718 + repository: *716 sender: *4 required: - action @@ -178069,11 +177984,11 @@ x-webhooks: type: string enum: - edited - changes: *768 - comment: *769 - enterprise: *715 - installation: *716 - organization: *717 + changes: *766 + comment: *767 + enterprise: *713 + installation: *714 + organization: *715 pull_request: type: object properties: @@ -180234,7 +180149,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *718 + repository: *716 sender: *4 required: - action @@ -180315,9 +180230,9 @@ x-webhooks: type: string enum: - dismissed - enterprise: *715 - installation: *716 - organization: *717 + enterprise: *713 + installation: *714 + organization: *715 pull_request: title: Simple Pull Request type: object @@ -182490,7 +182405,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *718 + repository: *716 review: description: The review that was affected. type: object @@ -182737,9 +182652,9 @@ x-webhooks: type: string required: - from - enterprise: *715 - installation: *716 - organization: *717 + enterprise: *713 + installation: *714 + organization: *715 pull_request: title: Simple Pull Request type: object @@ -184793,8 +184708,8 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *718 - review: &770 + repository: *716 + review: &768 description: The review that was affected. type: object properties: @@ -185027,12 +184942,12 @@ x-webhooks: type: string enum: - review_request_removed - enterprise: *715 - installation: *716 + enterprise: *713 + installation: *714 number: description: The pull request number. type: integer - organization: *717 + organization: *715 pull_request: title: Pull Request type: object @@ -187315,7 +187230,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *718 + repository: *716 requested_reviewer: title: User type: object @@ -187399,12 +187314,12 @@ x-webhooks: type: string enum: - review_request_removed - enterprise: *715 - installation: *716 + enterprise: *713 + installation: *714 number: description: The pull request number. type: integer - organization: *717 + organization: *715 pull_request: title: Pull Request type: object @@ -189694,7 +189609,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *718 + repository: *716 requested_team: title: Team description: Groups of organization members that gives permissions @@ -189886,12 +189801,12 @@ x-webhooks: type: string enum: - review_requested - enterprise: *715 - installation: *716 + enterprise: *713 + installation: *714 number: description: The pull request number. type: integer - organization: *717 + organization: *715 pull_request: title: Pull Request type: object @@ -192176,7 +192091,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *718 + repository: *716 requested_reviewer: title: User type: object @@ -192261,12 +192176,12 @@ x-webhooks: type: string enum: - review_requested - enterprise: *715 - installation: *716 + enterprise: *713 + installation: *714 number: description: The pull request number. type: integer - organization: *717 + organization: *715 pull_request: title: Pull Request type: object @@ -194542,7 +194457,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *718 + repository: *716 requested_team: title: Team description: Groups of organization members that gives permissions @@ -194723,9 +194638,9 @@ x-webhooks: type: string enum: - submitted - enterprise: *715 - installation: *716 - organization: *717 + enterprise: *713 + installation: *714 + organization: *715 pull_request: title: Simple Pull Request type: object @@ -196900,8 +196815,8 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *718 - review: *770 + repository: *716 + review: *768 sender: *4 required: - action @@ -196981,9 +196896,9 @@ x-webhooks: type: string enum: - resolved - enterprise: *715 - installation: *716 - organization: *717 + enterprise: *713 + installation: *714 + organization: *715 pull_request: title: Simple Pull Request type: object @@ -199053,7 +198968,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *718 + repository: *716 sender: *4 thread: type: object @@ -199440,9 +199355,9 @@ x-webhooks: type: string enum: - unresolved - enterprise: *715 - installation: *716 - organization: *717 + enterprise: *713 + installation: *714 + organization: *715 pull_request: title: Simple Pull Request type: object @@ -201498,7 +201413,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *718 + repository: *716 sender: *4 thread: type: object @@ -201888,10 +201803,10 @@ x-webhooks: type: string before: type: string - enterprise: *715 - installation: *716 - number: *765 - organization: *717 + enterprise: *713 + installation: *714 + number: *763 + organization: *715 pull_request: title: Pull Request type: object @@ -204162,7 +204077,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *718 + repository: *716 sender: *4 required: - action @@ -204244,11 +204159,11 @@ x-webhooks: type: string enum: - unassigned - assignee: *771 - enterprise: *715 - installation: *716 - number: *765 - organization: *717 + assignee: *769 + enterprise: *713 + installation: *714 + number: *763 + organization: *715 pull_request: title: Pull Request type: object @@ -206531,7 +206446,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *718 + repository: *716 sender: *4 required: - action @@ -206610,11 +206525,11 @@ x-webhooks: type: string enum: - unlabeled - enterprise: *715 - installation: *716 - label: *734 - number: *765 - organization: *717 + enterprise: *713 + installation: *714 + label: *732 + number: *763 + organization: *715 pull_request: title: Pull Request type: object @@ -208887,7 +208802,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *718 + repository: *716 sender: *4 required: - action @@ -208968,10 +208883,10 @@ x-webhooks: type: string enum: - unlocked - enterprise: *715 - installation: *716 - number: *765 - organization: *717 + enterprise: *713 + installation: *714 + number: *763 + organization: *715 pull_request: title: Pull Request type: object @@ -211236,7 +211151,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *718 + repository: *716 sender: *4 required: - action @@ -211436,7 +211351,7 @@ x-webhooks: deleted: description: Whether this push deleted the `ref`. type: boolean - enterprise: *715 + enterprise: *713 forced: description: Whether this push was a force push of the `ref`. type: boolean @@ -211528,8 +211443,8 @@ x-webhooks: - url - author - committer - installation: *716 - organization: *717 + installation: *714 + organization: *715 pusher: title: Committer description: Metaproperties for Git author/committer information. @@ -212104,9 +212019,9 @@ x-webhooks: type: string enum: - published - enterprise: *715 - installation: *716 - organization: *717 + enterprise: *713 + installation: *714 + organization: *715 registry_package: type: object properties: @@ -212552,7 +212467,7 @@ x-webhooks: type: string rubygems_metadata: type: array - items: *752 + items: *750 summary: type: string tag_name: @@ -212606,7 +212521,7 @@ x-webhooks: - owner - package_version - registry - repository: *718 + repository: *716 sender: *4 required: - action @@ -212684,9 +212599,9 @@ x-webhooks: type: string enum: - updated - enterprise: *715 - installation: *716 - organization: *717 + enterprise: *713 + installation: *714 + organization: *715 registry_package: type: object properties: @@ -212994,7 +212909,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: *752 + items: *750 summary: type: string tag_name: @@ -213043,7 +212958,7 @@ x-webhooks: - owner - package_version - registry - repository: *718 + repository: *716 sender: *4 required: - action @@ -213120,10 +213035,10 @@ x-webhooks: type: string enum: - created - enterprise: *715 - installation: *716 - organization: *717 - release: &772 + enterprise: *713 + installation: *714 + organization: *715 + release: &770 title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) object. @@ -213441,7 +213356,7 @@ x-webhooks: - updated_at - zipball_url - body - repository: *718 + repository: *716 sender: *4 required: - action @@ -213518,11 +213433,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *715 - installation: *716 - organization: *717 - release: *772 - repository: *718 + enterprise: *713 + installation: *714 + organization: *715 + release: *770 + repository: *716 sender: *4 required: - action @@ -213639,11 +213554,11 @@ x-webhooks: type: boolean required: - to - enterprise: *715 - installation: *716 - organization: *717 - release: *772 - repository: *718 + enterprise: *713 + installation: *714 + organization: *715 + release: *770 + repository: *716 sender: *4 required: - action @@ -213721,9 +213636,9 @@ x-webhooks: type: string enum: - prereleased - enterprise: *715 - installation: *716 - organization: *717 + enterprise: *713 + installation: *714 + organization: *715 release: title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) @@ -214045,7 +213960,7 @@ x-webhooks: type: string nullable: true format: uri - repository: *718 + repository: *716 sender: *4 required: - action @@ -214121,10 +214036,10 @@ x-webhooks: type: string enum: - published - enterprise: *715 - installation: *716 - organization: *717 - release: &773 + enterprise: *713 + installation: *714 + organization: *715 + release: &771 title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) object. @@ -214443,7 +214358,7 @@ x-webhooks: type: string nullable: true format: uri - repository: *718 + repository: *716 sender: *4 required: - action @@ -214519,11 +214434,11 @@ x-webhooks: type: string enum: - released - enterprise: *715 - installation: *716 - organization: *717 - release: *772 - repository: *718 + enterprise: *713 + installation: *714 + organization: *715 + release: *770 + repository: *716 sender: *4 required: - action @@ -214599,11 +214514,11 @@ x-webhooks: type: string enum: - unpublished - enterprise: *715 - installation: *716 - organization: *717 - release: *773 - repository: *718 + enterprise: *713 + installation: *714 + organization: *715 + release: *771 + repository: *716 sender: *4 required: - action @@ -214679,11 +214594,11 @@ x-webhooks: type: string enum: - published - enterprise: *715 - installation: *716 - organization: *717 - repository: *718 - repository_advisory: *637 + enterprise: *713 + installation: *714 + organization: *715 + repository: *716 + repository_advisory: *635 sender: *4 required: - action @@ -214759,11 +214674,11 @@ x-webhooks: type: string enum: - reported - enterprise: *715 - installation: *716 - organization: *717 - repository: *718 - repository_advisory: *637 + enterprise: *713 + installation: *714 + organization: *715 + repository: *716 + repository_advisory: *635 sender: *4 required: - action @@ -214839,10 +214754,10 @@ x-webhooks: type: string enum: - archived - enterprise: *715 - installation: *716 - organization: *717 - repository: *718 + enterprise: *713 + installation: *714 + organization: *715 + repository: *716 sender: *4 required: - action @@ -214919,10 +214834,10 @@ x-webhooks: type: string enum: - created - enterprise: *715 - installation: *716 - organization: *717 - repository: *718 + enterprise: *713 + installation: *714 + organization: *715 + repository: *716 sender: *4 required: - action @@ -215000,10 +214915,10 @@ x-webhooks: type: string enum: - deleted - enterprise: *715 - installation: *716 - organization: *717 - repository: *718 + enterprise: *713 + installation: *714 + organization: *715 + repository: *716 sender: *4 required: - action @@ -215087,10 +215002,10 @@ x-webhooks: additionalProperties: true description: The `client_payload` that was specified in the `POST /repos/{owner}/{repo}/dispatches` request body. - enterprise: *715 - installation: *716 - organization: *717 - repository: *718 + enterprise: *713 + installation: *714 + organization: *715 + repository: *716 sender: *4 required: - action @@ -215202,10 +215117,10 @@ x-webhooks: nullable: true items: type: string - enterprise: *715 - installation: *716 - organization: *717 - repository: *718 + enterprise: *713 + installation: *714 + organization: *715 + repository: *716 sender: *4 required: - action @@ -215277,10 +215192,10 @@ x-webhooks: title: repository_import event type: object properties: - enterprise: *715 - installation: *716 - organization: *717 - repository: *718 + enterprise: *713 + installation: *714 + organization: *715 + repository: *716 sender: *4 status: type: string @@ -215361,10 +215276,10 @@ x-webhooks: type: string enum: - privatized - enterprise: *715 - installation: *716 - organization: *717 - repository: *718 + enterprise: *713 + installation: *714 + organization: *715 + repository: *716 sender: *4 required: - action @@ -215441,10 +215356,10 @@ x-webhooks: type: string enum: - publicized - enterprise: *715 - installation: *716 - organization: *717 - repository: *718 + enterprise: *713 + installation: *714 + organization: *715 + repository: *716 sender: *4 required: - action @@ -215538,10 +215453,10 @@ x-webhooks: - name required: - repository - enterprise: *715 - installation: *716 - organization: *717 - repository: *718 + enterprise: *713 + installation: *714 + organization: *715 + repository: *716 sender: *4 required: - action @@ -215621,10 +215536,10 @@ x-webhooks: type: string enum: - created - enterprise: *715 - installation: *716 - organization: *717 - repository: *718 + enterprise: *713 + installation: *714 + organization: *715 + repository: *716 repository_ruleset: *307 sender: *4 required: @@ -215703,10 +215618,10 @@ x-webhooks: type: string enum: - deleted - enterprise: *715 - installation: *716 - organization: *717 - repository: *718 + enterprise: *713 + installation: *714 + organization: *715 + repository: *716 repository_ruleset: *307 sender: *4 required: @@ -215785,10 +215700,10 @@ x-webhooks: type: string enum: - edited - enterprise: *715 - installation: *716 - organization: *717 - repository: *718 + enterprise: *713 + installation: *714 + organization: *715 + repository: *716 repository_ruleset: *307 changes: type: object @@ -215850,16 +215765,16 @@ x-webhooks: properties: added: type: array - items: *593 + items: *591 deleted: type: array - items: *593 + items: *591 updated: type: array items: type: object properties: - rule: *593 + rule: *591 changes: type: object properties: @@ -216093,10 +216008,10 @@ x-webhooks: - from required: - owner - enterprise: *715 - installation: *716 - organization: *717 - repository: *718 + enterprise: *713 + installation: *714 + organization: *715 + repository: *716 sender: *4 required: - action @@ -216174,10 +216089,10 @@ x-webhooks: type: string enum: - unarchived - enterprise: *715 - installation: *716 - organization: *717 - repository: *718 + enterprise: *713 + installation: *714 + organization: *715 + repository: *716 sender: *4 required: - action @@ -216255,7 +216170,7 @@ x-webhooks: type: string enum: - create - alert: &774 + alert: &772 title: Repository Vulnerability Alert Alert description: The security alert of the vulnerable dependency. type: object @@ -216376,10 +216291,10 @@ x-webhooks: type: string enum: - open - enterprise: *715 - installation: *716 - organization: *717 - repository: *718 + enterprise: *713 + installation: *714 + organization: *715 + repository: *716 sender: *4 required: - action @@ -216585,10 +216500,10 @@ x-webhooks: type: string enum: - dismissed - enterprise: *715 - installation: *716 - organization: *717 - repository: *718 + enterprise: *713 + installation: *714 + organization: *715 + repository: *716 sender: *4 required: - action @@ -216666,11 +216581,11 @@ x-webhooks: type: string enum: - reopen - alert: *774 - enterprise: *715 - installation: *716 - organization: *717 - repository: *718 + alert: *772 + enterprise: *713 + installation: *714 + organization: *715 + repository: *716 sender: *4 required: - action @@ -216869,10 +216784,10 @@ x-webhooks: enum: - fixed - open - enterprise: *715 - installation: *716 - organization: *717 - repository: *718 + enterprise: *713 + installation: *714 + organization: *715 + repository: *716 sender: *4 required: - action @@ -216950,11 +216865,11 @@ x-webhooks: type: string enum: - assigned - alert: &775 + alert: &773 type: object properties: - number: *170 - created_at: *171 + number: *169 + created_at: *170 updated_at: type: string description: 'The time that the alert was last updated in ISO @@ -216962,8 +216877,8 @@ x-webhooks: format: date-time readOnly: true nullable: true - url: *173 - html_url: *174 + url: *172 + html_url: *173 locations_url: type: string format: uri @@ -217069,10 +216984,10 @@ x-webhooks: required: *21 nullable: true assignee: *4 - enterprise: *715 - installation: *716 - organization: *717 - repository: *718 + enterprise: *713 + installation: *714 + organization: *715 + repository: *716 sender: *4 required: - action @@ -217150,11 +217065,11 @@ x-webhooks: type: string enum: - created - alert: *775 - enterprise: *715 - installation: *716 - organization: *717 - repository: *718 + alert: *773 + enterprise: *713 + installation: *714 + organization: *715 + repository: *716 sender: *4 required: - action @@ -217235,11 +217150,11 @@ x-webhooks: type: string enum: - created - alert: *775 - installation: *716 - location: *776 - organization: *717 - repository: *718 + alert: *773 + installation: *714 + location: *774 + organization: *715 + repository: *716 sender: *4 required: - location @@ -217477,11 +217392,11 @@ x-webhooks: type: string enum: - publicly_leaked - alert: *775 - enterprise: *715 - installation: *716 - organization: *717 - repository: *718 + alert: *773 + enterprise: *713 + installation: *714 + organization: *715 + repository: *716 sender: *4 required: - action @@ -217559,11 +217474,11 @@ x-webhooks: type: string enum: - reopened - alert: *775 - enterprise: *715 - installation: *716 - organization: *717 - repository: *718 + alert: *773 + enterprise: *713 + installation: *714 + organization: *715 + repository: *716 sender: *4 required: - action @@ -217641,11 +217556,11 @@ x-webhooks: type: string enum: - resolved - alert: *775 - enterprise: *715 - installation: *716 - organization: *717 - repository: *718 + alert: *773 + enterprise: *713 + installation: *714 + organization: *715 + repository: *716 sender: *4 required: - action @@ -217723,12 +217638,12 @@ x-webhooks: type: string enum: - unassigned - alert: *775 + alert: *773 assignee: *4 - enterprise: *715 - installation: *716 - organization: *717 - repository: *718 + enterprise: *713 + installation: *714 + organization: *715 + repository: *716 sender: *4 required: - action @@ -217806,11 +217721,11 @@ x-webhooks: type: string enum: - validated - alert: *775 - enterprise: *715 - installation: *716 - organization: *717 - repository: *718 + alert: *773 + enterprise: *713 + installation: *714 + organization: *715 + repository: *716 sender: *4 required: - action @@ -217936,10 +217851,10 @@ x-webhooks: - organization - enterprise nullable: true - repository: *718 - enterprise: *715 - installation: *716 - organization: *717 + repository: *716 + enterprise: *713 + installation: *714 + organization: *715 sender: *4 required: - action @@ -218017,11 +217932,11 @@ x-webhooks: type: string enum: - published - enterprise: *715 - installation: *716 - organization: *717 - repository: *718 - security_advisory: &777 + enterprise: *713 + installation: *714 + organization: *715 + repository: *716 + security_advisory: &775 description: The details of the security advisory, including summary, description, and severity. type: object @@ -218204,11 +218119,11 @@ x-webhooks: type: string enum: - updated - enterprise: *715 - installation: *716 - organization: *717 - repository: *718 - security_advisory: *777 + enterprise: *713 + installation: *714 + organization: *715 + repository: *716 + security_advisory: *775 sender: *4 required: - action @@ -218281,10 +218196,10 @@ x-webhooks: type: string enum: - withdrawn - enterprise: *715 - installation: *716 - organization: *717 - repository: *718 + enterprise: *713 + installation: *714 + organization: *715 + repository: *716 security_advisory: description: The details of the security advisory, including summary, description, and severity. @@ -218469,9 +218384,9 @@ x-webhooks: type: object properties: security_and_analysis: *280 - enterprise: *715 - installation: *716 - organization: *717 + enterprise: *713 + installation: *714 + organization: *715 repository: *327 sender: *4 required: @@ -218550,12 +218465,12 @@ x-webhooks: type: string enum: - cancelled - enterprise: *715 - installation: *716 - organization: *717 - repository: *718 + enterprise: *713 + installation: *714 + organization: *715 + repository: *716 sender: *4 - sponsorship: &778 + sponsorship: &776 type: object properties: created_at: @@ -218856,12 +218771,12 @@ x-webhooks: type: string enum: - created - enterprise: *715 - installation: *716 - organization: *717 - repository: *718 + enterprise: *713 + installation: *714 + organization: *715 + repository: *716 sender: *4 - sponsorship: *778 + sponsorship: *776 required: - action - sponsorship @@ -218949,12 +218864,12 @@ x-webhooks: type: string required: - from - enterprise: *715 - installation: *716 - organization: *717 - repository: *718 + enterprise: *713 + installation: *714 + organization: *715 + repository: *716 sender: *4 - sponsorship: *778 + sponsorship: *776 required: - action - changes @@ -219031,17 +218946,17 @@ x-webhooks: type: string enum: - pending_cancellation - effective_date: &779 + effective_date: &777 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: *715 - installation: *716 - organization: *717 - repository: *718 + enterprise: *713 + installation: *714 + organization: *715 + repository: *716 sender: *4 - sponsorship: *778 + sponsorship: *776 required: - action - sponsorship @@ -219115,7 +219030,7 @@ x-webhooks: type: string enum: - pending_tier_change - changes: &780 + changes: &778 type: object properties: tier: @@ -219159,13 +219074,13 @@ x-webhooks: - from required: - tier - effective_date: *779 - enterprise: *715 - installation: *716 - organization: *717 - repository: *718 + effective_date: *777 + enterprise: *713 + installation: *714 + organization: *715 + repository: *716 sender: *4 - sponsorship: *778 + sponsorship: *776 required: - action - changes @@ -219242,13 +219157,13 @@ x-webhooks: type: string enum: - tier_changed - changes: *780 - enterprise: *715 - installation: *716 - organization: *717 - repository: *718 + changes: *778 + enterprise: *713 + installation: *714 + organization: *715 + repository: *716 sender: *4 - sponsorship: *778 + sponsorship: *776 required: - action - changes @@ -219322,10 +219237,10 @@ x-webhooks: type: string enum: - created - enterprise: *715 - installation: *716 - organization: *717 - repository: *718 + enterprise: *713 + installation: *714 + organization: *715 + repository: *716 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -219408,10 +219323,10 @@ x-webhooks: type: string enum: - deleted - enterprise: *715 - installation: *716 - organization: *717 - repository: *718 + enterprise: *713 + installation: *714 + organization: *715 + repository: *716 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -219831,15 +219746,15 @@ x-webhooks: status. type: string nullable: true - enterprise: *715 + enterprise: *713 id: description: The unique identifier of the status. type: integer - installation: *716 + installation: *714 name: type: string - organization: *717 - repository: *718 + organization: *715 + repository: *716 sender: *4 sha: description: The Commit SHA. @@ -219954,9 +219869,9 @@ x-webhooks: description: The ID of the sub-issue. type: number sub_issue: *75 - installation: *716 - organization: *717 - repository: *718 + installation: *714 + organization: *715 + repository: *716 sender: *4 required: - action @@ -220046,9 +219961,9 @@ x-webhooks: description: The ID of the sub-issue. type: number sub_issue: *75 - installation: *716 - organization: *717 - repository: *718 + installation: *714 + organization: *715 + repository: *716 sender: *4 required: - action @@ -220138,9 +220053,9 @@ x-webhooks: description: The ID of the parent issue. type: number parent_issue: *75 - installation: *716 - organization: *717 - repository: *718 + installation: *714 + organization: *715 + repository: *716 sender: *4 required: - action @@ -220230,9 +220145,9 @@ x-webhooks: description: The ID of the parent issue. type: number parent_issue: *75 - installation: *716 - organization: *717 - repository: *718 + installation: *714 + organization: *715 + repository: *716 sender: *4 required: - action @@ -220309,12 +220224,12 @@ x-webhooks: title: team_add event type: object properties: - enterprise: *715 - installation: *716 - organization: *717 - repository: *718 + enterprise: *713 + installation: *714 + organization: *715 + repository: *716 sender: *4 - team: &781 + team: &779 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -220537,9 +220452,9 @@ x-webhooks: type: string enum: - added_to_repository - enterprise: *715 - installation: *716 - organization: *717 + enterprise: *713 + installation: *714 + organization: *715 repository: title: Repository description: A git repository @@ -220997,7 +220912,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *781 + team: *779 required: - action - team @@ -221073,9 +220988,9 @@ x-webhooks: type: string enum: - created - enterprise: *715 - installation: *716 - organization: *717 + enterprise: *713 + installation: *714 + organization: *715 repository: title: Repository description: A git repository @@ -221533,7 +221448,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *781 + team: *779 required: - action - team @@ -221610,9 +221525,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *715 - installation: *716 - organization: *717 + enterprise: *713 + installation: *714 + organization: *715 repository: title: Repository description: A git repository @@ -222070,7 +221985,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *781 + team: *779 required: - action - team @@ -222214,9 +222129,9 @@ x-webhooks: - from required: - permissions - enterprise: *715 - installation: *716 - organization: *717 + enterprise: *713 + installation: *714 + organization: *715 repository: title: Repository description: A git repository @@ -222674,7 +222589,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *781 + team: *779 required: - action - changes @@ -222752,9 +222667,9 @@ x-webhooks: type: string enum: - removed_from_repository - enterprise: *715 - installation: *716 - organization: *717 + enterprise: *713 + installation: *714 + organization: *715 repository: title: Repository description: A git repository @@ -223212,7 +223127,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *781 + team: *779 required: - action - team @@ -223288,10 +223203,10 @@ x-webhooks: type: string enum: - started - enterprise: *715 - installation: *716 - organization: *717 - repository: *718 + enterprise: *713 + installation: *714 + organization: *715 + repository: *716 sender: *4 required: - action @@ -223364,16 +223279,16 @@ x-webhooks: title: workflow_dispatch event type: object properties: - enterprise: *715 + enterprise: *713 inputs: type: object nullable: true additionalProperties: true - installation: *716 - organization: *717 + installation: *714 + organization: *715 ref: type: string - repository: *718 + repository: *716 sender: *4 workflow: type: string @@ -223455,10 +223370,10 @@ x-webhooks: type: string enum: - completed - enterprise: *715 - installation: *716 - organization: *717 - repository: *718 + enterprise: *713 + installation: *714 + organization: *715 + repository: *716 sender: *4 workflow_job: allOf: @@ -223774,10 +223689,10 @@ x-webhooks: type: string enum: - in_progress - enterprise: *715 - installation: *716 - organization: *717 - repository: *718 + enterprise: *713 + installation: *714 + organization: *715 + repository: *716 sender: *4 workflow_job: allOf: @@ -224116,10 +224031,10 @@ x-webhooks: type: string enum: - queued - enterprise: *715 - installation: *716 - organization: *717 - repository: *718 + enterprise: *713 + installation: *714 + organization: *715 + repository: *716 sender: *4 workflow_job: type: object @@ -224333,10 +224248,10 @@ x-webhooks: type: string enum: - waiting - enterprise: *715 - installation: *716 - organization: *717 - repository: *718 + enterprise: *713 + installation: *714 + organization: *715 + repository: *716 sender: *4 workflow_job: type: object @@ -224552,12 +224467,12 @@ x-webhooks: type: string enum: - completed - enterprise: *715 - installation: *716 - organization: *717 - repository: *718 + enterprise: *713 + installation: *714 + organization: *715 + repository: *716 sender: *4 - workflow: *730 + workflow: *728 workflow_run: title: Workflow Run type: object @@ -225556,12 +225471,12 @@ x-webhooks: type: string enum: - in_progress - enterprise: *715 - installation: *716 - organization: *717 - repository: *718 + enterprise: *713 + installation: *714 + organization: *715 + repository: *716 sender: *4 - workflow: *730 + workflow: *728 workflow_run: title: Workflow Run type: object @@ -226545,12 +226460,12 @@ x-webhooks: type: string enum: - requested - enterprise: *715 - installation: *716 - organization: *717 - repository: *718 + enterprise: *713 + installation: *714 + organization: *715 + repository: *716 sender: *4 - workflow: *730 + workflow: *728 workflow_run: title: Workflow Run type: object diff --git a/descriptions/ghec/dereferenced/ghec.2022-11-28.deref.json b/descriptions/ghec/dereferenced/ghec.2022-11-28.deref.json index 93b712234..d232d58c0 100644 --- a/descriptions/ghec/dereferenced/ghec.2022-11-28.deref.json +++ b/descriptions/ghec/dereferenced/ghec.2022-11-28.deref.json @@ -45661,7 +45661,7 @@ "/enterprises/{enterprise}/enterprise-roles/teams/{team_slug}": { "delete": { "summary": "Remove all enterprise roles from a team", - "description": "Removes all assigned enterprise roles from a team in an enterprise.\n\nTo use this endpoint, the authenticated user must be one of:\n\n - An administrator for the enterprise.\n - A user, or a user on a team, with the fine-grained permission `write_enterprise_custom_enterprise_role` in the enterprise.\n\nOAuth app tokens and personal access tokens (classic) need the `admin:enterprise` scope to use this endpoint.", + "description": "Removes all assigned enterprise roles from a team in an enterprise.\n\n> [!WARNING]\n> This API is not available for Copilot Business for non-GHE.\n\nTo use this endpoint, the authenticated user must be one of:\n\n - An administrator for the enterprise.\n - A user, or a user on a team, with the fine-grained permission `write_enterprise_custom_enterprise_role` in the enterprise.\n\nOAuth app tokens and personal access tokens (classic) need the `admin:enterprise` scope to use this endpoint.", "tags": [ "enterprise-admin" ], @@ -45761,7 +45761,7 @@ "/enterprises/{enterprise}/enterprise-roles/teams/{team_slug}/{role_id}": { "put": { "summary": "Assign an enterprise role to a team", - "description": "Assigns an enterprise role to a team in an enterprise.\n\nTo use this endpoint, the authenticated user must be one of:\n\n - An administrator for the enterprise.\n - A user, or a user on a team, with the fine-grained permission `write_enterprise_custom_enterprise_role` in the enterprise.\n\nOAuth app tokens and personal access tokens (classic) need the `admin:enterprise` scope to use this endpoint.", + "description": "Assigns an enterprise role to a team in an enterprise.\n\n> [!WARNING]\n> This API is not available for Copilot Business for non-GHE.\n\nTo use this endpoint, the authenticated user must be one of:\n\n - An administrator for the enterprise.\n - A user, or a user on a team, with the fine-grained permission `write_enterprise_custom_enterprise_role` in the enterprise.\n\nOAuth app tokens and personal access tokens (classic) need the `admin:enterprise` scope to use this endpoint.", "tags": [ "enterprise-admin" ], @@ -45868,7 +45868,7 @@ }, "delete": { "summary": "Remove an enterprise role from a team", - "description": "Removes an enterprise role from a team in an enterprise.\n\nTo use this endpoint, the authenticated user must be one of:\n\n - An administrator for the enterprise.\n - A user, or a user on a team, with the fine-grained permission `write_enterprise_custom_enterprise_role` in the enterprise.\n\nOAuth app tokens and personal access tokens (classic) need the `admin:enterprise` scope to use this endpoint.", + "description": "Removes an enterprise role from a team in an enterprise.\n\n> [!WARNING]\n> This API is not available for Copilot Business for non-GHE.\n\nTo use this endpoint, the authenticated user must be one of:\n\n - An administrator for the enterprise.\n - A user, or a user on a team, with the fine-grained permission `write_enterprise_custom_enterprise_role` in the enterprise.\n\nOAuth app tokens and personal access tokens (classic) need the `admin:enterprise` scope to use this endpoint.", "tags": [ "enterprise-admin" ], @@ -46546,7 +46546,7 @@ "/enterprises/{enterprise}/enterprise-roles/{role_id}/teams": { "get": { "summary": "List teams that are assigned to an enterprise role", - "description": "Lists the teams that are assigned to an enterprise role.\n\nTo use this endpoint, the authenticated user must be one of:\n\n - An administrator for the enterprise.\n - A user, or a user on a team, with the fine-grained permission `read_enterprise_custom_enterprise_role` in the enterprise.\n\nOAuth app tokens and personal access tokens (classic) require the `read:enterprise` scope to access this endpoint.", + "description": "Lists the teams that are assigned to an enterprise role.\n\n> [!WARNING]\n> This API is not available for Copilot Business for non-GHE.\n\nTo use this endpoint, the authenticated user must be one of:\n\n - An administrator for the enterprise.\n - A user, or a user on a team, with the fine-grained permission `read_enterprise_custom_enterprise_role` in the enterprise.\n\nOAuth app tokens and personal access tokens (classic) require the `read:enterprise` scope to access this endpoint.", "tags": [ "enterprise-admin" ], @@ -51994,7 +51994,7 @@ "conditions": { "title": "Enterprise ruleset conditions", "type": "object", - "description": "Conditions for an enterprise ruleset. The conditions object should contain either the `organization_id` or `organization_name` property and the `repository_name` or `repository_property` property. For branch and tag rulesets, the conditions object should also contain the `ref_name` property.", + "description": "Conditions for an enterprise ruleset.\nThe `conditions` object supports either of the following combinations: - `organization_id` and `repository_name` - `organization_id` and `repository_property` - `organization_name` and `repository_name` - `organization_name` and `repository_property` - `organization_property` and `repository_name` - `organization_property` and `repository_property`\nFor branch and tag rulesets, the `conditions` object should also contain the `ref_name` property.", "oneOf": [ { "type": "object", @@ -56633,7 +56633,7 @@ "conditions": { "title": "Enterprise ruleset conditions", "type": "object", - "description": "Conditions for an enterprise ruleset. The conditions object should contain either the `organization_id` or `organization_name` property and the `repository_name` or `repository_property` property. For branch and tag rulesets, the conditions object should also contain the `ref_name` property.", + "description": "Conditions for an enterprise ruleset.\nThe `conditions` object supports either of the following combinations: - `organization_id` and `repository_name` - `organization_id` and `repository_property` - `organization_name` and `repository_name` - `organization_name` and `repository_property` - `organization_property` and `repository_name` - `organization_property` and `repository_property`\nFor branch and tag rulesets, the `conditions` object should also contain the `ref_name` property.", "oneOf": [ { "type": "object", @@ -66482,7 +66482,7 @@ }, "enterprise": { "type": "string", - "description": "The unique identifier of the enterprise." + "description": "The name of the enterprise for the usage report." }, "user": { "type": "string", @@ -67209,7 +67209,7 @@ }, "enterprise": { "type": "string", - "description": "The unique identifier of the enterprise." + "description": "The name of the enterprise for the usage report." }, "organization": { "type": "string", @@ -111341,7 +111341,7 @@ } }, "x-github": { - "githubCloudOnly": false, + "githubCloudOnly": true, "enabledForGitHubApps": true, "category": "orgs", "subcategory": "custom-properties-for-orgs" @@ -111565,7 +111565,7 @@ } }, "x-github": { - "githubCloudOnly": false, + "githubCloudOnly": true, "enabledForGitHubApps": true, "category": "orgs", "subcategory": "custom-properties-for-orgs" @@ -579739,7 +579739,7 @@ ], "roles": [ { - "value": "User", + "value": "user", "primary": false } ] @@ -579770,7 +579770,7 @@ ], "roles": [ { - "value": "Enterprise Owner", + "value": "enterprise_owner", "primary": false } ] @@ -581054,7 +581054,7 @@ ], "roles": [ { - "value": "User", + "value": "user", "primary": false } ] diff --git a/descriptions/ghec/dereferenced/ghec.2022-11-28.deref.yaml b/descriptions/ghec/dereferenced/ghec.2022-11-28.deref.yaml index 848b55c38..75d43ffe3 100644 --- a/descriptions/ghec/dereferenced/ghec.2022-11-28.deref.yaml +++ b/descriptions/ghec/dereferenced/ghec.2022-11-28.deref.yaml @@ -17822,6 +17822,9 @@ paths: description: |- Removes all assigned enterprise roles from a team in an enterprise. + > [!WARNING] + > This API is not available for Copilot Business for non-GHE. + To use this endpoint, the authenticated user must be one of: - An administrator for the enterprise. @@ -17862,6 +17865,9 @@ paths: description: |- Assigns an enterprise role to a team in an enterprise. + > [!WARNING] + > This API is not available for Copilot Business for non-GHE. + To use this endpoint, the authenticated user must be one of: - An administrator for the enterprise. @@ -17902,6 +17908,9 @@ paths: description: |- Removes an enterprise role from a team in an enterprise. + > [!WARNING] + > This API is not available for Copilot Business for non-GHE. + To use this endpoint, the authenticated user must be one of: - An administrator for the enterprise. @@ -18103,6 +18112,9 @@ paths: description: |- Lists the teams that are assigned to an enterprise role. + > [!WARNING] + > This API is not available for Copilot Business for non-GHE. + To use this endpoint, the authenticated user must be one of: - An administrator for the enterprise. @@ -19742,11 +19754,10 @@ paths: conditions: &193 title: Enterprise ruleset conditions type: object - description: Conditions for an enterprise ruleset. The conditions - object should contain either the `organization_id` or `organization_name` - property and the `repository_name` or `repository_property` property. - For branch and tag rulesets, the conditions object should also - contain the `ref_name` property. + description: |- + Conditions for an enterprise ruleset. + The `conditions` object supports either of the following combinations: - `organization_id` and `repository_name` - `organization_id` and `repository_property` - `organization_name` and `repository_name` - `organization_name` and `repository_property` - `organization_property` and `repository_name` - `organization_property` and `repository_property` + For branch and tag rulesets, the `conditions` object should also contain the `ref_name` property. oneOf: - type: object title: organization_name_and_repository_name @@ -23655,7 +23666,7 @@ paths: - year enterprise: type: string - description: The unique identifier of the enterprise. + description: The name of the enterprise for the usage report. user: type: string description: The name of the user for the usage report. @@ -23941,7 +23952,7 @@ paths: - year enterprise: type: string - description: The unique identifier of the enterprise. + description: The name of the enterprise for the usage report. organization: type: string description: The name of the organization for the usage report. @@ -32291,7 +32302,7 @@ paths: '403': *29 '404': *6 x-github: - githubCloudOnly: false + githubCloudOnly: true enabledForGitHubApps: true category: orgs subcategory: custom-properties-for-orgs @@ -32347,7 +32358,7 @@ paths: '404': *6 '422': *15 x-github: - githubCloudOnly: false + githubCloudOnly: true enabledForGitHubApps: true category: orgs subcategory: custom-properties-for-orgs @@ -107547,7 +107558,7 @@ paths: type: work primary: true roles: - - value: User + - value: user primary: false enterpriseOwner: summary: Enterprise Owner @@ -107568,7 +107579,7 @@ paths: type: work primary: true roles: - - value: Enterprise Owner + - value: enterprise_owner primary: false responses: '201': diff --git a/descriptions/ghec/dereferenced/ghec.deref.json b/descriptions/ghec/dereferenced/ghec.deref.json index 93b712234..d232d58c0 100644 --- a/descriptions/ghec/dereferenced/ghec.deref.json +++ b/descriptions/ghec/dereferenced/ghec.deref.json @@ -45661,7 +45661,7 @@ "/enterprises/{enterprise}/enterprise-roles/teams/{team_slug}": { "delete": { "summary": "Remove all enterprise roles from a team", - "description": "Removes all assigned enterprise roles from a team in an enterprise.\n\nTo use this endpoint, the authenticated user must be one of:\n\n - An administrator for the enterprise.\n - A user, or a user on a team, with the fine-grained permission `write_enterprise_custom_enterprise_role` in the enterprise.\n\nOAuth app tokens and personal access tokens (classic) need the `admin:enterprise` scope to use this endpoint.", + "description": "Removes all assigned enterprise roles from a team in an enterprise.\n\n> [!WARNING]\n> This API is not available for Copilot Business for non-GHE.\n\nTo use this endpoint, the authenticated user must be one of:\n\n - An administrator for the enterprise.\n - A user, or a user on a team, with the fine-grained permission `write_enterprise_custom_enterprise_role` in the enterprise.\n\nOAuth app tokens and personal access tokens (classic) need the `admin:enterprise` scope to use this endpoint.", "tags": [ "enterprise-admin" ], @@ -45761,7 +45761,7 @@ "/enterprises/{enterprise}/enterprise-roles/teams/{team_slug}/{role_id}": { "put": { "summary": "Assign an enterprise role to a team", - "description": "Assigns an enterprise role to a team in an enterprise.\n\nTo use this endpoint, the authenticated user must be one of:\n\n - An administrator for the enterprise.\n - A user, or a user on a team, with the fine-grained permission `write_enterprise_custom_enterprise_role` in the enterprise.\n\nOAuth app tokens and personal access tokens (classic) need the `admin:enterprise` scope to use this endpoint.", + "description": "Assigns an enterprise role to a team in an enterprise.\n\n> [!WARNING]\n> This API is not available for Copilot Business for non-GHE.\n\nTo use this endpoint, the authenticated user must be one of:\n\n - An administrator for the enterprise.\n - A user, or a user on a team, with the fine-grained permission `write_enterprise_custom_enterprise_role` in the enterprise.\n\nOAuth app tokens and personal access tokens (classic) need the `admin:enterprise` scope to use this endpoint.", "tags": [ "enterprise-admin" ], @@ -45868,7 +45868,7 @@ }, "delete": { "summary": "Remove an enterprise role from a team", - "description": "Removes an enterprise role from a team in an enterprise.\n\nTo use this endpoint, the authenticated user must be one of:\n\n - An administrator for the enterprise.\n - A user, or a user on a team, with the fine-grained permission `write_enterprise_custom_enterprise_role` in the enterprise.\n\nOAuth app tokens and personal access tokens (classic) need the `admin:enterprise` scope to use this endpoint.", + "description": "Removes an enterprise role from a team in an enterprise.\n\n> [!WARNING]\n> This API is not available for Copilot Business for non-GHE.\n\nTo use this endpoint, the authenticated user must be one of:\n\n - An administrator for the enterprise.\n - A user, or a user on a team, with the fine-grained permission `write_enterprise_custom_enterprise_role` in the enterprise.\n\nOAuth app tokens and personal access tokens (classic) need the `admin:enterprise` scope to use this endpoint.", "tags": [ "enterprise-admin" ], @@ -46546,7 +46546,7 @@ "/enterprises/{enterprise}/enterprise-roles/{role_id}/teams": { "get": { "summary": "List teams that are assigned to an enterprise role", - "description": "Lists the teams that are assigned to an enterprise role.\n\nTo use this endpoint, the authenticated user must be one of:\n\n - An administrator for the enterprise.\n - A user, or a user on a team, with the fine-grained permission `read_enterprise_custom_enterprise_role` in the enterprise.\n\nOAuth app tokens and personal access tokens (classic) require the `read:enterprise` scope to access this endpoint.", + "description": "Lists the teams that are assigned to an enterprise role.\n\n> [!WARNING]\n> This API is not available for Copilot Business for non-GHE.\n\nTo use this endpoint, the authenticated user must be one of:\n\n - An administrator for the enterprise.\n - A user, or a user on a team, with the fine-grained permission `read_enterprise_custom_enterprise_role` in the enterprise.\n\nOAuth app tokens and personal access tokens (classic) require the `read:enterprise` scope to access this endpoint.", "tags": [ "enterprise-admin" ], @@ -51994,7 +51994,7 @@ "conditions": { "title": "Enterprise ruleset conditions", "type": "object", - "description": "Conditions for an enterprise ruleset. The conditions object should contain either the `organization_id` or `organization_name` property and the `repository_name` or `repository_property` property. For branch and tag rulesets, the conditions object should also contain the `ref_name` property.", + "description": "Conditions for an enterprise ruleset.\nThe `conditions` object supports either of the following combinations: - `organization_id` and `repository_name` - `organization_id` and `repository_property` - `organization_name` and `repository_name` - `organization_name` and `repository_property` - `organization_property` and `repository_name` - `organization_property` and `repository_property`\nFor branch and tag rulesets, the `conditions` object should also contain the `ref_name` property.", "oneOf": [ { "type": "object", @@ -56633,7 +56633,7 @@ "conditions": { "title": "Enterprise ruleset conditions", "type": "object", - "description": "Conditions for an enterprise ruleset. The conditions object should contain either the `organization_id` or `organization_name` property and the `repository_name` or `repository_property` property. For branch and tag rulesets, the conditions object should also contain the `ref_name` property.", + "description": "Conditions for an enterprise ruleset.\nThe `conditions` object supports either of the following combinations: - `organization_id` and `repository_name` - `organization_id` and `repository_property` - `organization_name` and `repository_name` - `organization_name` and `repository_property` - `organization_property` and `repository_name` - `organization_property` and `repository_property`\nFor branch and tag rulesets, the `conditions` object should also contain the `ref_name` property.", "oneOf": [ { "type": "object", @@ -66482,7 +66482,7 @@ }, "enterprise": { "type": "string", - "description": "The unique identifier of the enterprise." + "description": "The name of the enterprise for the usage report." }, "user": { "type": "string", @@ -67209,7 +67209,7 @@ }, "enterprise": { "type": "string", - "description": "The unique identifier of the enterprise." + "description": "The name of the enterprise for the usage report." }, "organization": { "type": "string", @@ -111341,7 +111341,7 @@ } }, "x-github": { - "githubCloudOnly": false, + "githubCloudOnly": true, "enabledForGitHubApps": true, "category": "orgs", "subcategory": "custom-properties-for-orgs" @@ -111565,7 +111565,7 @@ } }, "x-github": { - "githubCloudOnly": false, + "githubCloudOnly": true, "enabledForGitHubApps": true, "category": "orgs", "subcategory": "custom-properties-for-orgs" @@ -579739,7 +579739,7 @@ ], "roles": [ { - "value": "User", + "value": "user", "primary": false } ] @@ -579770,7 +579770,7 @@ ], "roles": [ { - "value": "Enterprise Owner", + "value": "enterprise_owner", "primary": false } ] @@ -581054,7 +581054,7 @@ ], "roles": [ { - "value": "User", + "value": "user", "primary": false } ] diff --git a/descriptions/ghec/dereferenced/ghec.deref.yaml b/descriptions/ghec/dereferenced/ghec.deref.yaml index 848b55c38..75d43ffe3 100644 --- a/descriptions/ghec/dereferenced/ghec.deref.yaml +++ b/descriptions/ghec/dereferenced/ghec.deref.yaml @@ -17822,6 +17822,9 @@ paths: description: |- Removes all assigned enterprise roles from a team in an enterprise. + > [!WARNING] + > This API is not available for Copilot Business for non-GHE. + To use this endpoint, the authenticated user must be one of: - An administrator for the enterprise. @@ -17862,6 +17865,9 @@ paths: description: |- Assigns an enterprise role to a team in an enterprise. + > [!WARNING] + > This API is not available for Copilot Business for non-GHE. + To use this endpoint, the authenticated user must be one of: - An administrator for the enterprise. @@ -17902,6 +17908,9 @@ paths: description: |- Removes an enterprise role from a team in an enterprise. + > [!WARNING] + > This API is not available for Copilot Business for non-GHE. + To use this endpoint, the authenticated user must be one of: - An administrator for the enterprise. @@ -18103,6 +18112,9 @@ paths: description: |- Lists the teams that are assigned to an enterprise role. + > [!WARNING] + > This API is not available for Copilot Business for non-GHE. + To use this endpoint, the authenticated user must be one of: - An administrator for the enterprise. @@ -19742,11 +19754,10 @@ paths: conditions: &193 title: Enterprise ruleset conditions type: object - description: Conditions for an enterprise ruleset. The conditions - object should contain either the `organization_id` or `organization_name` - property and the `repository_name` or `repository_property` property. - For branch and tag rulesets, the conditions object should also - contain the `ref_name` property. + description: |- + Conditions for an enterprise ruleset. + The `conditions` object supports either of the following combinations: - `organization_id` and `repository_name` - `organization_id` and `repository_property` - `organization_name` and `repository_name` - `organization_name` and `repository_property` - `organization_property` and `repository_name` - `organization_property` and `repository_property` + For branch and tag rulesets, the `conditions` object should also contain the `ref_name` property. oneOf: - type: object title: organization_name_and_repository_name @@ -23655,7 +23666,7 @@ paths: - year enterprise: type: string - description: The unique identifier of the enterprise. + description: The name of the enterprise for the usage report. user: type: string description: The name of the user for the usage report. @@ -23941,7 +23952,7 @@ paths: - year enterprise: type: string - description: The unique identifier of the enterprise. + description: The name of the enterprise for the usage report. organization: type: string description: The name of the organization for the usage report. @@ -32291,7 +32302,7 @@ paths: '403': *29 '404': *6 x-github: - githubCloudOnly: false + githubCloudOnly: true enabledForGitHubApps: true category: orgs subcategory: custom-properties-for-orgs @@ -32347,7 +32358,7 @@ paths: '404': *6 '422': *15 x-github: - githubCloudOnly: false + githubCloudOnly: true enabledForGitHubApps: true category: orgs subcategory: custom-properties-for-orgs @@ -107547,7 +107558,7 @@ paths: type: work primary: true roles: - - value: User + - value: user primary: false enterpriseOwner: summary: Enterprise Owner @@ -107568,7 +107579,7 @@ paths: type: work primary: true roles: - - value: Enterprise Owner + - value: enterprise_owner primary: false responses: '201': diff --git a/descriptions/ghec/ghec.2022-11-28.json b/descriptions/ghec/ghec.2022-11-28.json index dc1d18dc4..8addcd15c 100644 --- a/descriptions/ghec/ghec.2022-11-28.json +++ b/descriptions/ghec/ghec.2022-11-28.json @@ -9537,7 +9537,7 @@ "/enterprises/{enterprise}/enterprise-roles/teams/{team_slug}": { "delete": { "summary": "Remove all enterprise roles from a team", - "description": "Removes all assigned enterprise roles from a team in an enterprise.\n\nTo use this endpoint, the authenticated user must be one of:\n\n - An administrator for the enterprise.\n - A user, or a user on a team, with the fine-grained permission `write_enterprise_custom_enterprise_role` in the enterprise.\n\nOAuth app tokens and personal access tokens (classic) need the `admin:enterprise` scope to use this endpoint.", + "description": "Removes all assigned enterprise roles from a team in an enterprise.\n\n> [!WARNING]\n> This API is not available for Copilot Business for non-GHE.\n\nTo use this endpoint, the authenticated user must be one of:\n\n - An administrator for the enterprise.\n - A user, or a user on a team, with the fine-grained permission `write_enterprise_custom_enterprise_role` in the enterprise.\n\nOAuth app tokens and personal access tokens (classic) need the `admin:enterprise` scope to use this endpoint.", "tags": [ "enterprise-admin" ], @@ -9579,7 +9579,7 @@ "/enterprises/{enterprise}/enterprise-roles/teams/{team_slug}/{role_id}": { "put": { "summary": "Assign an enterprise role to a team", - "description": "Assigns an enterprise role to a team in an enterprise.\n\nTo use this endpoint, the authenticated user must be one of:\n\n - An administrator for the enterprise.\n - A user, or a user on a team, with the fine-grained permission `write_enterprise_custom_enterprise_role` in the enterprise.\n\nOAuth app tokens and personal access tokens (classic) need the `admin:enterprise` scope to use this endpoint.", + "description": "Assigns an enterprise role to a team in an enterprise.\n\n> [!WARNING]\n> This API is not available for Copilot Business for non-GHE.\n\nTo use this endpoint, the authenticated user must be one of:\n\n - An administrator for the enterprise.\n - A user, or a user on a team, with the fine-grained permission `write_enterprise_custom_enterprise_role` in the enterprise.\n\nOAuth app tokens and personal access tokens (classic) need the `admin:enterprise` scope to use this endpoint.", "tags": [ "enterprise-admin" ], @@ -9622,7 +9622,7 @@ }, "delete": { "summary": "Remove an enterprise role from a team", - "description": "Removes an enterprise role from a team in an enterprise.\n\nTo use this endpoint, the authenticated user must be one of:\n\n - An administrator for the enterprise.\n - A user, or a user on a team, with the fine-grained permission `write_enterprise_custom_enterprise_role` in the enterprise.\n\nOAuth app tokens and personal access tokens (classic) need the `admin:enterprise` scope to use this endpoint.", + "description": "Removes an enterprise role from a team in an enterprise.\n\n> [!WARNING]\n> This API is not available for Copilot Business for non-GHE.\n\nTo use this endpoint, the authenticated user must be one of:\n\n - An administrator for the enterprise.\n - A user, or a user on a team, with the fine-grained permission `write_enterprise_custom_enterprise_role` in the enterprise.\n\nOAuth app tokens and personal access tokens (classic) need the `admin:enterprise` scope to use this endpoint.", "tags": [ "enterprise-admin" ], @@ -9848,7 +9848,7 @@ "/enterprises/{enterprise}/enterprise-roles/{role_id}/teams": { "get": { "summary": "List teams that are assigned to an enterprise role", - "description": "Lists the teams that are assigned to an enterprise role.\n\nTo use this endpoint, the authenticated user must be one of:\n\n - An administrator for the enterprise.\n - A user, or a user on a team, with the fine-grained permission `read_enterprise_custom_enterprise_role` in the enterprise.\n\nOAuth app tokens and personal access tokens (classic) require the `read:enterprise` scope to access this endpoint.", + "description": "Lists the teams that are assigned to an enterprise role.\n\n> [!WARNING]\n> This API is not available for Copilot Business for non-GHE.\n\nTo use this endpoint, the authenticated user must be one of:\n\n - An administrator for the enterprise.\n - A user, or a user on a team, with the fine-grained permission `read_enterprise_custom_enterprise_role` in the enterprise.\n\nOAuth app tokens and personal access tokens (classic) require the `read:enterprise` scope to access this endpoint.", "tags": [ "enterprise-admin" ], @@ -18109,7 +18109,7 @@ } }, "x-github": { - "githubCloudOnly": false, + "githubCloudOnly": true, "enabledForGitHubApps": true, "category": "orgs", "subcategory": "custom-properties-for-orgs" @@ -18173,7 +18173,7 @@ } }, "x-github": { - "githubCloudOnly": false, + "githubCloudOnly": true, "enabledForGitHubApps": true, "category": "orgs", "subcategory": "custom-properties-for-orgs" @@ -125806,7 +125806,7 @@ "enterprise-ruleset-conditions": { "title": "Enterprise ruleset conditions", "type": "object", - "description": "Conditions for an enterprise ruleset. The conditions object should contain either the `organization_id` or `organization_name` property and the `repository_name` or `repository_property` property. For branch and tag rulesets, the conditions object should also contain the `ref_name` property.", + "description": "Conditions for an enterprise ruleset.\nThe `conditions` object supports either of the following combinations: - `organization_id` and `repository_name` - `organization_id` and `repository_property` - `organization_name` and `repository_name` - `organization_name` and `repository_property` - `organization_property` and `repository_name` - `organization_property` and `repository_property`\nFor branch and tag rulesets, the `conditions` object should also contain the `ref_name` property.", "oneOf": [ { "type": "object", @@ -128406,7 +128406,7 @@ }, "enterprise": { "type": "string", - "description": "The unique identifier of the enterprise." + "description": "The name of the enterprise for the usage report." }, "user": { "type": "string", @@ -128607,7 +128607,7 @@ }, "enterprise": { "type": "string", - "description": "The unique identifier of the enterprise." + "description": "The name of the enterprise for the usage report." }, "organization": { "type": "string", @@ -328138,7 +328138,7 @@ ], "roles": [ { - "value": "User", + "value": "user", "primary": false } ] @@ -328169,7 +328169,7 @@ ], "roles": [ { - "value": "Enterprise Owner", + "value": "enterprise_owner", "primary": false } ] diff --git a/descriptions/ghec/ghec.2022-11-28.yaml b/descriptions/ghec/ghec.2022-11-28.yaml index c93ea4d4d..0a24b15cb 100644 --- a/descriptions/ghec/ghec.2022-11-28.yaml +++ b/descriptions/ghec/ghec.2022-11-28.yaml @@ -6825,6 +6825,9 @@ paths: description: |- Removes all assigned enterprise roles from a team in an enterprise. + > [!WARNING] + > This API is not available for Copilot Business for non-GHE. + To use this endpoint, the authenticated user must be one of: - An administrator for the enterprise. @@ -6861,6 +6864,9 @@ paths: description: |- Assigns an enterprise role to a team in an enterprise. + > [!WARNING] + > This API is not available for Copilot Business for non-GHE. + To use this endpoint, the authenticated user must be one of: - An administrator for the enterprise. @@ -6897,6 +6903,9 @@ paths: description: |- Removes an enterprise role from a team in an enterprise. + > [!WARNING] + > This API is not available for Copilot Business for non-GHE. + To use this endpoint, the authenticated user must be one of: - An administrator for the enterprise. @@ -7083,6 +7092,9 @@ paths: description: |- Lists the teams that are assigned to an enterprise role. + > [!WARNING] + > This API is not available for Copilot Business for non-GHE. + To use this endpoint, the authenticated user must be one of: - An administrator for the enterprise. @@ -12857,7 +12869,7 @@ paths: '404': "$ref": "#/components/responses/not_found" x-github: - githubCloudOnly: false + githubCloudOnly: true enabledForGitHubApps: true category: orgs subcategory: custom-properties-for-orgs @@ -12910,7 +12922,7 @@ paths: '422': "$ref": "#/components/responses/validation_failed" x-github: - githubCloudOnly: false + githubCloudOnly: true enabledForGitHubApps: true category: orgs subcategory: custom-properties-for-orgs @@ -91391,10 +91403,10 @@ components: enterprise-ruleset-conditions: title: Enterprise ruleset conditions type: object - description: Conditions for an enterprise ruleset. The conditions object should - contain either the `organization_id` or `organization_name` property and the - `repository_name` or `repository_property` property. For branch and tag rulesets, - the conditions object should also contain the `ref_name` property. + description: |- + Conditions for an enterprise ruleset. + The `conditions` object supports either of the following combinations: - `organization_id` and `repository_name` - `organization_id` and `repository_property` - `organization_name` and `repository_name` - `organization_name` and `repository_property` - `organization_property` and `repository_name` - `organization_property` and `repository_property` + For branch and tag rulesets, the `conditions` object should also contain the `ref_name` property. oneOf: - type: object title: organization_name_and_repository_name @@ -93310,7 +93322,7 @@ components: - year enterprise: type: string - description: The unique identifier of the enterprise. + description: The name of the enterprise for the usage report. user: type: string description: The name of the user for the usage report. @@ -93460,7 +93472,7 @@ components: - year enterprise: type: string - description: The unique identifier of the enterprise. + description: The name of the enterprise for the usage report. organization: type: string description: The name of the organization for the usage report. @@ -247261,7 +247273,7 @@ components: type: work primary: true roles: - - value: User + - value: user primary: false in-user-owner: summary: Enterprise Owner @@ -247282,7 +247294,7 @@ components: type: work primary: true roles: - - value: Enterprise Owner + - value: enterprise_owner primary: false scim-enterprise-user: value: diff --git a/descriptions/ghec/ghec.json b/descriptions/ghec/ghec.json index dc1d18dc4..8addcd15c 100644 --- a/descriptions/ghec/ghec.json +++ b/descriptions/ghec/ghec.json @@ -9537,7 +9537,7 @@ "/enterprises/{enterprise}/enterprise-roles/teams/{team_slug}": { "delete": { "summary": "Remove all enterprise roles from a team", - "description": "Removes all assigned enterprise roles from a team in an enterprise.\n\nTo use this endpoint, the authenticated user must be one of:\n\n - An administrator for the enterprise.\n - A user, or a user on a team, with the fine-grained permission `write_enterprise_custom_enterprise_role` in the enterprise.\n\nOAuth app tokens and personal access tokens (classic) need the `admin:enterprise` scope to use this endpoint.", + "description": "Removes all assigned enterprise roles from a team in an enterprise.\n\n> [!WARNING]\n> This API is not available for Copilot Business for non-GHE.\n\nTo use this endpoint, the authenticated user must be one of:\n\n - An administrator for the enterprise.\n - A user, or a user on a team, with the fine-grained permission `write_enterprise_custom_enterprise_role` in the enterprise.\n\nOAuth app tokens and personal access tokens (classic) need the `admin:enterprise` scope to use this endpoint.", "tags": [ "enterprise-admin" ], @@ -9579,7 +9579,7 @@ "/enterprises/{enterprise}/enterprise-roles/teams/{team_slug}/{role_id}": { "put": { "summary": "Assign an enterprise role to a team", - "description": "Assigns an enterprise role to a team in an enterprise.\n\nTo use this endpoint, the authenticated user must be one of:\n\n - An administrator for the enterprise.\n - A user, or a user on a team, with the fine-grained permission `write_enterprise_custom_enterprise_role` in the enterprise.\n\nOAuth app tokens and personal access tokens (classic) need the `admin:enterprise` scope to use this endpoint.", + "description": "Assigns an enterprise role to a team in an enterprise.\n\n> [!WARNING]\n> This API is not available for Copilot Business for non-GHE.\n\nTo use this endpoint, the authenticated user must be one of:\n\n - An administrator for the enterprise.\n - A user, or a user on a team, with the fine-grained permission `write_enterprise_custom_enterprise_role` in the enterprise.\n\nOAuth app tokens and personal access tokens (classic) need the `admin:enterprise` scope to use this endpoint.", "tags": [ "enterprise-admin" ], @@ -9622,7 +9622,7 @@ }, "delete": { "summary": "Remove an enterprise role from a team", - "description": "Removes an enterprise role from a team in an enterprise.\n\nTo use this endpoint, the authenticated user must be one of:\n\n - An administrator for the enterprise.\n - A user, or a user on a team, with the fine-grained permission `write_enterprise_custom_enterprise_role` in the enterprise.\n\nOAuth app tokens and personal access tokens (classic) need the `admin:enterprise` scope to use this endpoint.", + "description": "Removes an enterprise role from a team in an enterprise.\n\n> [!WARNING]\n> This API is not available for Copilot Business for non-GHE.\n\nTo use this endpoint, the authenticated user must be one of:\n\n - An administrator for the enterprise.\n - A user, or a user on a team, with the fine-grained permission `write_enterprise_custom_enterprise_role` in the enterprise.\n\nOAuth app tokens and personal access tokens (classic) need the `admin:enterprise` scope to use this endpoint.", "tags": [ "enterprise-admin" ], @@ -9848,7 +9848,7 @@ "/enterprises/{enterprise}/enterprise-roles/{role_id}/teams": { "get": { "summary": "List teams that are assigned to an enterprise role", - "description": "Lists the teams that are assigned to an enterprise role.\n\nTo use this endpoint, the authenticated user must be one of:\n\n - An administrator for the enterprise.\n - A user, or a user on a team, with the fine-grained permission `read_enterprise_custom_enterprise_role` in the enterprise.\n\nOAuth app tokens and personal access tokens (classic) require the `read:enterprise` scope to access this endpoint.", + "description": "Lists the teams that are assigned to an enterprise role.\n\n> [!WARNING]\n> This API is not available for Copilot Business for non-GHE.\n\nTo use this endpoint, the authenticated user must be one of:\n\n - An administrator for the enterprise.\n - A user, or a user on a team, with the fine-grained permission `read_enterprise_custom_enterprise_role` in the enterprise.\n\nOAuth app tokens and personal access tokens (classic) require the `read:enterprise` scope to access this endpoint.", "tags": [ "enterprise-admin" ], @@ -18109,7 +18109,7 @@ } }, "x-github": { - "githubCloudOnly": false, + "githubCloudOnly": true, "enabledForGitHubApps": true, "category": "orgs", "subcategory": "custom-properties-for-orgs" @@ -18173,7 +18173,7 @@ } }, "x-github": { - "githubCloudOnly": false, + "githubCloudOnly": true, "enabledForGitHubApps": true, "category": "orgs", "subcategory": "custom-properties-for-orgs" @@ -125806,7 +125806,7 @@ "enterprise-ruleset-conditions": { "title": "Enterprise ruleset conditions", "type": "object", - "description": "Conditions for an enterprise ruleset. The conditions object should contain either the `organization_id` or `organization_name` property and the `repository_name` or `repository_property` property. For branch and tag rulesets, the conditions object should also contain the `ref_name` property.", + "description": "Conditions for an enterprise ruleset.\nThe `conditions` object supports either of the following combinations: - `organization_id` and `repository_name` - `organization_id` and `repository_property` - `organization_name` and `repository_name` - `organization_name` and `repository_property` - `organization_property` and `repository_name` - `organization_property` and `repository_property`\nFor branch and tag rulesets, the `conditions` object should also contain the `ref_name` property.", "oneOf": [ { "type": "object", @@ -128406,7 +128406,7 @@ }, "enterprise": { "type": "string", - "description": "The unique identifier of the enterprise." + "description": "The name of the enterprise for the usage report." }, "user": { "type": "string", @@ -128607,7 +128607,7 @@ }, "enterprise": { "type": "string", - "description": "The unique identifier of the enterprise." + "description": "The name of the enterprise for the usage report." }, "organization": { "type": "string", @@ -328138,7 +328138,7 @@ ], "roles": [ { - "value": "User", + "value": "user", "primary": false } ] @@ -328169,7 +328169,7 @@ ], "roles": [ { - "value": "Enterprise Owner", + "value": "enterprise_owner", "primary": false } ] diff --git a/descriptions/ghec/ghec.yaml b/descriptions/ghec/ghec.yaml index c93ea4d4d..0a24b15cb 100644 --- a/descriptions/ghec/ghec.yaml +++ b/descriptions/ghec/ghec.yaml @@ -6825,6 +6825,9 @@ paths: description: |- Removes all assigned enterprise roles from a team in an enterprise. + > [!WARNING] + > This API is not available for Copilot Business for non-GHE. + To use this endpoint, the authenticated user must be one of: - An administrator for the enterprise. @@ -6861,6 +6864,9 @@ paths: description: |- Assigns an enterprise role to a team in an enterprise. + > [!WARNING] + > This API is not available for Copilot Business for non-GHE. + To use this endpoint, the authenticated user must be one of: - An administrator for the enterprise. @@ -6897,6 +6903,9 @@ paths: description: |- Removes an enterprise role from a team in an enterprise. + > [!WARNING] + > This API is not available for Copilot Business for non-GHE. + To use this endpoint, the authenticated user must be one of: - An administrator for the enterprise. @@ -7083,6 +7092,9 @@ paths: description: |- Lists the teams that are assigned to an enterprise role. + > [!WARNING] + > This API is not available for Copilot Business for non-GHE. + To use this endpoint, the authenticated user must be one of: - An administrator for the enterprise. @@ -12857,7 +12869,7 @@ paths: '404': "$ref": "#/components/responses/not_found" x-github: - githubCloudOnly: false + githubCloudOnly: true enabledForGitHubApps: true category: orgs subcategory: custom-properties-for-orgs @@ -12910,7 +12922,7 @@ paths: '422': "$ref": "#/components/responses/validation_failed" x-github: - githubCloudOnly: false + githubCloudOnly: true enabledForGitHubApps: true category: orgs subcategory: custom-properties-for-orgs @@ -91391,10 +91403,10 @@ components: enterprise-ruleset-conditions: title: Enterprise ruleset conditions type: object - description: Conditions for an enterprise ruleset. The conditions object should - contain either the `organization_id` or `organization_name` property and the - `repository_name` or `repository_property` property. For branch and tag rulesets, - the conditions object should also contain the `ref_name` property. + description: |- + Conditions for an enterprise ruleset. + The `conditions` object supports either of the following combinations: - `organization_id` and `repository_name` - `organization_id` and `repository_property` - `organization_name` and `repository_name` - `organization_name` and `repository_property` - `organization_property` and `repository_name` - `organization_property` and `repository_property` + For branch and tag rulesets, the `conditions` object should also contain the `ref_name` property. oneOf: - type: object title: organization_name_and_repository_name @@ -93310,7 +93322,7 @@ co{"code":"internal","msg":"git-diff-tree: context deadline exceeded","meta":{"cause":"*fmt.wrapError"}}