diff --git a/descriptions-next/api.github.com/api.github.com.2022-11-28.json b/descriptions-next/api.github.com/api.github.com.2022-11-28.json index 9bd5bdbc3..31189261a 100644 --- a/descriptions-next/api.github.com/api.github.com.2022-11-28.json +++ b/descriptions-next/api.github.com/api.github.com.2022-11-28.json @@ -7958,121 +7958,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", @@ -109661,40 +109546,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", - "type": [ - "null", - "string", - "array" - ] - } - }, - "required": [ - "property_name", - "value" - ] - }, "budget": { "type": "object", "properties": { @@ -116811,6 +116662,40 @@ "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", + "type": [ + "null", + "string", + "array" + ] + } + }, + "required": [ + "property_name", + "value" + ] + }, "org-repo-custom-property-values": { "title": "Organization Repository Custom Property Values", "description": "List of custom property values for a repository", @@ -290673,40 +290558,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": [ @@ -308464,6 +308315,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-next/api.github.com/api.github.com.2022-11-28.yaml b/descriptions-next/api.github.com/api.github.com.2022-11-28.yaml index 2c7331f25..9afccd074 100644 --- a/descriptions-next/api.github.com/api.github.com.2022-11-28.yaml +++ b/descriptions-next/api.github.com/api.github.com.2022-11-28.yaml @@ -5600,100 +5600,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 @@ -79264,28 +79170,6 @@ components: - type: 'null' - "$ref": "#/components/schemas/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 - type: - - 'null' - - string - - array - required: - - property_name - - value budget: type: object properties: @@ -84688,6 +84572,28 @@ components: - org_actors 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 + type: + - 'null' + - string + - array + required: + - property_name + - value org-repo-custom-property-values: title: Organization Repository Custom Property Values description: List of custom property values for a repository @@ -214253,23 +214159,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: @@ -229308,6 +229197,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-next/api.github.com/api.github.com.json b/descriptions-next/api.github.com/api.github.com.json index 9bd5bdbc3..31189261a 100644 --- a/descriptions-next/api.github.com/api.github.com.json +++ b/descriptions-next/api.github.com/api.github.com.json @@ -7958,121 +7958,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", @@ -109661,40 +109546,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", - "type": [ - "null", - "string", - "array" - ] - } - }, - "required": [ - "property_name", - "value" - ] - }, "budget": { "type": "object", "properties": { @@ -116811,6 +116662,40 @@ "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", + "type": [ + "null", + "string", + "array" + ] + } + }, + "required": [ + "property_name", + "value" + ] + }, "org-repo-custom-property-values": { "title": "Organization Repository Custom Property Values", "description": "List of custom property values for a repository", @@ -290673,40 +290558,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": [ @@ -308464,6 +308315,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-next/api.github.com/api.github.com.yaml b/descriptions-next/api.github.com/api.github.com.yaml index 2c7331f25..9afccd074 100644 --- a/descriptions-next/api.github.com/api.github.com.yaml +++ b/descriptions-next/api.github.com/api.github.com.yaml @@ -5600,100 +5600,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 @@ -79264,28 +79170,6 @@ components: - type: 'null' - "$ref": "#/components/schemas/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 - type: - - 'null' - - string - - array - required: - - property_name - - value budget: type: object properties: @@ -84688,6 +84572,28 @@ components: - org_actors 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 + type: + - 'null' + - string + - array + required: + - property_name + - value org-repo-custom-property-values: title: Organization Repository Custom Property Values description: List of custom property values for a repository @@ -214253,23 +214159,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: @@ -229308,6 +229197,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-next/api.github.com/dereferenced/api.github.com.2022-11-28.deref.json b/descriptions-next/api.github.com/dereferenced/api.github.com.2022-11-28.deref.json index 129a1d2bd..45acc0ce8 100644 --- a/descriptions-next/api.github.com/dereferenced/api.github.com.2022-11-28.deref.json +++ b/descriptions-next/api.github.com/dereferenced/api.github.com.2022-11-28.deref.json @@ -76784,387 +76784,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", - "type": [ - "null", - "string", - "array" - ] - } - }, - "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", - "type": [ - "null", - "string", - "array" - ] - } - }, - "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", - "null" - ] - }, - { - "type": [ - "integer", - "null" - ] - }, - { - "type": [ - "array", - "null" - ], - "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-next/api.github.com/dereferenced/api.github.com.2022-11-28.deref.yaml b/descriptions-next/api.github.com/dereferenced/api.github.com.2022-11-28.deref.yaml index 5a56745fb..273ca19f4 100644 --- a/descriptions-next/api.github.com/dereferenced/api.github.com.2022-11-28.deref.yaml +++ b/descriptions-next/api.github.com/dereferenced/api.github.com.2022-11-28.deref.yaml @@ -1038,7 +1038,7 @@ paths: description: Validation failed, or the endpoint has been spammed. content: application/json: - schema: &115 + schema: &114 title: Validation Error Simple description: Validation Error Simple type: object @@ -1071,7 +1071,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/global-advisories#get-a-global-security-advisory parameters: - - &615 + - &613 name: ghsa_id description: The GHSA (GitHub Security Advisory) identifier of the advisory. in: path @@ -1656,7 +1656,7 @@ paths: schema: type: integer default: 30 - - &194 + - &193 name: cursor description: 'Used for pagination: the starting delivery from which the page of deliveries is fetched. Refer to the `link` header for the next and previous @@ -1672,7 +1672,7 @@ paths: application/json: schema: type: array - items: &195 + items: &194 title: Simple webhook delivery description: Delivery made by a webhook, without request and response information. @@ -1768,7 +1768,7 @@ paths: - installation_id - repository_id examples: - default: &196 + default: &195 value: - id: 12345678 guid: 0b989ba4-242f-11e5-81e1-c7b6966d2516 @@ -1831,7 +1831,7 @@ paths: description: Validation failed, or the endpoint has been spammed. content: application/json: - schema: &114 + schema: &113 title: Validation Error description: Validation Error type: object @@ -1903,7 +1903,7 @@ paths: description: Response content: application/json: - schema: &197 + schema: &196 title: Webhook delivery description: Delivery made by a webhook. type: object @@ -2038,7 +2038,7 @@ paths: - request - response examples: - default: &198 + default: &197 value: id: 12345678 guid: 0b989ba4-242f-11e5-81e1-c7b6966d2516 @@ -5432,7 +5432,7 @@ paths: responses: '202': *37 '422': *7 - '500': &105 + '500': &104 description: Internal Error content: application/json: @@ -8125,7 +8125,7 @@ paths: description: Response content: application/json: - schema: &174 + schema: &173 type: array description: A list of default code security configurations items: @@ -8141,7 +8141,7 @@ paths: default configuration: *45 examples: - default: &175 + default: &174 value: - default_for_new_repos: public configuration: @@ -8473,7 +8473,7 @@ paths: - *38 - *47 responses: - '204': &176 + '204': &175 description: A header with no content is returned. '400': *14 '403': *27 @@ -8600,7 +8600,7 @@ paths: default: value: default_for_new_repos: all - configuration: &173 + configuration: &172 value: id: 1325 target_type: organization @@ -8685,7 +8685,7 @@ paths: application/json: schema: type: array - items: &177 + items: &176 type: object description: Repositories associated with a code security configuration and attachment status @@ -9030,7 +9030,7 @@ paths: summary: Example of code security configuration repositories value: - status: attached - repository: &178 + repository: &177 value: id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -9124,7 +9124,7 @@ paths: url: https://docs.github.com/rest/dependabot/alerts#list-dependabot-alerts-for-an-enterprise parameters: - *38 - - &181 + - &180 name: state in: query description: |- @@ -9133,7 +9133,7 @@ paths: Can be: `auto_dismissed`, `dismissed`, `fixed`, `open` schema: type: string - - &182 + - &181 name: severity in: query description: |- @@ -9142,7 +9142,7 @@ paths: Can be: `low`, `medium`, `high`, `critical` schema: type: string - - &183 + - &182 name: ecosystem in: query description: |- @@ -9151,14 +9151,14 @@ paths: Can be: `composer`, `go`, `maven`, `npm`, `nuget`, `pip`, `pub`, `rubygems`, `rust` schema: type: string - - &184 + - &183 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 - - &185 + - &184 name: epss_percentage in: query description: |- @@ -9184,7 +9184,7 @@ paths: type: string enum: - patch - - &186 + - &185 name: scope in: query description: The scope of the vulnerable dependency. If specified, only alerts @@ -9194,7 +9194,7 @@ paths: enum: - development - runtime - - &187 + - &186 name: sort in: query description: |- @@ -9220,11 +9220,11 @@ paths: application/json: schema: type: array - items: &188 + items: &187 type: object description: A Dependabot alert. properties: - number: &163 + number: &162 type: integer description: The security alert number. readOnly: true @@ -9497,29 +9497,29 @@ paths: - withdrawn_at additionalProperties: false security_vulnerability: *55 - url: &166 + url: &165 type: string description: The REST API URL of the alert resource. format: uri readOnly: true - html_url: &167 + html_url: &166 type: string description: The GitHub URL of the alert resource. format: uri readOnly: true - created_at: &164 + created_at: &163 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: &165 + updated_at: &164 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: &169 + dismissed_at: &168 type: - string - 'null' @@ -9550,7 +9550,7 @@ paths: description: An optional comment associated with the alert's dismissal. maxLength: 280 - fixed_at: &168 + fixed_at: &167 type: - string - 'null' @@ -9624,7 +9624,7 @@ paths: - repository additionalProperties: false examples: - default: &189 + default: &188 value: - number: 2 state: dismissed @@ -10957,7 +10957,7 @@ paths: properties: action: type: string - discussion: &706 + discussion: &704 title: Discussion description: A Discussion in a repository. type: object @@ -11460,7 +11460,7 @@ paths: milestone: anyOf: - type: 'null' - - &252 + - &251 title: Milestone description: A collection of related issues and pull requests. @@ -11632,7 +11632,7 @@ paths: timeline_url: type: string format: uri - type: &216 + type: &215 title: Issue Type description: The type of issue. type: @@ -11743,7 +11743,7 @@ paths: - hooray - eyes - rocket - sub_issues_summary: &627 + sub_issues_summary: &625 title: Sub-issues Summary type: object properties: @@ -11764,7 +11764,7 @@ paths: - string - 'null' format: uri - issue_dependencies_summary: &628 + issue_dependencies_summary: &626 title: Issue Dependencies Summary type: object properties: @@ -11783,7 +11783,7 @@ paths: - total_blocking issue_field_values: type: array - items: &629 + items: &627 title: Issue Field Value description: A value assigned to an issue field type: object @@ -12619,7 +12619,7 @@ paths: type: string release: allOf: - - &560 + - &558 title: Release description: A release. type: object @@ -12701,7 +12701,7 @@ paths: author: *4 assets: type: array - items: &561 + items: &559 title: Release Asset description: Data related to a release. type: object @@ -12869,7 +12869,7 @@ paths: created_at: '2022-06-07T07:50:26Z' '304': *35 '403': *27 - '503': &106 + '503': &105 description: Service unavailable content: application/json: @@ -13304,7 +13304,7 @@ paths: url: type: string format: uri - user: &635 + user: &633 title: Public User description: Public User type: object @@ -15199,7 +15199,7 @@ paths: - closed - all default: open - - &219 + - &218 name: labels description: 'A list of comma separated label names. Example: `bug,ui,@high`' in: query @@ -15250,7 +15250,7 @@ paths: type: array items: *71 examples: - default: &220 + default: &219 value: - id: 1 node_id: MDU6SXNzdWUx @@ -16802,7 +16802,7 @@ paths: properties: id: type: string - repository: &145 + repository: &144 title: Minimal Repository description: Minimal Repository type: object @@ -18283,127 +18283,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: - - *66 - responses: - '200': - description: Response - content: - application/json: - schema: - type: array - items: &104 - 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 - type: - - 'null' - - string - - array - required: - - property_name - - value - examples: - default: &543 - value: - - property_name: environment - value: production - - property_name: service - value: web - - property_name: team - value: octocat - '403': *27 - '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: - - *66 - 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: *104 - required: - - properties - examples: - default: &544 - 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': *27 - '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 @@ -18546,7 +18425,7 @@ paths: alert_recipients: [] '404': *6 '403': *27 - '500': *105 + '500': *104 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -18568,7 +18447,7 @@ paths: url: https://docs.github.com/rest/billing/budgets#get-a-budget-by-id-for-an-organization parameters: - *66 - - &107 + - &106 name: budget_id description: The ID corresponding to the budget. in: path @@ -18667,8 +18546,8 @@ paths: '400': *14 '404': *6 '403': *27 - '500': *105 - '503': *106 + '500': *104 + '503': *105 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -18689,7 +18568,7 @@ paths: url: https://docs.github.com/rest/billing/budgets#update-a-budget-for-an-organization parameters: - *66 - - *107 + - *106 requestBody: required: true content: @@ -18876,7 +18755,7 @@ paths: url: https://docs.github.com/rest/billing/budgets#delete-a-budget-for-an-organization parameters: - *66 - - *107 + - *106 responses: '200': description: Response when deleting a budget @@ -18902,8 +18781,8 @@ paths: '400': *14 '404': *6 '403': *27 - '500': *105 - '503': *106 + '500': *104 + '503': *105 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -18924,7 +18803,7 @@ paths: url: https://docs.github.com/rest/billing/usage#get-billing-premium-request-usage-report-for-an-organization parameters: - *66 - - &108 + - &107 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, @@ -18933,7 +18812,7 @@ paths: required: false schema: type: integer - - &110 + - &109 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 @@ -18942,7 +18821,7 @@ paths: required: false schema: type: integer - - &109 + - &108 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 @@ -18957,14 +18836,14 @@ paths: required: false schema: type: string - - &683 + - &681 name: model description: The model name to query usage for. The name is not case sensitive. in: query required: false schema: type: string - - &111 + - &110 name: product description: The product name to query usage for. The name is not case sensitive. in: query @@ -19080,8 +18959,8 @@ paths: '400': *14 '403': *27 '404': *6 - '500': *105 - '503': *106 + '500': *104 + '503': *105 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -19102,8 +18981,8 @@ paths: url: https://docs.github.com/rest/billing/usage#get-billing-usage-report-for-an-organization parameters: - *66 - - *108 - - &684 + - *107 + - &682 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 @@ -19112,7 +18991,7 @@ paths: required: false schema: type: integer - - *109 + - *108 responses: '200': description: Billing usage report response for an organization @@ -19187,8 +19066,8 @@ paths: repositoryName: github/example '400': *14 '403': *27 - '500': *105 - '503': *106 + '500': *104 + '503': *105 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -19212,18 +19091,18 @@ paths: url: https://docs.github.com/rest/billing/usage#get-billing-usage-summary-for-an-organization parameters: - *66 - - *108 - - *110 + - *107 - *109 - - &685 + - *108 + - &683 name: repository description: The repository name to query for usage in the format owner/repository. in: query required: false schema: type: string - - *111 - - &686 + - *110 + - &684 name: sku description: The SKU to query for usage. in: query @@ -19333,8 +19212,8 @@ paths: netAmount: 8.0 '400': *14 '403': *27 - '500': *105 - '503': *106 + '500': *104 + '503': *105 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -19366,7 +19245,7 @@ paths: description: Response content: application/json: - schema: &112 + schema: &111 title: Organization Full description: Organization Full type: object @@ -19761,7 +19640,7 @@ paths: - updated_at - archived_at examples: - default-response: &113 + default-response: &112 value: login: github id: 1 @@ -20078,17 +19957,17 @@ paths: description: Response content: application/json: - schema: *112 + schema: *111 examples: - default: *113 + default: *112 '422': description: Validation failed content: application/json: schema: oneOf: + - *113 - *114 - - *115 '409': *50 x-github: githubCloudOnly: false @@ -20278,7 +20157,7 @@ paths: type: integer runners: type: array - items: &116 + items: &115 title: GitHub-hosted hosted runner description: A Github-hosted hosted runner. type: object @@ -20341,7 +20220,7 @@ paths: - size_gb - display_name - source - machine_size_details: &124 + machine_size_details: &123 title: Github-owned VM details. description: Provides details of a particular machine spec. type: object @@ -20450,7 +20329,7 @@ paths: - public_ip_enabled - platform examples: - default: &144 + default: &143 value: total_count: 2 runners: @@ -20588,9 +20467,9 @@ paths: description: Response content: application/json: - schema: *116 + schema: *115 examples: - default: &125 + default: &124 value: id: 5 name: My hosted ubuntu runner @@ -20647,7 +20526,7 @@ paths: type: integer images: type: array - items: &117 + items: &116 title: GitHub-hosted runner custom image details description: Provides details of a custom runner image type: object @@ -20706,7 +20585,7 @@ paths: - latest_version - state examples: - default: &119 + default: &118 value: total_count: 2 image_versions: @@ -20738,7 +20617,7 @@ paths: url: https://docs.github.com/rest/actions/hosted-runners#get-a-custom-image-definition-for-github-actions-hosted-runners parameters: - *66 - - &118 + - &117 name: image_definition_id description: Image definition ID of custom image in: path @@ -20750,7 +20629,7 @@ paths: description: Response content: application/json: - schema: *117 + schema: *116 examples: default: value: @@ -20781,7 +20660,7 @@ paths: url: https://docs.github.com/rest/actions/hosted-runners#delete-a-custom-image-from-the-organization parameters: - *66 - - *118 + - *117 responses: '204': description: Response @@ -20804,7 +20683,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: - - *118 + - *117 - *66 responses: '200': @@ -20821,7 +20700,7 @@ paths: type: integer image_versions: type: array - items: &120 + items: &119 title: GitHub-hosted runner custom image version details. description: Provides details of a hosted runner custom image version @@ -20859,7 +20738,7 @@ paths: - created_on - state_details examples: - default: *119 + default: *118 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -20880,8 +20759,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: - *66 - - *118 - - &121 + - *117 + - &120 name: version description: Version of a custom image in: path @@ -20894,7 +20773,7 @@ paths: description: Response content: application/json: - schema: *120 + schema: *119 examples: default: value: @@ -20921,8 +20800,8 @@ paths: url: https://docs.github.com/rest/actions/hosted-runners#delete-an-image-version-of-custom-image-from-the-organization parameters: - *66 - - *118 - - *121 + - *117 + - *120 responses: '204': description: Response @@ -20959,7 +20838,7 @@ paths: type: integer images: type: array - items: &122 + items: &121 title: GitHub-hosted runner image details. description: Provides details of a hosted runner image type: object @@ -20999,7 +20878,7 @@ paths: - display_name - source examples: - default: &123 + default: &122 value: id: ubuntu-20.04 platform: linux-x64 @@ -21039,9 +20918,9 @@ paths: type: integer images: type: array - items: *122 + items: *121 examples: - default: *123 + default: *122 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -21129,7 +21008,7 @@ paths: type: integer machine_specs: type: array - items: *124 + items: *123 examples: default: value: @@ -21199,7 +21078,7 @@ paths: url: https://docs.github.com/rest/actions/hosted-runners#get-a-github-hosted-runner-for-an-organization parameters: - *66 - - &126 + - &125 name: hosted_runner_id description: Unique identifier of the GitHub-hosted runner. in: path @@ -21211,9 +21090,9 @@ paths: description: Response content: application/json: - schema: *116 + schema: *115 examples: - default: *125 + default: *124 headers: Link: *57 x-github: @@ -21234,7 +21113,7 @@ paths: url: https://docs.github.com/rest/actions/hosted-runners#update-a-github-hosted-runner-for-an-organization parameters: - *66 - - *126 + - *125 requestBody: required: true content: @@ -21278,9 +21157,9 @@ paths: description: Response content: application/json: - schema: *116 + schema: *115 examples: - default: *125 + default: *124 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -21297,15 +21176,15 @@ paths: url: https://docs.github.com/rest/actions/hosted-runners#delete-a-github-hosted-runner-for-an-organization parameters: - *66 - - *126 + - *125 responses: '202': description: Response content: application/json: - schema: *116 + schema: *115 examples: - default: *125 + default: *124 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -21331,7 +21210,7 @@ paths: description: A JSON serialized template for OIDC subject claim customization content: application/json: - schema: &127 + schema: &126 title: Actions OIDC Subject customization description: Actions OIDC Subject customization type: object @@ -21345,7 +21224,7 @@ paths: required: - include_claim_keys examples: - default: &128 + default: &127 value: include_claim_keys: - repo @@ -21372,15 +21251,15 @@ paths: required: true content: application/json: - schema: *127 + schema: *126 examples: - default: *128 + default: *127 responses: '201': description: Empty response content: application/json: - schema: &154 + schema: &153 title: Empty Object description: An object without any properties. type: object @@ -21419,7 +21298,7 @@ paths: schema: type: object properties: - enabled_repositories: &129 + enabled_repositories: &128 type: string description: The policy that controls the repositories in the organization that are allowed to run GitHub Actions. @@ -21432,7 +21311,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: &130 + allowed_actions: &129 type: string description: The permissions policy that controls the actions and reusable workflows that are allowed to run. @@ -21445,7 +21324,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: &131 + sha_pinning_required: &130 type: boolean description: Whether actions must be pinned to a full-length commit SHA. @@ -21487,9 +21366,9 @@ paths: schema: type: object properties: - enabled_repositories: *129 - allowed_actions: *130 - sha_pinning_required: *131 + enabled_repositories: *128 + allowed_actions: *129 + sha_pinning_required: *130 required: - enabled_repositories examples: @@ -21608,7 +21487,7 @@ paths: description: Response content: application/json: - schema: &132 + schema: &131 type: object properties: approval_policy: @@ -21653,7 +21532,7 @@ paths: required: true content: application/json: - schema: *132 + schema: *131 examples: default: summary: Set approval policy to first time contributors @@ -21707,7 +21586,7 @@ paths: description: Whether workflows triggered by pull requests from forks require approval from a repository administrator to run. examples: - default: &133 + default: &132 value: run_workflows_from_fork_pull_requests: true send_write_tokens_to_workflows: false @@ -21758,7 +21637,7 @@ paths: description: Whether workflows triggered by pull requests from forks require approval from a repository administrator to run. examples: - default: *133 + default: *132 responses: '204': description: Empty response for successful settings update @@ -21808,7 +21687,7 @@ paths: type: array items: *69 examples: - default: &137 + default: &136 value: total_count: 1 repositories: @@ -21993,7 +21872,7 @@ paths: url: https://docs.github.com/rest/actions/permissions#enable-a-selected-repository-for-github-actions-in-an-organization parameters: - *66 - - &134 + - &133 name: repository_id description: The unique identifier of the repository. in: path @@ -22022,7 +21901,7 @@ paths: url: https://docs.github.com/rest/actions/permissions#disable-a-selected-repository-for-github-actions-in-an-organization parameters: - *66 - - *134 + - *133 responses: '204': description: Response @@ -22051,7 +21930,7 @@ paths: description: Response content: application/json: - schema: &135 + schema: &134 type: object properties: github_owned_allowed: @@ -22073,7 +21952,7 @@ paths: items: type: string examples: - default: &136 + default: &135 value: github_owned_allowed: true verified_allowed: false @@ -22106,9 +21985,9 @@ paths: required: false content: application/json: - schema: *135 + schema: *134 examples: - selected_actions: *136 + selected_actions: *135 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -22240,7 +22119,7 @@ paths: type: array items: *69 examples: - default: *137 + default: *136 '403': *27 '404': *6 x-github: @@ -22309,7 +22188,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: - *66 - - *134 + - *133 responses: '204': description: No content @@ -22336,7 +22215,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: - *66 - - *134 + - *133 responses: '204': description: No content @@ -22373,14 +22252,14 @@ paths: schema: &334 type: object properties: - default_workflow_permissions: &138 + default_workflow_permissions: &137 type: string description: The default workflow permissions granted to the GITHUB_TOKEN when running workflows. enum: - read - write - can_approve_pull_request_reviews: &139 + can_approve_pull_request_reviews: &138 type: boolean description: Whether GitHub Actions can approve pull requests. Enabling this can be a security risk. @@ -22388,7 +22267,7 @@ paths: - default_workflow_permissions - can_approve_pull_request_reviews examples: - default: &140 + default: &139 summary: Give read-only permission, and allow approving PRs. value: default_workflow_permissions: read @@ -22424,10 +22303,10 @@ paths: schema: &335 type: object properties: - default_workflow_permissions: *138 - can_approve_pull_request_reviews: *139 + default_workflow_permissions: *137 + can_approve_pull_request_reviews: *138 examples: - default: *140 + default: *139 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -22472,7 +22351,7 @@ paths: type: number runner_groups: type: array - items: &141 + items: &140 type: object properties: id: @@ -22662,9 +22541,9 @@ paths: description: Response content: application/json: - schema: *141 + schema: *140 examples: - default: &143 + default: &142 value: id: 2 name: octo-runner-group @@ -22700,7 +22579,7 @@ paths: url: https://docs.github.com/rest/actions/self-hosted-runner-groups#get-a-self-hosted-runner-group-for-an-organization parameters: - *66 - - &142 + - &141 name: runner_group_id description: Unique identifier of the self-hosted runner group. in: path @@ -22712,7 +22591,7 @@ paths: description: Response content: application/json: - schema: *141 + schema: *140 examples: default: value: @@ -22749,7 +22628,7 @@ paths: url: https://docs.github.com/rest/actions/self-hosted-runner-groups#update-a-self-hosted-runner-group-for-an-organization parameters: - *66 - - *142 + - *141 requestBody: required: true content: @@ -22805,9 +22684,9 @@ paths: description: Response content: application/json: - schema: *141 + schema: *140 examples: - default: *143 + default: *142 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -22827,7 +22706,7 @@ paths: url: https://docs.github.com/rest/actions/self-hosted-runner-groups#delete-a-self-hosted-runner-group-from-an-organization parameters: - *66 - - *142 + - *141 responses: '204': description: Response @@ -22851,7 +22730,7 @@ paths: url: https://docs.github.com/rest/actions/self-hosted-runner-groups#list-github-hosted-runners-in-a-group-for-an-organization parameters: - *66 - - *142 + - *141 - *17 - *19 responses: @@ -22869,9 +22748,9 @@ paths: type: number runners: type: array - items: *116 + items: *115 examples: - default: *144 + default: *143 headers: Link: *57 x-github: @@ -22894,7 +22773,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: - *66 - - *142 + - *141 - *19 - *17 responses: @@ -22912,9 +22791,9 @@ paths: type: number repositories: type: array - items: *145 + items: *144 examples: - default: &638 + default: &636 value: total_count: 1 repositories: @@ -23167,7 +23046,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: - *66 - - *142 + - *141 requestBody: required: true content: @@ -23212,8 +23091,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: - *66 - - *142 - - *134 + - *141 + - *133 responses: '204': description: Response @@ -23236,8 +23115,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: - *66 - - *142 - - *134 + - *141 + - *133 responses: '204': description: Response @@ -23261,7 +23140,7 @@ paths: url: https://docs.github.com/rest/actions/self-hosted-runner-groups#list-self-hosted-runners-in-a-group-for-an-organization parameters: - *66 - - *142 + - *141 - *17 - *19 responses: @@ -23279,7 +23158,7 @@ paths: type: number runners: type: array - items: &147 + items: &146 title: Self hosted runners description: A self hosted runner type: object @@ -23313,7 +23192,7 @@ paths: type: boolean labels: type: array - items: &150 + items: &149 title: Self hosted runner label description: A label for a self hosted runner type: object @@ -23343,7 +23222,7 @@ paths: - busy - labels examples: - default: &148 + default: &147 value: total_count: 2 runners: @@ -23403,7 +23282,7 @@ paths: url: https://docs.github.com/rest/actions/self-hosted-runner-groups#set-self-hosted-runners-in-a-group-for-an-organization parameters: - *66 - - *142 + - *141 requestBody: required: true content: @@ -23448,8 +23327,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: - *66 - - *142 - - &146 + - *141 + - &145 name: runner_id description: Unique identifier of the self-hosted runner. in: path @@ -23478,8 +23357,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: - *66 - - *142 - - *146 + - *141 + - *145 responses: '204': description: Response @@ -23527,9 +23406,9 @@ paths: type: integer runners: type: array - items: *147 + items: *146 examples: - default: *148 + default: *147 headers: Link: *57 x-github: @@ -23682,7 +23561,7 @@ paths: - runner - encoded_jit_config properties: - runner: *147 + runner: *146 encoded_jit_config: type: string description: The base64 encoded runner configuration. @@ -23745,7 +23624,7 @@ paths: description: Response content: application/json: - schema: &149 + schema: &148 title: Authentication Token description: Authentication Token type: object @@ -23824,7 +23703,7 @@ paths: description: Response content: application/json: - schema: *149 + schema: *148 examples: default: &340 value: @@ -23852,13 +23731,13 @@ paths: url: https://docs.github.com/rest/actions/self-hosted-runners#get-a-self-hosted-runner-for-an-organization parameters: - *66 - - *146 + - *145 responses: '200': description: Response content: application/json: - schema: *147 + schema: *146 examples: default: &341 value: @@ -23902,7 +23781,7 @@ paths: url: https://docs.github.com/rest/actions/self-hosted-runners#delete-a-self-hosted-runner-from-an-organization parameters: - *66 - - *146 + - *145 responses: '204': description: Response @@ -23929,9 +23808,9 @@ paths: url: https://docs.github.com/rest/actions/self-hosted-runners#list-labels-for-a-self-hosted-runner-for-an-organization parameters: - *66 - - *146 + - *145 responses: - '200': &151 + '200': &150 description: Response content: application/json: @@ -23945,7 +23824,7 @@ paths: type: integer labels: type: array - items: *150 + items: *149 examples: default: value: @@ -23985,7 +23864,7 @@ paths: url: https://docs.github.com/rest/actions/self-hosted-runners#add-custom-labels-to-a-self-hosted-runner-for-an-organization parameters: - *66 - - *146 + - *145 requestBody: required: true content: @@ -24009,7 +23888,7 @@ paths: - gpu - accelerated responses: - '200': *151 + '200': *150 '404': *6 '422': *7 x-github: @@ -24034,7 +23913,7 @@ paths: url: https://docs.github.com/rest/actions/self-hosted-runners#set-custom-labels-for-a-self-hosted-runner-for-an-organization parameters: - *66 - - *146 + - *145 requestBody: required: true content: @@ -24059,7 +23938,7 @@ paths: - gpu - accelerated responses: - '200': *151 + '200': *150 '404': *6 '422': *7 x-github: @@ -24084,7 +23963,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: - *66 - - *146 + - *145 responses: '200': &342 description: Response @@ -24100,7 +23979,7 @@ paths: type: integer labels: type: array - items: *150 + items: *149 examples: default: value: @@ -24142,7 +24021,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: - *66 - - *146 + - *145 - &343 name: name description: The name of a self-hosted runner's custom label. @@ -24151,7 +24030,7 @@ paths: schema: type: string responses: - '200': *151 + '200': *150 '404': *6 '422': *7 x-github: @@ -24194,7 +24073,7 @@ paths: type: integer secrets: type: array - items: &152 + items: &151 title: Actions Secret for an Organization description: Secrets for GitHub Actions for an organization. type: object @@ -24336,7 +24215,7 @@ paths: url: https://docs.github.com/rest/actions/secrets#get-an-organization-secret parameters: - *66 - - &153 + - &152 name: secret_name description: The name of the secret. in: path @@ -24348,7 +24227,7 @@ paths: description: Response content: application/json: - schema: *152 + schema: *151 examples: default: value: @@ -24379,7 +24258,7 @@ paths: url: https://docs.github.com/rest/actions/secrets#create-or-update-an-organization-secret parameters: - *66 - - *153 + - *152 requestBody: required: true content: @@ -24436,7 +24315,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *154 + schema: *153 examples: default: value: @@ -24463,7 +24342,7 @@ paths: url: https://docs.github.com/rest/actions/secrets#delete-an-organization-secret parameters: - *66 - - *153 + - *152 responses: '204': description: Response @@ -24490,7 +24369,7 @@ paths: url: https://docs.github.com/rest/actions/secrets#list-selected-repositories-for-an-organization-secret parameters: - *66 - - *153 + - *152 - *19 - *17 responses: @@ -24508,9 +24387,9 @@ paths: type: integer repositories: type: array - items: *145 + items: *144 examples: - default: &157 + default: &156 value: total_count: 1 repositories: @@ -24603,7 +24482,7 @@ paths: url: https://docs.github.com/rest/actions/secrets#set-selected-repositories-for-an-organization-secret parameters: - *66 - - *153 + - *152 requestBody: required: true content: @@ -24656,7 +24535,7 @@ paths: url: https://docs.github.com/rest/actions/secrets#add-selected-repository-to-an-organization-secret parameters: - *66 - - *153 + - *152 - name: repository_id in: path required: true @@ -24690,7 +24569,7 @@ paths: url: https://docs.github.com/rest/actions/secrets#remove-selected-repository-from-an-organization-secret parameters: - *66 - - *153 + - *152 - name: repository_id in: path required: true @@ -24747,7 +24626,7 @@ paths: type: integer variables: type: array - items: &155 + items: &154 title: Actions Variable for an Organization description: Organization variable for GitHub Actions. type: object @@ -24885,7 +24764,7 @@ paths: description: Response when creating a variable content: application/json: - schema: *154 + schema: *153 examples: default: value: @@ -24911,7 +24790,7 @@ paths: url: https://docs.github.com/rest/actions/variables#get-an-organization-variable parameters: - *66 - - &156 + - &155 name: name description: The name of the variable. in: path @@ -24923,7 +24802,7 @@ paths: description: Response content: application/json: - schema: *155 + schema: *154 examples: default: value: @@ -24954,7 +24833,7 @@ paths: url: https://docs.github.com/rest/actions/variables#update-an-organization-variable parameters: - *66 - - *156 + - *155 requestBody: required: true content: @@ -25017,7 +24896,7 @@ paths: url: https://docs.github.com/rest/actions/variables#delete-an-organization-variable parameters: - *66 - - *156 + - *155 responses: '204': description: Response @@ -25044,7 +24923,7 @@ paths: url: https://docs.github.com/rest/actions/variables#list-selected-repositories-for-an-organization-variable parameters: - *66 - - *156 + - *155 - *19 - *17 responses: @@ -25062,9 +24941,9 @@ paths: type: integer repositories: type: array - items: *145 + items: *144 examples: - default: *157 + default: *156 '409': description: Response when the visibility of the variable is not set to `selected` @@ -25091,7 +24970,7 @@ paths: url: https://docs.github.com/rest/actions/variables#set-selected-repositories-for-an-organization-variable parameters: - *66 - - *156 + - *155 requestBody: required: true content: @@ -25141,7 +25020,7 @@ paths: url: https://docs.github.com/rest/actions/variables#add-selected-repository-to-an-organization-variable parameters: - *66 - - *156 + - *155 - name: repository_id in: path required: true @@ -25176,7 +25055,7 @@ paths: url: https://docs.github.com/rest/actions/variables#remove-selected-repository-from-an-organization-variable parameters: - *66 - - *156 + - *155 - name: repository_id in: path required: true @@ -25321,7 +25200,7 @@ paths: type: integer deployment_records: type: array - items: &158 + items: &157 title: Artifact Deployment Record description: Artifact Metadata Deployment Record type: object @@ -25366,7 +25245,7 @@ paths: description: The ID of the provenance attestation associated with the deployment record. examples: - default: &159 + default: &158 value: total_count: 1 deployment_records: @@ -25541,9 +25420,9 @@ paths: type: integer deployment_records: type: array - items: *158 + items: *157 examples: - default: *159 + default: *158 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -25753,9 +25632,9 @@ paths: - 3 deployment_records: type: array - items: *158 + items: *157 examples: - default: *159 + default: *158 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -25885,12 +25764,12 @@ paths: required: - subject_digests examples: - default: &665 + default: &663 value: subject_digests: - sha256:abc123 - sha512:def456 - withPredicateType: &666 + withPredicateType: &664 value: subject_digests: - sha256:abc123 @@ -25949,7 +25828,7 @@ paths: description: The cursor to the previous page. description: Information about the current page. examples: - default: &667 + default: &665 value: attestations_subject_digests: - sha256:abc: @@ -26517,7 +26396,7 @@ paths: description: If specified, only campaigns with this state will be returned. in: query required: false - schema: &160 + schema: &159 title: Campaign state description: Indicates whether a campaign is open or closed type: string @@ -26543,7 +26422,7 @@ paths: application/json: schema: type: array - items: &161 + items: &160 title: Campaign summary description: The campaign metadata and alert stats. type: object @@ -26574,7 +26453,7 @@ paths: team_managers: description: The campaign team managers type: array - items: &180 + items: &179 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -26651,7 +26530,7 @@ paths: parent: anyOf: - type: 'null' - - &231 + - &230 title: Team Simple description: Groups of organization members that gives permissions on specified repositories. @@ -26787,7 +26666,7 @@ paths: - string - 'null' format: date-time - state: *160 + state: *159 contact_link: description: The contact link of the campaign. type: @@ -26885,7 +26764,7 @@ paths: headers: Link: *57 '404': *6 - '503': *106 + '503': *105 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -27010,9 +26889,9 @@ paths: description: Response content: application/json: - schema: *161 + schema: *160 examples: - default: &162 + default: &161 value: number: 3 created_at: '2024-02-14T12:29:18Z' @@ -27061,7 +26940,7 @@ paths: schema: *3 '429': description: Too Many Requests - '503': *106 + '503': *105 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -27095,16 +26974,16 @@ paths: description: Response content: application/json: - schema: *161 + schema: *160 examples: - default: *162 + default: *161 '404': *6 '422': description: Unprocessable Entity content: application/json: schema: *3 - '503': *106 + '503': *105 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -27175,7 +27054,7 @@ paths: - string - 'null' format: uri - state: *160 + state: *159 examples: default: value: @@ -27185,9 +27064,9 @@ paths: description: Response content: application/json: - schema: *161 + schema: *160 examples: - default: *162 + default: *161 '400': description: Bad Request content: @@ -27199,7 +27078,7 @@ paths: content: application/json: schema: *3 - '503': *106 + '503': *105 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -27231,7 +27110,7 @@ paths: '204': description: Deletion successful '404': *6 - '503': *106 + '503': *105 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -27261,7 +27140,7 @@ paths: but not both. in: query required: false - schema: &170 + schema: &169 type: string description: The name of the tool used to generate the code scanning analysis. - &394 @@ -27272,7 +27151,7 @@ paths: or `tool_name`, but not both. in: query required: false - schema: &171 + schema: &170 type: - string - 'null' @@ -27340,18 +27219,18 @@ paths: items: type: object properties: - number: *163 - created_at: *164 - updated_at: *165 - url: *166 - html_url: *167 + number: *162 + created_at: *163 + updated_at: *164 + url: *165 + html_url: *166 instances_url: &398 type: string description: The REST API URL for fetching the list of instances for an alert. format: uri readOnly: true - state: &172 + state: &171 type: - string - 'null' @@ -27361,12 +27240,12 @@ paths: - dismissed - fixed - - fixed_at: *168 + fixed_at: *167 dismissed_by: anyOf: - type: 'null' - *4 - dismissed_at: *169 + dismissed_at: *168 dismissed_reason: &399 type: - string @@ -27449,14 +27328,14 @@ paths: tool: &402 type: object properties: - name: *170 + name: *169 version: type: - string - 'null' description: The version of the tool used to generate the code scanning analysis. - guid: *171 + guid: *170 most_recent_instance: &403 type: object properties: @@ -27482,7 +27361,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: *172 + state: *171 commit_sha: type: string message: @@ -27777,7 +27656,7 @@ paths: headers: Link: *57 '404': *6 - '503': *106 + '503': *105 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -28131,7 +28010,7 @@ paths: application/json: schema: *45 examples: - default: *173 + default: *172 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -28159,9 +28038,9 @@ paths: description: Response content: application/json: - schema: *174 + schema: *173 examples: - default: *175 + default: *174 '304': *35 '403': *27 '404': *6 @@ -28213,7 +28092,7 @@ paths: - 32 - 91 responses: - '204': *176 + '204': *175 '400': *14 '403': *27 '404': *6 @@ -28248,7 +28127,7 @@ paths: application/json: schema: *45 examples: - default: *173 + default: *172 '304': *35 '403': *27 '404': *6 @@ -28533,7 +28412,7 @@ paths: - *66 - *47 responses: - '204': *176 + '204': *175 '400': *14 '403': *27 '404': *6 @@ -28671,7 +28550,7 @@ paths: default: value: default_for_new_repos: all - configuration: *173 + configuration: *172 '403': *27 '404': *6 x-github: @@ -28724,13 +28603,13 @@ paths: application/json: schema: type: array - items: *177 + items: *176 examples: default: summary: Example of code security configuration repositories value: - status: attached - repository: *178 + repository: *177 '403': *27 '404': *6 x-github: @@ -28770,7 +28649,7 @@ paths: type: integer codespaces: type: array - items: &221 + items: &220 type: object title: Codespace description: A codespace. @@ -28801,7 +28680,7 @@ paths: - 26a7c758-7299-4a73-b978-5a92a7ae98a0 owner: *4 billable_owner: *4 - repository: *145 + repository: *144 machine: anyOf: - type: 'null' @@ -29092,7 +28971,7 @@ paths: - pulls_url - recent_folders examples: - default: &222 + default: &221 value: total_count: 3 codespaces: @@ -29502,7 +29381,7 @@ paths: stop_url: https://api.github.com/user/codespaces/monalisa-octocat-hello-world-f8adfad99a/stop recent_folders: [] '304': *35 - '500': *105 + '500': *104 '401': *23 '403': *27 '404': *6 @@ -29568,7 +29447,7 @@ paths: description: Users are neither members nor collaborators of this organization. '404': *6 '422': *15 - '500': *105 + '500': *104 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -29623,7 +29502,7 @@ paths: description: Users are neither members nor collaborators of this organization. '404': *6 '422': *15 - '500': *105 + '500': *104 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -29677,7 +29556,7 @@ paths: description: Users are neither members nor collaborators of this organization. '404': *6 '422': *15 - '500': *105 + '500': *104 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -29716,7 +29595,7 @@ paths: type: integer secrets: type: array - items: &179 + items: &178 title: Codespaces Secret description: Secrets for a GitHub Codespace. type: object @@ -29854,13 +29733,13 @@ paths: url: https://docs.github.com/rest/codespaces/organization-secrets#get-an-organization-secret parameters: - *66 - - *153 + - *152 responses: '200': description: Response content: application/json: - schema: *179 + schema: *178 examples: default: &434 value: @@ -29890,7 +29769,7 @@ paths: url: https://docs.github.com/rest/codespaces/organization-secrets#create-or-update-an-organization-secret parameters: - *66 - - *153 + - *152 requestBody: required: true content: @@ -29945,7 +29824,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *154 + schema: *153 examples: default: value: @@ -29972,7 +29851,7 @@ paths: url: https://docs.github.com/rest/codespaces/organization-secrets#delete-an-organization-secret parameters: - *66 - - *153 + - *152 responses: '204': description: Response @@ -29998,7 +29877,7 @@ paths: url: https://docs.github.com/rest/codespaces/organization-secrets#list-selected-repositories-for-an-organization-secret parameters: - *66 - - *153 + - *152 - *19 - *17 responses: @@ -30016,9 +29895,9 @@ paths: type: integer repositories: type: array - items: *145 + items: *144 examples: - default: *157 + default: *156 '404': *6 x-github: githubCloudOnly: false @@ -30041,7 +29920,7 @@ paths: url: https://docs.github.com/rest/codespaces/organization-secrets#set-selected-repositories-for-an-organization-secret parameters: - *66 - - *153 + - *152 requestBody: required: true content: @@ -30092,7 +29971,7 @@ paths: url: https://docs.github.com/rest/codespaces/organization-secrets#add-selected-repository-to-an-organization-secret parameters: - *66 - - *153 + - *152 - name: repository_id in: path required: true @@ -30126,7 +30005,7 @@ paths: url: https://docs.github.com/rest/codespaces/organization-secrets#remove-selected-repository-from-an-organization-secret parameters: - *66 - - *153 + - *152 - name: repository_id in: path required: true @@ -30274,7 +30153,7 @@ paths: cli: enabled public_code_suggestions: block plan_type: business - '500': *105 + '500': *104 '401': *23 '403': *27 '404': *6 @@ -30329,7 +30208,7 @@ paths: currently being billed. seats: type: array - items: &224 + items: &223 title: Copilot Business Seat Detail description: Information about a Copilot Business seat assignment for a user, team, or organization. @@ -30347,7 +30226,7 @@ paths: description: The team through which the assignee is granted access to GitHub Copilot, if applicable. oneOf: - - *180 + - *179 - *58 type: - 'null' @@ -30479,7 +30358,7 @@ paths: site_admin: false headers: Link: *57 - '500': *105 + '500': *104 '401': *23 '403': *27 '404': *6 @@ -30554,7 +30433,7 @@ paths: default: value: seats_created: 5 - '500': *105 + '500': *104 '401': *23 '403': *27 '404': *6 @@ -30632,7 +30511,7 @@ paths: default: value: seats_cancelled: 5 - '500': *105 + '500': *104 '401': *23 '403': *27 '404': *6 @@ -30711,7 +30590,7 @@ paths: default: value: seats_created: 5 - '500': *105 + '500': *104 '401': *23 '403': *27 '404': *6 @@ -30789,7 +30668,7 @@ paths: default: value: seats_cancelled: 5 - '500': *105 + '500': *104 '401': *23 '403': *27 '404': *6 @@ -31274,7 +31153,7 @@ paths: custom_model_training_date: '2024-02-01' total_pr_summaries_created: 10 total_engaged_users: 4 - '500': *105 + '500': *104 '403': *27 '404': *6 '422': &304 @@ -31305,11 +31184,11 @@ paths: url: https://docs.github.com/rest/dependabot/alerts#list-dependabot-alerts-for-an-organization parameters: - *66 + - *180 - *181 - *182 - *183 - *184 - - *185 - name: artifact_registry_url in: query description: A comma-separated list of artifact registry URLs. If specified, @@ -31347,8 +31226,8 @@ paths: Can be: `critical-resource`, `internet-exposed`, `sensitive-data`, `lateral-movement` schema: type: string + - *185 - *186 - - *187 - *51 - *43 - *44 @@ -31360,9 +31239,9 @@ paths: application/json: schema: type: array - items: *188 + items: *187 examples: - default: *189 + default: *188 '304': *35 '400': *14 '403': *27 @@ -31406,7 +31285,7 @@ paths: type: integer secrets: type: array - items: &190 + items: &189 title: Dependabot Secret for an Organization description: Secrets for GitHub Dependabot for an organization. type: object @@ -31528,13 +31407,13 @@ paths: url: https://docs.github.com/rest/dependabot/secrets#get-an-organization-secret parameters: - *66 - - *153 + - *152 responses: '200': description: Response content: application/json: - schema: *190 + schema: *189 examples: default: value: @@ -31563,7 +31442,7 @@ paths: url: https://docs.github.com/rest/dependabot/secrets#create-or-update-an-organization-secret parameters: - *66 - - *153 + - *152 requestBody: required: true content: @@ -31622,7 +31501,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *154 + schema: *153 examples: default: value: @@ -31647,7 +31526,7 @@ paths: url: https://docs.github.com/rest/dependabot/secrets#delete-an-organization-secret parameters: - *66 - - *153 + - *152 responses: '204': description: Response @@ -31672,7 +31551,7 @@ paths: url: https://docs.github.com/rest/dependabot/secrets#list-selected-repositories-for-an-organization-secret parameters: - *66 - - *153 + - *152 - *19 - *17 responses: @@ -31690,9 +31569,9 @@ paths: type: integer repositories: type: array - items: *145 + items: *144 examples: - default: *157 + default: *156 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -31714,7 +31593,7 @@ paths: url: https://docs.github.com/rest/dependabot/secrets#set-selected-repositories-for-an-organization-secret parameters: - *66 - - *153 + - *152 requestBody: required: true content: @@ -31765,7 +31644,7 @@ paths: url: https://docs.github.com/rest/dependabot/secrets#add-selected-repository-to-an-organization-secret parameters: - *66 - - *153 + - *152 - name: repository_id in: path required: true @@ -31797,7 +31676,7 @@ paths: url: https://docs.github.com/rest/dependabot/secrets#remove-selected-repository-from-an-organization-secret parameters: - *66 - - *153 + - *152 - name: repository_id in: path required: true @@ -31835,7 +31714,7 @@ paths: application/json: schema: type: array - items: &233 + items: &232 title: Package description: A software package type: object @@ -31888,7 +31767,7 @@ paths: repository: anyOf: - type: 'null' - - *145 + - *144 created_at: type: string format: date-time @@ -31906,7 +31785,7 @@ paths: - created_at - updated_at examples: - default: &234 + default: &233 value: - id: 197 name: hello_docker @@ -32076,7 +31955,7 @@ paths: application/json: schema: type: array - items: &213 + items: &212 title: Organization Invitation description: Organization Invitation type: object @@ -32130,7 +32009,7 @@ paths: - invitation_teams_url - node_id examples: - default: &214 + default: &213 value: - id: 1 login: monalisa @@ -32197,7 +32076,7 @@ paths: application/json: schema: type: array - items: &191 + items: &190 title: Org Hook description: Org Hook type: object @@ -32382,9 +32261,9 @@ paths: description: Response content: application/json: - schema: *191 + schema: *190 examples: - default: &192 + default: &191 value: id: 1 url: https://api.github.com/orgs/octocat/hooks/1 @@ -32432,7 +32311,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#get-an-organization-webhook parameters: - *66 - - &193 + - &192 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. @@ -32445,9 +32324,9 @@ paths: description: Response content: application/json: - schema: *191 + schema: *190 examples: - default: *192 + default: *191 '404': *6 x-github: githubCloudOnly: false @@ -32475,7 +32354,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#update-an-organization-webhook parameters: - *66 - - *193 + - *192 requestBody: required: false content: @@ -32521,7 +32400,7 @@ paths: description: Response content: application/json: - schema: *191 + schema: *190 examples: default: value: @@ -32563,7 +32442,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#delete-an-organization-webhook parameters: - *66 - - *193 + - *192 responses: '204': description: Response @@ -32591,7 +32470,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#get-a-webhook-configuration-for-an-organization parameters: - *66 - - *193 + - *192 responses: '200': description: Response @@ -32622,7 +32501,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#update-a-webhook-configuration-for-an-organization parameters: - *66 - - *193 + - *192 requestBody: required: false content: @@ -32673,9 +32552,9 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#list-deliveries-for-an-organization-webhook parameters: - *66 - - *193 + - *192 - *17 - - *194 + - *193 responses: '200': description: Response @@ -32683,9 +32562,9 @@ paths: application/json: schema: type: array - items: *195 + items: *194 examples: - default: *196 + default: *195 '400': *14 '422': *15 x-github: @@ -32711,16 +32590,16 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#get-a-webhook-delivery-for-an-organization-webhook parameters: - *66 - - *193 + - *192 - *16 responses: '200': description: Response content: application/json: - schema: *197 + schema: *196 examples: - default: *198 + default: *197 '400': *14 '422': *15 x-github: @@ -32746,7 +32625,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#redeliver-a-delivery-for-an-organization-webhook parameters: - *66 - - *193 + - *192 - *16 responses: '202': *37 @@ -32776,7 +32655,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#ping-an-organization-webhook parameters: - *66 - - *193 + - *192 responses: '204': description: Response @@ -32799,7 +32678,7 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-route-stats-by-actor parameters: - *66 - - &203 + - &202 name: actor_type in: path description: The type of the actor @@ -32812,14 +32691,14 @@ paths: - fine_grained_pat - oauth_app - github_app_user_to_server - - &204 + - &203 name: actor_id in: path description: The ID of the actor required: true schema: type: integer - - &199 + - &198 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`.' @@ -32827,7 +32706,7 @@ paths: required: true schema: type: string - - &200 + - &199 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) @@ -32922,12 +32801,12 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-subject-stats parameters: - *66 + - *198 - *199 - - *200 - *19 - *17 - *51 - - &209 + - &208 name: sort description: The property to sort the results by. in: query @@ -33007,14 +32886,14 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-summary-stats parameters: - *66 + - *198 - *199 - - *200 responses: '200': description: Response content: application/json: - schema: &201 + schema: &200 title: Summary Stats description: API Insights usage summary stats for an organization type: object @@ -33030,7 +32909,7 @@ paths: type: integer format: int64 examples: - default: &202 + default: &201 value: total_request_count: 34225 rate_limited_request_count: 23 @@ -33051,23 +32930,23 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-summary-stats-by-user parameters: - *66 - - &205 + - &204 name: user_id in: path description: The ID of the user to query for stats required: true schema: type: string + - *198 - *199 - - *200 responses: '200': description: Response content: application/json: - schema: *201 + schema: *200 examples: - default: *202 + default: *201 x-github: enabledForGitHubApps: true category: orgs @@ -33086,18 +32965,18 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-summary-stats-by-actor parameters: - *66 + - *198 - *199 - - *200 + - *202 - *203 - - *204 responses: '200': description: Response content: application/json: - schema: *201 + schema: *200 examples: - default: *202 + default: *201 x-github: enabledForGitHubApps: true category: orgs @@ -33115,9 +32994,9 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-time-stats parameters: - *66 + - *198 - *199 - - *200 - - &206 + - &205 name: timestamp_increment description: The increment of time used to breakdown the query results (5m, 10m, 1h, etc.) @@ -33130,7 +33009,7 @@ paths: description: Response content: application/json: - schema: &207 + schema: &206 title: Time Stats description: API Insights usage time stats for an organization type: array @@ -33146,7 +33025,7 @@ paths: type: integer format: int64 examples: - default: &208 + default: &207 value: - timestamp: '2024-09-11T15:00:00Z' total_request_count: 34225 @@ -33183,18 +33062,18 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-time-stats-by-user parameters: - *66 - - *205 + - *204 + - *198 - *199 - - *200 - - *206 + - *205 responses: '200': description: Response content: application/json: - schema: *207 + schema: *206 examples: - default: *208 + default: *207 x-github: enabledForGitHubApps: true category: orgs @@ -33212,19 +33091,19 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-time-stats-by-actor parameters: - *66 + - *202 - *203 - - *204 + - *198 - *199 - - *200 - - *206 + - *205 responses: '200': description: Response content: application/json: - schema: *207 + schema: *206 examples: - default: *208 + default: *207 x-github: enabledForGitHubApps: true category: orgs @@ -33242,13 +33121,13 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-user-stats parameters: - *66 - - *205 + - *204 + - *198 - *199 - - *200 - *19 - *17 - *51 - - *209 + - *208 - name: actor_name_substring in: query description: Providing a substring will filter results where the actor name @@ -33498,12 +33377,12 @@ paths: application/json: schema: anyOf: - - &211 + - &210 title: Interaction Limits description: Interaction limit settings. type: object properties: - limit: &210 + limit: &209 type: string description: The type of GitHub user that can comment, open issues, or create pull requests while the interaction limit @@ -33531,7 +33410,7 @@ paths: properties: {} additionalProperties: false examples: - default: &212 + default: &211 value: limit: collaborators_only origin: organization @@ -33566,7 +33445,7 @@ paths: duration type: object properties: - limit: *210 + limit: *209 expiry: type: string description: 'The duration of the interaction restriction. Default: @@ -33591,9 +33470,9 @@ paths: description: Response content: application/json: - schema: *211 + schema: *210 examples: - default: *212 + default: *211 '422': *15 x-github: githubCloudOnly: false @@ -33669,9 +33548,9 @@ paths: application/json: schema: type: array - items: *213 + items: *212 examples: - default: *214 + default: *213 headers: Link: *57 '404': *6 @@ -33748,7 +33627,7 @@ paths: description: Response content: application/json: - schema: *213 + schema: *212 examples: default: value: @@ -33803,7 +33682,7 @@ paths: url: https://docs.github.com/rest/orgs/members#cancel-an-organization-invitation parameters: - *66 - - &215 + - &214 name: invitation_id description: The unique identifier of the invitation. in: path @@ -33834,7 +33713,7 @@ paths: url: https://docs.github.com/rest/orgs/members#list-organization-invitation-teams parameters: - *66 - - *215 + - *214 - *17 - *19 responses: @@ -33844,9 +33723,9 @@ paths: application/json: schema: type: array - items: *180 + items: *179 examples: - default: &232 + default: &231 value: - id: 1 node_id: MDQ6VGVhbTE= @@ -33889,7 +33768,7 @@ paths: application/json: schema: type: array - items: *216 + items: *215 examples: default: value: @@ -33977,9 +33856,9 @@ paths: description: Response content: application/json: - schema: *216 + schema: *215 examples: - default: &217 + default: &216 value: id: 410 node_id: IT_kwDNAd3NAZo @@ -34012,7 +33891,7 @@ paths: url: https://docs.github.com/rest/orgs/issue-types#update-issue-type-for-an-organization parameters: - *66 - - &218 + - &217 name: issue_type_id description: The unique identifier of the issue type. in: path @@ -34068,9 +33947,9 @@ paths: description: Response content: application/json: - schema: *216 + schema: *215 examples: - default: *217 + default: *216 '404': *6 '422': *7 x-github: @@ -34095,7 +33974,7 @@ paths: url: https://docs.github.com/rest/orgs/issue-types#delete-issue-type-for-an-organization parameters: - *66 - - *218 + - *217 responses: '204': description: Response @@ -34158,7 +34037,7 @@ paths: - closed - all default: open - - *219 + - *218 - name: type description: Can be the name of an issue type. in: query @@ -34189,7 +34068,7 @@ paths: type: array items: *71 examples: - default: *220 + default: *219 headers: Link: *57 '404': *6 @@ -34348,11 +34227,11 @@ paths: type: integer codespaces: type: array - items: *221 + items: *220 examples: - default: *222 + default: *221 '304': *35 - '500': *105 + '500': *104 '401': *23 '403': *27 '404': *6 @@ -34377,7 +34256,7 @@ paths: parameters: - *66 - *62 - - &223 + - &222 name: codespace_name in: path required: true @@ -34387,7 +34266,7 @@ paths: responses: '202': *37 '304': *35 - '500': *105 + '500': *104 '401': *23 '403': *27 '404': *6 @@ -34412,13 +34291,13 @@ paths: parameters: - *66 - *62 - - *223 + - *222 responses: '200': description: Response content: application/json: - schema: *221 + schema: *220 examples: default: &428 value: @@ -34562,7 +34441,7 @@ paths: recent_folders: [] template: '304': *35 - '500': *105 + '500': *104 '401': *23 '403': *27 '404': *6 @@ -34600,7 +34479,7 @@ paths: description: The user's GitHub Copilot seat details, including usage. content: application/json: - schema: *224 + schema: *223 examples: default: value: @@ -34644,7 +34523,7 @@ paths: members_url: https://api.github.com/teams/1/members{/member} repositories_url: https://api.github.com/teams/1/repos parent: - '500': *105 + '500': *104 '401': *23 '403': *27 '404': *6 @@ -34676,7 +34555,7 @@ paths: description: Response content: application/json: - schema: &225 + schema: &224 title: Org Membership description: Org Membership type: object @@ -34745,7 +34624,7 @@ paths: - organization - user examples: - response-if-user-has-an-active-admin-membership-with-organization: &226 + response-if-user-has-an-active-admin-membership-with-organization: &225 summary: Response if user has an active admin membership with organization value: url: https://api.github.com/orgs/octocat/memberships/defunkt @@ -34846,9 +34725,9 @@ paths: description: Response content: application/json: - schema: *225 + schema: *224 examples: - response-if-user-already-had-membership-with-organization: *226 + response-if-user-already-had-membership-with-organization: *225 '422': *15 '403': *27 x-github: @@ -34920,7 +34799,7 @@ paths: application/json: schema: type: array - items: &227 + items: &226 title: Migration description: A migration. type: object @@ -35258,7 +35137,7 @@ paths: description: Response content: application/json: - schema: *227 + schema: *226 examples: default: value: @@ -35437,7 +35316,7 @@ paths: url: https://docs.github.com/rest/migrations/orgs#get-an-organization-migration-status parameters: - *66 - - &228 + - &227 name: migration_id description: The unique identifier of the migration. in: path @@ -35465,7 +35344,7 @@ paths: * `failed`, which means the migration failed. content: application/json: - schema: *227 + schema: *226 examples: default: value: @@ -35635,7 +35514,7 @@ paths: url: https://docs.github.com/rest/migrations/orgs#download-an-organization-migration-archive parameters: - *66 - - *228 + - *227 responses: '302': description: Response @@ -35657,7 +35536,7 @@ paths: url: https://docs.github.com/rest/migrations/orgs#delete-an-organization-migration-archive parameters: - *66 - - *228 + - *227 responses: '204': description: Response @@ -35681,8 +35560,8 @@ paths: url: https://docs.github.com/rest/migrations/orgs#unlock-an-organization-repository parameters: - *66 - - *228 - - &650 + - *227 + - &648 name: repo_name description: repo_name parameter in: path @@ -35710,7 +35589,7 @@ paths: url: https://docs.github.com/rest/migrations/orgs#list-repositories-in-an-organization-migration parameters: - *66 - - *228 + - *227 - *17 - *19 responses: @@ -35720,9 +35599,9 @@ paths: application/json: schema: type: array - items: *145 + items: *144 examples: - default: &239 + default: &238 value: - id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -35875,7 +35754,7 @@ paths: roles: type: array description: The list of organization roles available to the organization. - items: &230 + items: &229 title: Organization Role description: Organization roles type: object @@ -36052,7 +35931,7 @@ paths: parameters: - *66 - *67 - - &229 + - &228 name: role_id description: The unique identifier of the role. in: path @@ -36089,7 +35968,7 @@ paths: parameters: - *66 - *67 - - *229 + - *228 responses: '204': description: Response @@ -36142,7 +36021,7 @@ paths: parameters: - *66 - *62 - - *229 + - *228 responses: '204': description: Response @@ -36174,7 +36053,7 @@ paths: parameters: - *66 - *62 - - *229 + - *228 responses: '204': description: Response @@ -36203,13 +36082,13 @@ paths: url: https://docs.github.com/rest/orgs/organization-roles#get-an-organization-role parameters: - *66 - - *229 + - *228 responses: '200': description: Response content: application/json: - schema: *230 + schema: *229 examples: default: value: @@ -36260,7 +36139,7 @@ paths: url: https://docs.github.com/rest/orgs/organization-roles#list-teams-that-are-assigned-to-an-organization-role parameters: - *66 - - *229 + - *228 - *17 - *19 responses: @@ -36339,7 +36218,7 @@ paths: parent: anyOf: - type: 'null' - - *231 + - *230 type: description: The ownership type of the team type: string @@ -36372,7 +36251,7 @@ paths: - type - parent examples: - default: *232 + default: *231 headers: Link: *57 '404': @@ -36402,7 +36281,7 @@ paths: url: https://docs.github.com/rest/orgs/organization-roles#list-users-that-are-assigned-to-an-organization-role parameters: - *66 - - *229 + - *228 - *17 - *19 responses: @@ -36431,7 +36310,7 @@ paths: inherited_from: description: Team the user has gotten the role through type: array - items: *231 + items: *230 name: type: - string @@ -36741,7 +36620,7 @@ paths: - nuget - container - *66 - - &651 + - &649 name: visibility description: |- The selected visibility of the packages. This parameter is optional and only filters an existing result set. @@ -36777,12 +36656,12 @@ paths: application/json: schema: type: array - items: *233 + items: *232 examples: - default: *234 + default: *233 '403': *27 '401': *23 - '400': &653 + '400': &651 description: The value of `per_page` multiplied by `page` cannot be greater than 10000. x-github: @@ -36804,7 +36683,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-for-an-organization parameters: - - &235 + - &234 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 @@ -36822,7 +36701,7 @@ paths: - docker - nuget - container - - &236 + - &235 name: package_name description: The name of the package. in: path @@ -36835,7 +36714,7 @@ paths: description: Response content: application/json: - schema: *233 + schema: *232 examples: default: value: @@ -36887,8 +36766,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-a-package-for-an-organization parameters: + - *234 - *235 - - *236 - *66 responses: '204': @@ -36921,8 +36800,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-a-package-for-an-organization parameters: + - *234 - *235 - - *236 - *66 - name: token description: package token @@ -36955,8 +36834,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: + - *234 - *235 - - *236 - *66 - *19 - *17 @@ -36977,7 +36856,7 @@ paths: application/json: schema: type: array - items: &237 + items: &236 title: Package Version description: A version of a software package type: object @@ -37112,10 +36991,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-version-for-an-organization parameters: + - *234 - *235 - - *236 - *66 - - &238 + - &237 name: package_version_id description: Unique identifier of the package version. in: path @@ -37127,7 +37006,7 @@ paths: description: Response content: application/json: - schema: *237 + schema: *236 examples: default: value: @@ -37163,10 +37042,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-package-version-for-an-organization parameters: + - *234 - *235 - - *236 - *66 - - *238 + - *237 responses: '204': description: Response @@ -37198,10 +37077,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-package-version-for-an-organization parameters: + - *234 - *235 - - *236 - *66 - - *238 + - *237 responses: '204': description: Response @@ -37231,7 +37110,7 @@ paths: - *66 - *17 - *19 - - &240 + - &239 name: sort description: The property by which to sort the results. in: query @@ -37242,7 +37121,7 @@ paths: - created_at default: created_at - *51 - - &241 + - &240 name: owner description: A list of owner usernames to use to filter the results. in: query @@ -37254,7 +37133,7 @@ paths: type: string examples: - owner[]=octocat1,owner[]=octocat2 - - &242 + - &241 name: repository description: The name of the repository to use to filter the results. in: query @@ -37263,7 +37142,7 @@ paths: type: string examples: - Hello-World - - &243 + - &242 name: permission description: The permission to use to filter the results. in: query @@ -37272,7 +37151,7 @@ paths: type: string examples: - issues_read - - &244 + - &243 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) @@ -37282,7 +37161,7 @@ paths: schema: type: string format: date-time - - &245 + - &244 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) @@ -37292,7 +37171,7 @@ paths: schema: type: string format: date-time - - &246 + - &245 name: token_id description: The ID of the token in: query @@ -37305,7 +37184,7 @@ paths: examples: - token_id[]=1,token_id[]=2 responses: - '500': *105 + '500': *104 '422': *15 '404': *6 '403': *27 @@ -37502,7 +37381,7 @@ paths: action: deny reason: Access is too broad. responses: - '500': *105 + '500': *104 '422': *15 '404': *6 '403': *27 @@ -37564,11 +37443,11 @@ paths: action: deny reason: This request is denied because the access is too broad. responses: - '500': *105 + '500': *104 '422': *15 '404': *6 '403': *27 - '204': *176 + '204': *175 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -37600,7 +37479,7 @@ paths: - *17 - *19 responses: - '500': *105 + '500': *104 '404': *6 '403': *27 '200': @@ -37609,9 +37488,9 @@ paths: application/json: schema: type: array - items: *145 + items: *144 examples: - default: *239 + default: *238 headers: Link: *57 x-github: @@ -37637,16 +37516,16 @@ paths: - *66 - *17 - *19 - - *240 + - *239 - *51 + - *240 - *241 - *242 - *243 - *244 - *245 - - *246 responses: - '500': *105 + '500': *104 '422': *15 '404': *6 '403': *27 @@ -37830,7 +37709,7 @@ paths: - 1296269 - 1296280 responses: - '500': *105 + '500': *104 '404': *6 '202': *37 '403': *27 @@ -37883,9 +37762,9 @@ paths: value: action: revoke responses: - '500': *105 + '500': *104 '404': *6 - '204': *176 + '204': *175 '403': *27 '422': *15 x-github: @@ -37917,7 +37796,7 @@ paths: - *17 - *19 responses: - '500': *105 + '500': *104 '404': *6 '403': *27 '200': @@ -37926,9 +37805,9 @@ paths: application/json: schema: type: array - items: *145 + items: *144 examples: - default: *239 + default: *238 headers: Link: *57 x-github: @@ -37970,7 +37849,7 @@ paths: type: integer configurations: type: array - items: &247 + items: &246 title: Organization private registry description: Private registry configuration for an organization type: object @@ -38266,7 +38145,7 @@ paths: - created_at - updated_at examples: - org-private-registry-with-selected-visibility: &248 + org-private-registry-with-selected-visibility: &247 value: name: MAVEN_REPOSITORY_SECRET registry_type: maven_repository @@ -38358,15 +38237,15 @@ paths: url: https://docs.github.com/rest/private-registries/organization-configurations#get-a-private-registry-for-an-organization parameters: - *66 - - *153 + - *152 responses: '200': description: The specified private registry configuration for the organization content: application/json: - schema: *247 + schema: *246 examples: - default: *248 + default: *247 '404': *6 x-github: githubCloudOnly: false @@ -38388,7 +38267,7 @@ paths: url: https://docs.github.com/rest/private-registries/organization-configurations#update-a-private-registry-for-an-organization parameters: - *66 - - *153 + - *152 requestBody: required: true content: @@ -38494,7 +38373,7 @@ paths: url: https://docs.github.com/rest/private-registries/organization-configurations#delete-a-private-registry-for-an-organization parameters: - *66 - - *153 + - *152 responses: '204': description: Response @@ -38534,7 +38413,7 @@ paths: application/json: schema: type: array - items: &249 + items: &248 title: Projects v2 Project description: A projects v2 project type: object @@ -38608,7 +38487,7 @@ paths: latest_status_update: anyOf: - type: 'null' - - &734 + - &732 title: Projects v2 Status Update description: An status update belonging to a project type: object @@ -38693,7 +38572,7 @@ paths: - deleted_at - deleted_by examples: - default: &250 + default: &249 value: id: 2 node_id: MDc6UHJvamVjdDEwMDI2MDM= @@ -38796,7 +38675,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/projects#get-project-for-organization parameters: - - &251 + - &250 name: project_number description: The project's number. in: path @@ -38809,9 +38688,9 @@ paths: description: Response content: application/json: - schema: *249 + schema: *248 examples: - default: *250 + default: *249 headers: Link: *57 '304': *35 @@ -38834,7 +38713,7 @@ paths: url: https://docs.github.com/rest/projects/drafts#create-draft-item-for-organization-owned-project parameters: - *66 - - *251 + - *250 requestBody: required: true description: Details of the draft item to create in the project. @@ -38868,7 +38747,7 @@ paths: description: Response content: application/json: - schema: &256 + schema: &255 title: Projects v2 Item description: An item belonging to a project type: object @@ -39002,7 +38881,7 @@ paths: milestone: anyOf: - type: 'null' - - *252 + - *251 active_lock_reason: type: - string @@ -39057,7 +38936,7 @@ paths: type: - array - 'null' - items: *180 + items: *179 head: type: object properties: @@ -39101,7 +38980,7 @@ paths: _links: type: object properties: - comments: &253 + comments: &252 title: Link description: Hypermedia Link type: object @@ -39110,13 +38989,13 @@ paths: type: string required: - href - commits: *253 - statuses: *253 - html: *253 - issue: *253 - review_comments: *253 - review_comment: *253 - self: *253 + commits: *252 + statuses: *252 + html: *252 + issue: *252 + review_comments: *252 + review_comment: *252 + self: *252 required: - comments - commits @@ -39127,7 +39006,7 @@ paths: - review_comment - self author_association: *72 - auto_merge: &546 + auto_merge: &544 title: Auto merge description: The status of auto merging a pull request. type: @@ -39229,7 +39108,7 @@ paths: - created_at - updated_at description: The content represented by the item. - content_type: &255 + content_type: &254 title: Projects v2 Item Content Type description: The type of content tracked in a project item type: string @@ -39273,7 +39152,7 @@ paths: - updated_at - archived_at examples: - draft_issue: &257 + draft_issue: &256 value: id: 17 node_id: PVTI_lADOANN5s84ACbL0zgBueEI @@ -39347,7 +39226,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/fields#list-project-fields-for-organization parameters: - - *251 + - *250 - *66 - *17 - *43 @@ -39359,7 +39238,7 @@ paths: application/json: schema: type: array - items: &254 + items: &253 title: Projects v2 Field description: A field inside a projects v2 project type: object @@ -39509,7 +39388,7 @@ paths: - updated_at - project_url examples: - default: &670 + default: &668 value: - id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -39639,7 +39518,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/fields#add-a-field-to-an-organization-owned-project parameters: - - *251 + - *250 - *66 requestBody: required: true @@ -39686,7 +39565,7 @@ paths: description: The options available for single select fields. At least one option must be provided when creating a single select field. - items: &671 + items: &669 type: object properties: name: @@ -39722,7 +39601,7 @@ paths: description: The field's data type. enum: - iteration - iteration_configuration: &672 + iteration_configuration: &670 type: object description: The configuration for iteration fields. properties: @@ -39771,7 +39650,7 @@ paths: value: name: Due date data_type: date - single_select_field: &673 + single_select_field: &671 summary: Create a single select field value: name: Priority @@ -39798,7 +39677,7 @@ paths: description: raw: High priority items html: High priority items - iteration_field: &674 + iteration_field: &672 summary: Create an iteration field value: name: Sprint @@ -39822,9 +39701,9 @@ paths: description: Response for adding a field to an organization-owned project. content: application/json: - schema: *254 + schema: *253 examples: - text_field: &675 + text_field: &673 value: id: 24680 node_id: PVTF_lADOABCD2468024680 @@ -39833,7 +39712,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: &676 + number_field: &674 value: id: 13579 node_id: PVTF_lADOABCD1357913579 @@ -39842,7 +39721,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: &677 + date_field: &675 value: id: 98765 node_id: PVTF_lADOABCD9876598765 @@ -39851,7 +39730,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: &678 + single_select_field: &676 value: id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -39885,7 +39764,7 @@ paths: raw: High priority items created_at: '2022-04-28T12:00:00Z' updated_at: '2022-04-28T12:00:00Z' - iteration_field: &679 + iteration_field: &677 value: id: 11223 node_id: PVTF_lADOABCD1122311223 @@ -39930,8 +39809,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/fields#get-project-field-for-organization parameters: - - *251 - - &680 + - *250 + - &678 name: field_id description: The unique identifier of the field. in: path @@ -39944,9 +39823,9 @@ paths: description: Response content: application/json: - schema: *254 + schema: *253 examples: - default: &681 + default: &679 value: id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -40002,7 +39881,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#list-items-for-an-organization-owned-project parameters: - - *251 + - *250 - *66 - 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) @@ -40035,7 +39914,7 @@ paths: application/json: schema: type: array - items: &258 + items: &257 title: Projects v2 Item description: An item belonging to a project type: object @@ -40052,7 +39931,7 @@ paths: description: The API URL of the project that contains this item. examples: - https://api.github.com/users/monalisa/2/projectsV2/3 - content_type: *255 + content_type: *254 content: type: - object @@ -40102,7 +39981,7 @@ paths: - updated_at - archived_at examples: - default: &259 + default: &258 value: id: 13 node_id: PVTI_lAAFAQ0 @@ -40799,7 +40678,7 @@ paths: url: https://docs.github.com/rest/projects/items#add-item-to-organization-owned-project parameters: - *66 - - *251 + - *250 requestBody: required: true description: Details of the item to add to the project. You can specify either @@ -40869,22 +40748,22 @@ paths: description: Response content: application/json: - schema: *256 + schema: *255 examples: issue_with_id: summary: Response for adding an issue using its unique ID - value: *257 + value: *256 pull_request_with_id: summary: Response for adding a pull request using its unique ID - value: *257 + value: *256 issue_with_nwo: summary: Response for adding an issue using repository owner, name, and issue number - value: *257 + value: *256 pull_request_with_nwo: summary: Response for adding a pull request using repository owner, name, and PR number - value: *257 + value: *256 '304': *35 '403': *27 '401': *23 @@ -40904,9 +40783,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#get-an-item-for-an-organization-owned-project parameters: - - *251 + - *250 - *66 - - &260 + - &259 name: item_id description: The unique identifier of the project item. in: path @@ -40932,9 +40811,9 @@ paths: description: Response content: application/json: - schema: *258 + schema: *257 examples: - default: *259 + default: *258 headers: Link: *57 '304': *35 @@ -40955,9 +40834,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#update-project-item-for-organization parameters: - - *251 + - *250 - *66 - - *260 + - *259 requestBody: required: true description: Field updates to apply to the project item. Only text, number, @@ -41030,13 +40909,13 @@ paths: description: Response content: application/json: - schema: *258 + schema: *257 examples: - text_field: *259 - number_field: *259 - date_field: *259 - single_select_field: *259 - iteration_field: *259 + text_field: *258 + number_field: *258 + date_field: *258 + single_select_field: *258 + iteration_field: *258 '401': *23 '403': *27 '404': *6 @@ -41056,9 +40935,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#delete-project-item-for-organization parameters: - - *251 + - *250 - *66 - - *260 + - *259 responses: '204': description: Response @@ -41081,9 +40960,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#list-items-for-an-organization-project-view parameters: - - *251 + - *250 - *66 - - &682 + - &680 name: view_number description: The number that identifies the project view. in: path @@ -41115,9 +40994,9 @@ paths: application/json: schema: type: array - items: *258 + items: *257 examples: - default: *259 + default: *258 headers: Link: *57 '304': *35 @@ -41150,7 +41029,7 @@ paths: application/json: schema: type: array - items: &261 + items: &260 title: Organization Custom Property description: Custom property defined on an organization type: object @@ -41225,7 +41104,7 @@ paths: - property_name - value_type examples: - default: &262 + default: &261 value: - property_name: environment url: https://api.github.com/orgs/github/properties/schema/environment @@ -41284,7 +41163,7 @@ paths: properties: type: array description: The array of custom properties to create or update. - items: *261 + items: *260 minItems: 1 maxItems: 100 required: @@ -41314,9 +41193,9 @@ paths: application/json: schema: type: array - items: *261 + items: *260 examples: - default: *262 + default: *261 '403': *27 '404': *6 x-github: @@ -41338,7 +41217,7 @@ paths: url: https://docs.github.com/rest/orgs/custom-properties#get-a-custom-property-for-an-organization parameters: - *66 - - &263 + - &262 name: custom_property_name description: The custom property name in: path @@ -41350,9 +41229,9 @@ paths: description: Response content: application/json: - schema: *261 + schema: *260 examples: - default: &264 + default: &263 value: property_name: environment url: https://api.github.com/orgs/github/properties/schema/environment @@ -41387,7 +41266,7 @@ paths: url: https://docs.github.com/rest/orgs/custom-properties#create-or-update-a-custom-property-for-an-organization parameters: - *66 - - *263 + - *262 requestBody: required: true content: @@ -41464,9 +41343,9 @@ paths: description: Response content: application/json: - schema: *261 + schema: *260 examples: - default: *264 + default: *263 '403': *27 '404': *6 x-github: @@ -41490,9 +41369,9 @@ paths: url: https://docs.github.com/rest/orgs/custom-properties#remove-a-custom-property-for-an-organization parameters: - *66 - - *263 + - *262 responses: - '204': *176 + '204': *175 '403': *27 '404': *6 x-github: @@ -41554,7 +41433,28 @@ paths: - octocat/Hello-World properties: type: array - items: *104 + items: &264 + 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 + type: + - 'null' + - string + - array + required: + - property_name + - value description: List of custom property names and associated values required: - repository_id @@ -41623,7 +41523,7 @@ paths: type: array description: List of custom property names and associated values to apply to the repositories. - items: *104 + items: *264 required: - repository_names - properties @@ -41813,9 +41713,9 @@ paths: application/json: schema: type: array - items: *145 + items: *144 examples: - default: *239 + default: *238 headers: Link: *57 x-github: @@ -43118,7 +43018,7 @@ paths: - *66 - *17 - *19 - - &568 + - &566 name: targets description: | A comma-separated list of rule targets to filter by. @@ -43404,7 +43304,7 @@ paths: - object rules: type: array - items: &569 + items: &567 title: Repository Rule type: object description: A repository rule. @@ -43466,7 +43366,7 @@ paths: type: string enum: - required_linear_history - - &567 + - &565 title: merge_queue description: Merges must be performed via a merge queue. type: object @@ -44196,7 +44096,7 @@ paths: created_at: '2023-08-15T08:43:03Z' updated_at: '2023-09-23T16:29:47Z' '404': *6 - '500': *105 + '500': *104 post: summary: Create an organization repository ruleset description: Create a repository ruleset for an organization. @@ -44347,7 +44247,7 @@ paths: created_at: '2023-08-15T08:43:03Z' updated_at: '2023-09-23T16:29:47Z' '404': *6 - '500': *105 + '500': *104 "/orgs/{org}/rulesets/rule-suites": get: summary: List organization rule suites @@ -44362,7 +44262,7 @@ paths: url: https://docs.github.com/rest/orgs/rule-suites#list-organization-rule-suites parameters: - *66 - - &570 + - &568 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 @@ -44377,7 +44277,7 @@ paths: in: query schema: type: string - - &571 + - &569 name: time_period description: |- The time period to filter by. @@ -44393,14 +44293,14 @@ paths: - week - month default: day - - &572 + - &570 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 - - &573 + - &571 name: rule_suite_result description: The rule suite results to filter on. When specified, only suites with this result will be returned. @@ -44420,7 +44320,7 @@ paths: description: Response content: application/json: - schema: &574 + schema: &572 title: Rule Suites description: Response type: array @@ -44476,7 +44376,7 @@ paths: whether rules would pass or fail if all rules in the rule suite were `active`. examples: - default: &575 + default: &573 value: - id: 21 actor_id: 12 @@ -44500,7 +44400,7 @@ paths: result: pass evaluation_result: fail '404': *6 - '500': *105 + '500': *104 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -44520,7 +44420,7 @@ paths: url: https://docs.github.com/rest/orgs/rule-suites#get-an-organization-rule-suite parameters: - *66 - - &576 + - &574 name: rule_suite_id description: |- The unique identifier of the rule suite result. @@ -44536,7 +44436,7 @@ paths: description: Response content: application/json: - schema: &577 + schema: &575 title: Rule Suite description: Response type: object @@ -44643,7 +44543,7 @@ paths: description: The detailed failure message for the rule. Null if the rule passed. examples: - default: &578 + default: &576 value: id: 21 actor_id: 12 @@ -44678,7 +44578,7 @@ paths: result: fail rule_type: commit_message_pattern '404': *6 - '500': *105 + '500': *104 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -44720,7 +44620,7 @@ paths: examples: default: *293 '404': *6 - '500': *105 + '500': *104 put: summary: Update an organization repository ruleset description: Update a ruleset for an organization. @@ -44810,7 +44710,7 @@ paths: examples: default: *293 '404': *6 - '500': *105 + '500': *104 delete: summary: Delete an organization repository ruleset description: Delete a ruleset for an organization. @@ -44837,7 +44737,7 @@ paths: '204': description: Response '404': *6 - '500': *105 + '500': *104 "/orgs/{org}/rulesets/{ruleset_id}/history": get: summary: Get organization ruleset history @@ -44889,7 +44789,7 @@ paths: type: string format: date-time examples: - default: &580 + default: &578 value: - version_id: 3 actor: @@ -44907,7 +44807,7 @@ paths: type: User updated_at: '2024-08-23T16:29:47Z' '404': *6 - '500': *105 + '500': *104 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -44942,7 +44842,7 @@ paths: description: Response content: application/json: - schema: &581 + schema: &579 allOf: - *295 - type: object @@ -44991,7 +44891,7 @@ paths: operator: contains pattern: github '404': *6 - '500': *105 + '500': *104 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -45014,7 +44914,7 @@ paths: url: https://docs.github.com/rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-an-organization parameters: - *66 - - &582 + - &580 name: state in: query description: Set to `open` or `resolved` to only list secret scanning alerts @@ -45025,7 +44925,7 @@ paths: enum: - open - resolved - - &583 + - &581 name: secret_type in: query description: A comma-separated list of secret types to return. All default @@ -45035,7 +44935,7 @@ paths: required: false schema: type: string - - &584 + - &582 name: resolution in: query description: A comma-separated list of resolutions. Only secret scanning alerts @@ -45044,7 +44944,7 @@ paths: required: false schema: type: string - - &585 + - &583 name: assignee in: query description: Filters alerts by assignee. Use `*` to get all assigned alerts, @@ -45063,7 +44963,7 @@ paths: all-unassigned: value: none summary: Filter for all unassigned alerts - - &586 + - &584 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. @@ -45078,7 +44978,7 @@ paths: - *51 - *19 - *17 - - &587 + - &585 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 @@ -45088,7 +44988,7 @@ paths: required: false schema: type: string - - &588 + - &586 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 @@ -45098,7 +44998,7 @@ paths: required: false schema: type: string - - &589 + - &587 name: validity in: query description: A comma-separated list of validities that, when present, will @@ -45107,7 +45007,7 @@ paths: required: false schema: type: string - - &590 + - &588 name: is_publicly_leaked in: query description: A boolean value representing whether or not to filter alerts @@ -45116,7 +45016,7 @@ paths: schema: type: boolean default: false - - &591 + - &589 name: is_multi_repo in: query description: A boolean value representing whether or not to filter alerts @@ -45125,7 +45025,7 @@ paths: schema: type: boolean default: false - - &592 + - &590 name: hide_secret in: query description: A boolean value representing whether or not to hide literal secrets @@ -45144,27 +45044,27 @@ paths: items: type: object properties: - number: *163 - created_at: *164 + number: *162 + created_at: *163 updated_at: anyOf: - type: 'null' - - *165 - url: *166 - html_url: *167 + - *164 + url: *165 + html_url: *166 locations_url: type: string format: uri description: The REST API URL of the code locations for this alert. - state: &593 + state: &591 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: &594 + resolution: &592 type: - string - 'null' @@ -45271,14 +45171,14 @@ paths: first_location_detected: anyOf: - type: 'null' - - &595 + - &593 description: 'Details on the location where the token was initially detected. This can be a commit, wiki commit, issue, discussion, pull request. ' oneOf: - - &597 + - &595 description: Represents a 'commit' secret scanning location type. This location type shows that a secret was detected inside a commit to a repository. @@ -45335,7 +45235,7 @@ paths: - blob_url - commit_sha - commit_url - - &598 + - &596 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. @@ -45396,7 +45296,7 @@ paths: - page_url - commit_sha - commit_url - - &599 + - &597 description: Represents an 'issue_title' secret scanning location type. This location type shows that a secret was detected in the title of an issue. @@ -45411,7 +45311,7 @@ paths: - https://api.github.com/repos/octocat/Hello-World/issues/1347 required: - issue_title_url - - &600 + - &598 description: Represents an 'issue_body' secret scanning location type. This location type shows that a secret was detected in the body of an issue. @@ -45426,7 +45326,7 @@ paths: - https://api.github.com/repos/octocat/Hello-World/issues/1347 required: - issue_body_url - - &601 + - &599 description: Represents an 'issue_comment' secret scanning location type. This location type shows that a secret was detected in a comment on an issue. @@ -45441,7 +45341,7 @@ paths: - https://api.github.com/repos/octocat/Hello-World/issues/comments/1081119451 required: - issue_comment_url - - &602 + - &600 description: Represents a 'discussion_title' secret scanning location type. This location type shows that a secret was detected in the title of a discussion. @@ -45456,7 +45356,7 @@ paths: - https://github.com/community/community/discussions/39082 required: - discussion_title_url - - &603 + - &601 description: Represents a 'discussion_body' secret scanning location type. This location type shows that a secret was detected in the body of a discussion. @@ -45471,7 +45371,7 @@ paths: - https://github.com/community/community/discussions/39082#discussion-4566270 required: - discussion_body_url - - &604 + - &602 description: Represents a 'discussion_comment' secret scanning location type. This location type shows that a secret was detected in a comment on a discussion. @@ -45486,7 +45386,7 @@ paths: - https://github.com/community/community/discussions/39082#discussioncomment-4158232 required: - discussion_comment_url - - &605 + - &603 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. @@ -45501,7 +45401,7 @@ paths: - https://api.github.com/repos/octocat/Hello-World/pulls/2846 required: - pull_request_title_url - - &606 + - &604 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. @@ -45516,7 +45416,7 @@ paths: - https://api.github.com/repos/octocat/Hello-World/pulls/2846 required: - pull_request_body_url - - &607 + - &605 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. @@ -45531,7 +45431,7 @@ paths: - https://api.github.com/repos/octocat/Hello-World/issues/comments/1081119451 required: - pull_request_comment_url - - &608 + - &606 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. @@ -45546,7 +45446,7 @@ paths: - https://api.github.com/repos/octocat/Hello-World/pulls/2846/reviews/80 required: - pull_request_review_url - - &609 + - &607 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 @@ -45749,7 +45649,7 @@ paths: headers: Link: *57 '404': *6 - '503': *106 + '503': *105 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -46046,7 +45946,7 @@ paths: application/json: schema: type: array - items: &613 + items: &611 description: A repository security advisory. type: object properties: @@ -46327,7 +46227,7 @@ paths: - array - 'null' description: A list of teams that collaborate on the advisory. - items: *180 + items: *179 private_fork: readOnly: true description: A temporary private fork of the advisory's repository @@ -46365,7 +46265,7 @@ paths: - private_fork additionalProperties: false examples: - default: &614 + default: &612 value: - ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -46752,9 +46652,9 @@ paths: application/json: schema: type: array - items: *231 + items: *230 examples: - default: *232 + default: *231 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -46957,9 +46857,9 @@ paths: type: integer repositories: type: array - items: *145 + items: *144 examples: - default: *157 + default: *156 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -47028,7 +46928,7 @@ paths: url: https://docs.github.com/rest/orgs/orgs#enable-a-selected-repository-for-immutable-releases-in-an-organization parameters: - *66 - - *134 + - *133 responses: '204': description: Response @@ -47051,7 +46951,7 @@ paths: url: https://docs.github.com/rest/orgs/orgs#disable-a-selected-repository-for-immutable-releases-in-an-organization parameters: - *66 - - *134 + - *133 responses: '204': description: Response @@ -47507,7 +47407,7 @@ paths: items: *302 examples: default: *303 - '500': *105 + '500': *104 '403': *27 '404': *6 '422': *304 @@ -47538,9 +47438,9 @@ paths: application/json: schema: type: array - items: *180 + items: *179 examples: - default: *232 + default: *231 headers: Link: *57 '403': *27 @@ -47708,7 +47608,7 @@ paths: parent: anyOf: - type: 'null' - - *231 + - *230 members_count: type: integer examples: @@ -48267,9 +48167,9 @@ paths: application/json: schema: type: array - items: *213 + items: *212 examples: - default: *214 + default: *213 headers: Link: *57 x-github: @@ -48381,7 +48281,7 @@ paths: - state - url examples: - response-if-user-is-a-team-maintainer: &631 + response-if-user-is-a-team-maintainer: &629 summary: Response if user is a team maintainer value: url: https://api.github.com/teams/1/memberships/octocat @@ -48446,7 +48346,7 @@ paths: application/json: schema: *307 examples: - response-if-users-membership-with-team-is-now-pending: &632 + response-if-users-membership-with-team-is-now-pending: &630 summary: Response if user's membership with team is now pending value: url: https://api.github.com/teams/1/memberships/octocat @@ -48520,9 +48420,9 @@ paths: application/json: schema: type: array - items: *145 + items: *144 examples: - default: *239 + default: *238 headers: Link: *57 x-github: @@ -48560,7 +48460,7 @@ paths: description: Alternative response with repository permissions content: application/json: - schema: &633 + schema: &631 title: Team Repository description: A team's access to a repository. type: object @@ -49287,9 +49187,9 @@ paths: application/json: schema: type: array - items: *180 + items: *179 examples: - response-if-child-teams-exist: &634 + response-if-child-teams-exist: &632 value: - id: 2 node_id: MDQ6VGVhbTI= @@ -51525,7 +51425,7 @@ paths: description: Response content: application/json: - schema: *154 + schema: *153 examples: default: value: @@ -51635,7 +51535,7 @@ paths: description: Empty response content: application/json: - schema: *154 + schema: *153 examples: default: value: @@ -51836,9 +51736,9 @@ paths: enabled: &326 type: boolean description: Whether GitHub Actions is enabled on the repository. - allowed_actions: *130 + allowed_actions: *129 selected_actions_url: *325 - sha_pinning_required: *131 + sha_pinning_required: *130 required: - enabled examples: @@ -51879,8 +51779,8 @@ paths: type: object properties: enabled: *326 - allowed_actions: *130 - sha_pinning_required: *131 + allowed_actions: *129 + sha_pinning_required: *130 required: - enabled examples: @@ -52063,7 +51963,7 @@ paths: description: Response content: application/json: - schema: *132 + schema: *131 examples: default: *331 '404': *6 @@ -52095,7 +51995,7 @@ paths: required: true content: application/json: - schema: *132 + schema: *131 examples: default: summary: Set approval policy to first time contributors @@ -52128,7 +52028,7 @@ paths: application/json: schema: *332 examples: - default: *133 + default: *132 '403': *27 '404': *6 x-github: @@ -52156,7 +52056,7 @@ paths: application/json: schema: *333 examples: - default: *133 + default: *132 responses: '204': description: Empty response for successful settings update @@ -52187,9 +52087,9 @@ paths: description: Response content: application/json: - schema: *135 + schema: *134 examples: - default: *136 + default: *135 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -52217,9 +52117,9 @@ paths: required: false content: application/json: - schema: *135 + schema: *134 examples: - selected_actions: *136 + selected_actions: *135 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -52250,7 +52150,7 @@ paths: application/json: schema: *334 examples: - default: *140 + default: *139 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -52285,7 +52185,7 @@ paths: application/json: schema: *335 examples: - default: *140 + default: *139 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -52331,9 +52231,9 @@ paths: type: integer runners: type: array - items: *147 + items: *146 examples: - default: *148 + default: *147 headers: Link: *57 x-github: @@ -52472,7 +52372,7 @@ paths: description: Response content: application/json: - schema: *149 + schema: *148 examples: default: *339 x-github: @@ -52509,7 +52409,7 @@ paths: description: Response content: application/json: - schema: *149 + schema: *148 examples: default: *340 x-github: @@ -52535,13 +52435,13 @@ paths: parameters: - *308 - *309 - - *146 + - *145 responses: '200': description: Response content: application/json: - schema: *147 + schema: *146 examples: default: *341 x-github: @@ -52566,7 +52466,7 @@ paths: parameters: - *308 - *309 - - *146 + - *145 responses: '204': description: Response @@ -52594,9 +52494,9 @@ paths: parameters: - *308 - *309 - - *146 + - *145 responses: - '200': *151 + '200': *150 '404': *6 x-github: githubCloudOnly: false @@ -52620,7 +52520,7 @@ paths: parameters: - *308 - *309 - - *146 + - *145 requestBody: required: true content: @@ -52644,7 +52544,7 @@ paths: - gpu - accelerated responses: - '200': *151 + '200': *150 '404': *6 '422': *7 x-github: @@ -52670,7 +52570,7 @@ paths: parameters: - *308 - *309 - - *146 + - *145 requestBody: required: true content: @@ -52695,7 +52595,7 @@ paths: - gpu - accelerated responses: - '200': *151 + '200': *150 '404': *6 '422': *7 x-github: @@ -52721,7 +52621,7 @@ paths: parameters: - *308 - *309 - - *146 + - *145 responses: '200': *342 '404': *6 @@ -52752,10 +52652,10 @@ paths: parameters: - *308 - *309 - - *146 + - *145 - *343 responses: - '200': *151 + '200': *150 '404': *6 '422': *7 x-github: @@ -53134,8 +53034,8 @@ paths: - timestamp - author - committer - repository: *145 - head_repository: *145 + repository: *144 + head_repository: *144 head_repository_id: type: integer examples: @@ -53832,7 +53732,7 @@ paths: description: Response content: application/json: - schema: *154 + schema: *153 examples: default: value: @@ -54122,7 +54022,7 @@ paths: description: Response content: application/json: - schema: *154 + schema: *153 examples: default: value: @@ -54226,7 +54126,7 @@ paths: description: Response content: application/json: - schema: *154 + schema: *153 examples: default: value: @@ -54348,7 +54248,7 @@ paths: '204': description: Response '403': *27 - '500': *105 + '500': *104 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -54452,7 +54352,7 @@ paths: reviewer: anyOf: - *4 - - *180 + - *179 required: - environment - wait_timer @@ -54771,7 +54671,7 @@ paths: description: Response content: application/json: - schema: *154 + schema: *153 examples: default: value: @@ -54818,7 +54718,7 @@ paths: description: Response content: application/json: - schema: *154 + schema: *153 examples: default: value: @@ -55068,7 +54968,7 @@ paths: parameters: - *308 - *309 - - *153 + - *152 responses: '200': description: Response @@ -55104,7 +55004,7 @@ paths: parameters: - *308 - *309 - - *153 + - *152 requestBody: required: true content: @@ -55135,7 +55035,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *154 + schema: *153 examples: default: value: @@ -55163,7 +55063,7 @@ paths: parameters: - *308 - *309 - - *153 + - *152 responses: '204': description: Response @@ -55260,7 +55160,7 @@ paths: description: Response content: application/json: - schema: *154 + schema: *153 examples: default: value: @@ -55287,7 +55187,7 @@ paths: parameters: - *308 - *309 - - *156 + - *155 responses: '200': description: Response @@ -55323,7 +55223,7 @@ paths: parameters: - *308 - *309 - - *156 + - *155 requestBody: required: true content: @@ -55367,7 +55267,7 @@ paths: parameters: - *308 - *309 - - *156 + - *155 responses: '204': description: Response @@ -56666,7 +56566,7 @@ paths: description: The list of teams with review dismissal access. type: array - items: *180 + items: *179 apps: description: The list of apps with review dismissal access. @@ -56698,7 +56598,7 @@ paths: description: The list of teams allowed to bypass pull request requirements. type: array - items: *180 + items: *179 apps: description: The list of apps allowed to bypass pull request requirements. @@ -56791,7 +56691,7 @@ paths: type: string teams: type: array - items: *180 + items: *179 apps: type: array items: @@ -57165,14 +57065,14 @@ paths: author: oneOf: - *4 - - *154 + - *153 type: - 'null' - object committer: oneOf: - *4 - - *154 + - *153 type: - 'null' - object @@ -57981,7 +57881,7 @@ paths: items: *4 teams: type: array - items: *180 + items: *179 apps: type: array items: *5 @@ -57999,7 +57899,7 @@ paths: items: *4 teams: type: array - items: *180 + items: *179 apps: type: array items: *5 @@ -59388,9 +59288,9 @@ paths: application/json: schema: type: array - items: *180 + items: *179 examples: - default: *232 + default: *231 '404': *6 x-github: githubCloudOnly: false @@ -59448,9 +59348,9 @@ paths: application/json: schema: type: array - items: *180 + items: *179 examples: - default: *232 + default: *231 '422': *15 x-github: githubCloudOnly: false @@ -59509,9 +59409,9 @@ paths: application/json: schema: type: array - items: *180 + items: *179 examples: - default: *232 + default: *231 '422': *15 x-github: githubCloudOnly: false @@ -59569,9 +59469,9 @@ paths: application/json: schema: type: array - items: *180 + items: *179 examples: - default: *232 + default: *231 '422': *15 x-github: githubCloudOnly: false @@ -60367,7 +60267,7 @@ paths: check. type: array items: *75 - deployment: &695 + deployment: &693 title: Deployment description: A deployment created as the result of an Actions check run from a workflow that references an environment @@ -61154,7 +61054,7 @@ paths: description: Response content: application/json: - schema: *154 + schema: *153 examples: default: value: @@ -61302,7 +61202,7 @@ paths: anyOf: - type: 'null' - *5 - repository: *145 + repository: *144 created_at: type: - string @@ -61715,7 +61615,7 @@ paths: required: - app_id - setting - repository: *145 + repository: *144 examples: default: value: @@ -62163,7 +62063,7 @@ paths: description: Response content: application/json: - schema: *154 + schema: *153 examples: default: value: @@ -62254,19 +62154,19 @@ paths: items: type: object properties: - number: *163 - created_at: *164 - updated_at: *165 - url: *166 - html_url: *167 + number: *162 + created_at: *163 + updated_at: *164 + url: *165 + html_url: *166 instances_url: *398 - state: *172 - fixed_at: *168 + state: *171 + fixed_at: *167 dismissed_by: anyOf: - type: 'null' - *4 - dismissed_at: *169 + dismissed_at: *168 dismissed_reason: *399 dismissed_comment: *400 rule: *401 @@ -62401,7 +62301,7 @@ paths: application/json: schema: *3 '404': *6 - '503': *106 + '503': *105 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -62431,7 +62331,7 @@ paths: field in the response from the `GET /repos/{owner}/{repo}/code-scanning/alerts` operation. required: true - schema: *163 + schema: *162 responses: '200': description: Response @@ -62440,19 +62340,19 @@ paths: schema: &406 type: object properties: - number: *163 - created_at: *164 - updated_at: *165 - url: *166 - html_url: *167 + number: *162 + created_at: *163 + updated_at: *164 + url: *165 + html_url: *166 instances_url: *398 - state: *172 - fixed_at: *168 + state: *171 + fixed_at: *167 dismissed_by: anyOf: - type: 'null' - *4 - dismissed_at: *169 + dismissed_at: *168 dismissed_reason: *399 dismissed_comment: *400 rule: @@ -62615,7 +62515,7 @@ paths: '304': *35 '403': *404 '404': *6 - '503': *106 + '503': *105 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -62762,7 +62662,7 @@ paths: application/json: schema: *3 '404': *6 - '503': *106 + '503': *105 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -62836,7 +62736,7 @@ paths: status: '400' '403': *404 '404': *6 - '503': *106 + '503': *105 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -62891,7 +62791,7 @@ paths: '404': *6 '422': description: Unprocessable Entity - '503': *106 + '503': *105 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -62966,7 +62866,7 @@ paths: '404': *6 '422': description: Unprocessable Entity - '503': *106 + '503': *105 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -63072,7 +62972,7 @@ paths: - source '403': *404 '404': *6 - '503': *106 + '503': *105 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -63250,7 +63150,7 @@ paths: warning: '' '403': *404 '404': *6 - '503': *106 + '503': *105 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -63359,7 +63259,7 @@ paths: content: application/json: schema: *3 - '503': *106 + '503': *105 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -63498,7 +63398,7 @@ paths: '400': *14 '403': *410 '404': *6 - '503': *106 + '503': *105 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -63641,7 +63541,7 @@ paths: commit_oid: 1927de39fefa25a9d0e64e3f540ff824a72f538c '403': *404 '404': *6 - '503': *106 + '503': *105 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -63717,7 +63617,7 @@ paths: description: Found '403': *404 '404': *6 - '503': *106 + '503': *105 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -63750,7 +63650,7 @@ paths: description: Response '403': *410 '404': *6 - '503': *106 + '503': *105 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -64209,7 +64109,7 @@ paths: content: application/json: schema: *3 - '503': *106 + '503': *105 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -64247,7 +64147,7 @@ paths: examples: default: *424 '404': *6 - '503': *106 + '503': *105 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -64407,7 +64307,7 @@ paths: source_location_prefix: "/" artifact_url: https://example.com '404': *6 - '503': *106 + '503': *105 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -64524,7 +64424,7 @@ paths: schedule: weekly '403': *404 '404': *6 - '503': *106 + '503': *105 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -64613,7 +64513,7 @@ paths: description: Response content: application/json: - schema: *154 + schema: *153 examples: default: value: @@ -64652,7 +64552,7 @@ paths: content: application/json: schema: *3 - '503': *106 + '503': *105 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -64796,7 +64696,7 @@ paths: '404': *6 '413': description: Payload Too Large if the sarif field is too large - '503': *106 + '503': *105 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -64867,7 +64767,7 @@ paths: '403': *404 '404': description: Not Found if the sarif id does not match any upload - '503': *106 + '503': *105 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -64946,7 +64846,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': *176 + '204': *175 '304': *35 '403': *27 '404': *6 @@ -65117,7 +65017,7 @@ paths: type: integer codespaces: type: array - items: *221 + items: *220 examples: default: value: @@ -65393,7 +65293,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': *105 + '500': *104 '401': *23 '403': *27 '404': *6 @@ -65480,7 +65380,7 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *221 + schema: *220 examples: default: *428 '202': @@ -65488,14 +65388,14 @@ paths: being retried in the background content: application/json: - schema: *221 + schema: *220 examples: default: *428 '400': *14 '401': *23 '403': *27 '404': *6 - '503': *106 + '503': *105 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -65560,7 +65460,7 @@ paths: - path: ".devcontainer.json" display_name: Default project configuration total_count: 3 - '500': *105 + '500': *104 '400': *14 '401': *23 '403': *27 @@ -65624,7 +65524,7 @@ paths: type: array items: *429 examples: - default: &641 + default: &639 value: total_count: 2 machines: @@ -65641,7 +65541,7 @@ paths: memory_in_bytes: 34359738368 cpus: 8 '304': *35 - '500': *105 + '500': *104 '401': *23 '403': *27 '404': *6 @@ -65801,7 +65701,7 @@ paths: '403': *27 '404': *6 '422': *15 - '503': *106 + '503': *105 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -65916,7 +65816,7 @@ paths: parameters: - *308 - *309 - - *153 + - *152 responses: '200': description: Response @@ -65946,7 +65846,7 @@ paths: parameters: - *308 - *309 - - *153 + - *152 requestBody: required: true content: @@ -65974,7 +65874,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *154 + schema: *153 examples: default: value: @@ -66000,7 +65900,7 @@ paths: parameters: - *308 - *309 - - *153 + - *152 responses: '204': description: Response @@ -66348,7 +66248,7 @@ paths: format: int64 examples: - 42 - repository: *145 + repository: *144 invitee: anyOf: - type: 'null' @@ -66524,7 +66424,7 @@ paths: - an Enterprise Managed User (EMU) account was invited to a repository in an enterprise with personal user accounts content: application/json: - schema: *114 + schema: *113 '403': *27 x-github: triggersNotification: true @@ -67289,7 +67189,7 @@ paths: type: array items: *439 examples: - default: &553 + default: &551 value: - url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -67360,7 +67260,7 @@ paths: sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e headers: Link: *57 - '500': *105 + '500': *104 '400': *14 '404': *6 '409': *50 @@ -67580,7 +67480,7 @@ paths: type: array items: *443 examples: - default: &545 + default: &543 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -68224,8 +68124,8 @@ paths: ..... '422': *15 '404': *6 - '500': *105 - '503': *106 + '500': *104 + '503': *105 '409': *50 x-github: githubCloudOnly: false @@ -68617,7 +68517,7 @@ paths: type: string total_count: type: integer - repository: *145 + repository: *144 commit_url: type: string format: uri @@ -68760,7 +68660,7 @@ paths: application/json: schema: type: array - items: &618 + items: &616 title: Status description: The status of a commit. type: object @@ -69388,8 +69288,8 @@ paths: patch: "@@ -132,7 +132,7 @@ module Test @@ -1000,7 +1000,7 @@ module Test" '404': *6 - '500': *105 - '503': *106 + '500': *104 + '503': *105 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -69722,7 +69622,7 @@ paths: - size - type - url - - &558 + - &556 title: Content File description: Content File type: object @@ -70359,7 +70259,7 @@ paths: items: type: object properties: - placeholder_id: &610 + placeholder_id: &608 description: The ID of the push protection bypass placeholder. This value is returned on any push protected routes. @@ -70488,7 +70388,7 @@ paths: '422': *15 '404': *6 '409': *50 - '503': *106 + '503': *105 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -70635,20 +70535,20 @@ paths: parameters: - *308 - *309 + - *180 - *181 - *182 - *183 - - *184 - 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 - - *185 + - *184 - *454 + - *185 - *186 - - *187 - *51 - name: per_page description: The number of results per page (max 100). For more information, @@ -70671,7 +70571,7 @@ paths: type: object description: A Dependabot alert. properties: - number: *163 + number: *162 state: type: string description: The state of the Dependabot alert. @@ -70719,11 +70619,11 @@ paths: - security_advisory: *455 security_vulnerability: *55 - url: *166 - html_url: *167 - created_at: *164 - updated_at: *165 - dismissed_at: *169 + url: *165 + html_url: *166 + created_at: *163 + updated_at: *164 + dismissed_at: *168 dismissed_by: anyOf: - type: 'null' @@ -70747,7 +70647,7 @@ paths: description: An optional comment associated with the alert's dismissal. maxLength: 280 - fixed_at: *168 + fixed_at: *167 auto_dismissed_at: *456 dismissal_request: *457 required: @@ -70990,7 +70890,7 @@ paths: or in `number` fields in the response from the `GET /repos/{owner}/{repo}/dependabot/alerts` operation. required: true - schema: *163 + schema: *162 responses: '200': description: Response @@ -71389,7 +71289,7 @@ paths: parameters: - *308 - *309 - - *153 + - *152 responses: '200': description: Response @@ -71423,7 +71323,7 @@ paths: parameters: - *308 - *309 - - *153 + - *152 requestBody: required: true content: @@ -71451,7 +71351,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *154 + schema: *153 examples: default: value: @@ -71477,7 +71377,7 @@ paths: parameters: - *308 - *309 - - *153 + - *152 responses: '204': description: Response @@ -73110,7 +73010,7 @@ paths: reviewer: anyOf: - *4 - - *180 + - *179 required: - id - node_id @@ -74165,7 +74065,7 @@ paths: - *308 - *309 - *471 - - *153 + - *152 responses: '200': description: Response @@ -74198,7 +74098,7 @@ paths: - *308 - *309 - *471 - - *153 + - *152 requestBody: required: true content: @@ -74229,7 +74129,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *154 + schema: *153 examples: default: value: @@ -74258,7 +74158,7 @@ paths: - *308 - *309 - *471 - - *153 + - *152 responses: '204': description: Default response @@ -74357,7 +74257,7 @@ paths: description: Response content: application/json: - schema: *154 + schema: *153 examples: default: value: @@ -74385,7 +74285,7 @@ paths: - *308 - *309 - *471 - - *156 + - *155 responses: '200': description: Response @@ -74416,7 +74316,7 @@ paths: parameters: - *308 - *309 - - *156 + - *155 - *471 requestBody: required: true @@ -74461,7 +74361,7 @@ paths: parameters: - *308 - *309 - - *156 + - *155 - *471 responses: '204': @@ -74576,7 +74476,7 @@ paths: application/json: schema: type: array - items: *145 + items: *144 examples: default: value: @@ -74830,7 +74730,7 @@ paths: application/json: schema: oneOf: - - *114 + - *113 - *484 x-github: githubCloudOnly: false @@ -76237,7 +76137,7 @@ paths: format: uri examples: - https://api.github.com/repos/octocat/Hello-World/hooks/1/deliveries - last_response: &726 + last_response: &724 title: Hook Response type: object properties: @@ -76420,7 +76320,7 @@ paths: parameters: - *308 - *309 - - *193 + - *192 responses: '200': description: Response @@ -76450,7 +76350,7 @@ paths: parameters: - *308 - *309 - - *193 + - *192 requestBody: required: true content: @@ -76520,7 +76420,7 @@ paths: parameters: - *308 - *309 - - *193 + - *192 responses: '204': description: Response @@ -76546,7 +76446,7 @@ paths: parameters: - *308 - *309 - - *193 + - *192 responses: '200': description: Response @@ -76575,7 +76475,7 @@ paths: parameters: - *308 - *309 - - *193 + - *192 requestBody: required: false content: @@ -76621,9 +76521,9 @@ paths: parameters: - *308 - *309 - - *193 + - *192 - *17 - - *194 + - *193 responses: '200': description: Response @@ -76631,9 +76531,9 @@ paths: application/json: schema: type: array - items: *195 + items: *194 examples: - default: *196 + default: *195 '400': *14 '422': *15 x-github: @@ -76654,16 +76554,16 @@ paths: parameters: - *308 - *309 - - *193 + - *192 - *16 responses: '200': description: Response content: application/json: - schema: *197 + schema: *196 examples: - default: *198 + default: *197 '400': *14 '422': *15 x-github: @@ -76684,7 +76584,7 @@ paths: parameters: - *308 - *309 - - *193 + - *192 - *16 responses: '202': *37 @@ -76709,7 +76609,7 @@ paths: parameters: - *308 - *309 - - *193 + - *192 responses: '204': description: Response @@ -76736,7 +76636,7 @@ paths: parameters: - *308 - *309 - - *193 + - *192 responses: '204': description: Response @@ -76811,7 +76711,7 @@ paths: - *308 - *309 responses: - '204': *176 + '204': *175 '409': *50 x-github: githubCloudOnly: false @@ -76832,7 +76732,7 @@ paths: - *308 - *309 responses: - '204': *176 + '204': *175 '409': *50 x-github: githubCloudOnly: false @@ -77305,7 +77205,7 @@ paths: parameters: - *308 - *309 - - &662 + - &660 name: since description: A user ID. Only return users with an ID greater than this ID. in: query @@ -77630,7 +77530,7 @@ paths: application/json: schema: anyOf: - - *211 + - *210 - type: object properties: {} additionalProperties: false @@ -77678,7 +77578,7 @@ paths: description: Response content: application/json: - schema: *211 + schema: *210 examples: default: *501 '409': @@ -77739,7 +77639,7 @@ paths: type: array items: *502 examples: - default: &655 + default: &653 value: - id: 1 repository: @@ -77872,7 +77772,7 @@ paths: parameters: - *308 - *309 - - *215 + - *214 requestBody: required: false content: @@ -78034,7 +77934,7 @@ paths: parameters: - *308 - *309 - - *215 + - *214 responses: '204': description: Response @@ -78114,7 +78014,7 @@ paths: required: false schema: type: string - - *219 + - *218 - name: sort description: What to sort results by. in: query @@ -78563,7 +78463,7 @@ paths: '400': *14 '403': *27 '422': *15 - '503': *106 + '503': *105 '404': *6 '410': *503 x-github: @@ -79035,7 +78935,7 @@ paths: anyOf: - type: 'null' - *4 - requested_team: *180 + requested_team: *179 dismissed_review: title: Issue Event Dismissed Review type: object @@ -79701,7 +79601,7 @@ paths: examples: default: *509 '422': *15 - '503': *106 + '503': *105 '403': *27 '301': *312 '404': *6 @@ -80530,7 +80430,7 @@ paths: - type: 'null' - *5 review_requester: *4 - requested_team: *180 + requested_team: *179 requested_reviewer: *4 required: - review_requester @@ -80572,7 +80472,7 @@ paths: - type: 'null' - *5 review_requester: *4 - requested_team: *180 + requested_team: *179 requested_reviewer: *4 required: - review_requester @@ -81734,7 +81634,7 @@ paths: '403': *27 '404': *6 '422': *7 - '503': *106 + '503': *105 x-github: triggersNotification: true githubCloudOnly: false @@ -82110,7 +82010,7 @@ paths: type: string comments: type: array - items: &547 + items: &545 title: Pull Request Review Comment description: Pull Request Review Comments are comments on a portion of the Pull Request's diff. @@ -83439,7 +83339,7 @@ paths: application/json: schema: type: array - items: *252 + items: *251 examples: default: value: @@ -83536,7 +83436,7 @@ paths: description: Response content: application/json: - schema: *252 + schema: *251 examples: default: &532 value: @@ -83611,7 +83511,7 @@ paths: description: Response content: application/json: - schema: *252 + schema: *251 examples: default: *532 '404': *6 @@ -83670,7 +83570,7 @@ paths: description: Response content: application/json: - schema: *252 + schema: *251 examples: default: *532 x-github: @@ -84660,7 +84560,7 @@ paths: - *309 - *542 responses: - '204': *176 + '204': *175 '404': *6 x-github: githubCloudOnly: false @@ -84954,7 +84854,7 @@ paths: description: Empty response content: application/json: - schema: *154 + schema: *153 examples: default: value: @@ -85022,7 +84922,7 @@ paths: - *308 - *309 responses: - '204': *176 + '204': *175 '422': *14 x-github: githubCloudOnly: false @@ -85044,7 +84944,7 @@ paths: - *308 - *309 responses: - '204': *176 + '204': *175 '422': *14 x-github: githubCloudOnly: false @@ -85073,9 +84973,16 @@ paths: application/json: schema: type: array - items: *104 + items: *264 examples: - default: *543 + default: + value: + - property_name: environment + value: production + - property_name: service + value: web + - property_name: team + value: octocat '403': *27 '404': *6 x-github: @@ -85110,11 +85017,19 @@ paths: type: array description: A list of custom property names and associated values to apply to the repositories. - items: *104 + items: *264 required: - properties examples: - default: *544 + 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 @@ -85215,7 +85130,7 @@ paths: type: array items: *443 examples: - default: *545 + default: *543 headers: Link: *57 '304': *35 @@ -85315,7 +85230,7 @@ paths: description: Response content: application/json: - schema: &549 + schema: &547 type: object title: Pull Request description: Pull requests let you tell others about changes you've @@ -85444,7 +85359,7 @@ paths: milestone: anyOf: - type: 'null' - - *252 + - *251 active_lock_reason: type: - string @@ -85499,7 +85414,7 @@ paths: type: - array - 'null' - items: *231 + items: *230 head: type: object properties: @@ -85537,14 +85452,14 @@ paths: _links: type: object properties: - comments: *253 - commits: *253 - statuses: *253 - html: *253 - issue: *253 - review_comments: *253 - review_comment: *253 - self: *253 + comments: *252 + commits: *252 + statuses: *252 + html: *252 + issue: *252 + review_comments: *252 + review_comment: *252 + self: *252 required: - comments - commits @@ -85555,7 +85470,7 @@ paths: - review_comment - self author_association: *72 - auto_merge: *546 + auto_merge: *544 draft: description: Indicates whether or not the pull request is a draft. type: boolean @@ -85657,7 +85572,7 @@ paths: - merged_by - review_comments examples: - default: &550 + default: &548 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -86214,9 +86129,9 @@ paths: application/json: schema: type: array - items: *547 + items: *545 examples: - default: &552 + default: &550 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -86301,9 +86216,9 @@ paths: description: Response content: application/json: - schema: *547 + schema: *545 examples: - default: &548 + default: &546 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -86402,9 +86317,9 @@ paths: description: Response content: application/json: - schema: *547 + schema: *545 examples: - default: *548 + default: *546 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -86607,7 +86522,7 @@ paths: parameters: - *308 - *309 - - &551 + - &549 name: pull_number description: The number that identifies the pull request. in: path @@ -86620,9 +86535,9 @@ paths: to fetch diff and patch formats. content: application/json: - schema: *549 + schema: *547 examples: - default: *550 + default: *548 '304': *35 '404': *6 '406': @@ -86630,8 +86545,8 @@ paths: content: application/json: schema: *3 - '500': *105 - '503': *106 + '500': *104 + '503': *105 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -86659,7 +86574,7 @@ paths: parameters: - *308 - *309 - - *551 + - *549 requestBody: required: false content: @@ -86701,9 +86616,9 @@ paths: description: Response content: application/json: - schema: *549 + schema: *547 examples: - default: *550 + default: *548 '422': *15 '403': *27 x-github: @@ -86727,7 +86642,7 @@ paths: parameters: - *308 - *309 - - *551 + - *549 requestBody: required: true content: @@ -86788,7 +86703,7 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *221 + schema: *220 examples: default: *428 '202': @@ -86796,13 +86711,13 @@ paths: being retried in the background content: application/json: - schema: *221 + schema: *220 examples: default: *428 '401': *23 '403': *27 '404': *6 - '503': *106 + '503': *105 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -86830,7 +86745,7 @@ paths: parameters: - *308 - *309 - - *551 + - *549 - *94 - name: direction description: The direction to sort results. Ignored without `sort` parameter. @@ -86851,9 +86766,9 @@ paths: application/json: schema: type: array - items: *547 + items: *545 examples: - default: *552 + default: *550 headers: Link: *57 x-github: @@ -86888,7 +86803,7 @@ paths: parameters: - *308 - *309 - - *551 + - *549 requestBody: required: true content: @@ -86994,7 +86909,7 @@ paths: description: Response content: application/json: - schema: *547 + schema: *545 examples: example-for-a-multi-line-comment: value: @@ -87084,7 +86999,7 @@ paths: parameters: - *308 - *309 - - *551 + - *549 - *86 requestBody: required: true @@ -87107,7 +87022,7 @@ paths: description: Response content: application/json: - schema: *547 + schema: *545 examples: default: value: @@ -87195,7 +87110,7 @@ paths: parameters: - *308 - *309 - - *551 + - *549 - *17 - *19 responses: @@ -87207,7 +87122,7 @@ paths: type: array items: *439 examples: - default: *553 + default: *551 headers: Link: *57 x-github: @@ -87239,7 +87154,7 @@ paths: parameters: - *308 - *309 - - *551 + - *549 - *17 - *19 responses: @@ -87267,8 +87182,8 @@ paths: headers: Link: *57 '422': *15 - '500': *105 - '503': *106 + '500': *104 + '503': *105 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -87289,7 +87204,7 @@ paths: parameters: - *308 - *309 - - *551 + - *549 responses: '204': description: Response if pull request has been merged @@ -87314,7 +87229,7 @@ paths: parameters: - *308 - *309 - - *551 + - *549 requestBody: required: false content: @@ -87428,7 +87343,7 @@ paths: parameters: - *308 - *309 - - *551 + - *549 responses: '200': description: Response @@ -87444,7 +87359,7 @@ paths: items: *4 teams: type: array - items: *180 + items: *179 required: - users - teams @@ -87505,7 +87420,7 @@ paths: parameters: - *308 - *309 - - *551 + - *549 requestBody: required: false content: @@ -88080,7 +87995,7 @@ paths: parameters: - *308 - *309 - - *551 + - *549 requestBody: required: true content: @@ -88621,7 +88536,7 @@ paths: parameters: - *308 - *309 - - *551 + - *549 - *17 - *19 responses: @@ -88631,7 +88546,7 @@ paths: application/json: schema: type: array - items: &554 + items: &552 title: Pull Request Review description: Pull Request Reviews are reviews on pull requests. type: object @@ -88789,7 +88704,7 @@ paths: parameters: - *308 - *309 - - *551 + - *549 requestBody: required: false content: @@ -88879,9 +88794,9 @@ paths: description: Response content: application/json: - schema: *554 + schema: *552 examples: - default: &556 + default: &554 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -88946,8 +88861,8 @@ paths: parameters: - *308 - *309 - - *551 - - &555 + - *549 + - &553 name: review_id description: The unique identifier of the review. in: path @@ -88959,9 +88874,9 @@ paths: description: Response content: application/json: - schema: *554 + schema: *552 examples: - default: &557 + default: &555 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -89022,8 +88937,8 @@ paths: parameters: - *308 - *309 - - *551 - - *555 + - *549 + - *553 requestBody: required: true content: @@ -89046,7 +88961,7 @@ paths: description: Response content: application/json: - schema: *554 + schema: *552 examples: default: value: @@ -89110,16 +89025,16 @@ paths: parameters: - *308 - *309 - - *551 - - *555 + - *549 + - *553 responses: '200': description: Response content: application/json: - schema: *554 + schema: *552 examples: - default: *556 + default: *554 '422': *7 '404': *6 x-github: @@ -89148,8 +89063,8 @@ paths: parameters: - *308 - *309 - - *551 - - *555 + - *549 + - *553 - *17 - *19 responses: @@ -89247,9 +89162,9 @@ paths: _links: type: object properties: - self: *253 - html: *253 - pull_request: *253 + self: *252 + html: *252 + pull_request: *252 required: - self - html @@ -89409,8 +89324,8 @@ paths: parameters: - *308 - *309 - - *551 - - *555 + - *549 + - *553 requestBody: required: true content: @@ -89439,7 +89354,7 @@ paths: description: Response content: application/json: - schema: *554 + schema: *552 examples: default: value: @@ -89504,8 +89419,8 @@ paths: parameters: - *308 - *309 - - *551 - - *555 + - *549 + - *553 requestBody: required: true content: @@ -89540,9 +89455,9 @@ paths: description: Response content: application/json: - schema: *554 + schema: *552 examples: - default: *557 + default: *555 '404': *6 '422': *7 '403': *27 @@ -89566,7 +89481,7 @@ paths: parameters: - *308 - *309 - - *551 + - *549 requestBody: required: false content: @@ -89644,9 +89559,9 @@ paths: description: Response content: application/json: - schema: *558 + schema: *556 examples: - default: &559 + default: &557 value: type: file encoding: base64 @@ -89709,9 +89624,9 @@ paths: description: Response content: application/json: - schema: *558 + schema: *556 examples: - default: *559 + default: *557 '404': *6 '422': *15 x-github: @@ -89744,7 +89659,7 @@ paths: application/json: schema: type: array - items: *560 + items: *558 examples: default: value: @@ -89915,9 +89830,9 @@ paths: description: Response content: application/json: - schema: *560 + schema: *558 examples: - default: &564 + default: &562 value: url: https://api.github.com/repos/octocat/Hello-World/releases/1 html_url: https://github.com/octocat/Hello-World/releases/v1.0.0 @@ -90024,7 +89939,7 @@ paths: parameters: - *308 - *309 - - &562 + - &560 name: asset_id description: The unique identifier of the asset. in: path @@ -90036,9 +89951,9 @@ paths: description: Response content: application/json: - schema: *561 + schema: *559 examples: - default: &563 + default: &561 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 @@ -90091,7 +90006,7 @@ paths: parameters: - *308 - *309 - - *562 + - *560 requestBody: required: false content: @@ -90120,9 +90035,9 @@ paths: description: Response content: application/json: - schema: *561 + schema: *559 examples: - default: *563 + default: *561 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -90140,7 +90055,7 @@ paths: parameters: - *308 - *309 - - *562 + - *560 responses: '204': description: Response @@ -90258,9 +90173,9 @@ paths: description: Response content: application/json: - schema: *560 + schema: *558 examples: - default: *564 + default: *562 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -90291,9 +90206,9 @@ paths: description: Response content: application/json: - schema: *560 + schema: *558 examples: - default: *564 + default: *562 '404': *6 x-github: githubCloudOnly: false @@ -90317,7 +90232,7 @@ paths: parameters: - *308 - *309 - - &565 + - &563 name: release_id description: The unique identifier of the release. in: path @@ -90331,9 +90246,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: *560 + schema: *558 examples: - default: *564 + default: *562 '401': description: Unauthorized x-github: @@ -90353,7 +90268,7 @@ paths: parameters: - *308 - *309 - - *565 + - *563 requestBody: required: false content: @@ -90417,9 +90332,9 @@ paths: description: Response content: application/json: - schema: *560 + schema: *558 examples: - default: *564 + default: *562 '404': description: Not Found if the discussion category name is invalid content: @@ -90442,7 +90357,7 @@ paths: parameters: - *308 - *309 - - *565 + - *563 responses: '204': description: Response @@ -90464,7 +90379,7 @@ paths: parameters: - *308 - *309 - - *565 + - *563 - *17 - *19 responses: @@ -90474,7 +90389,7 @@ paths: application/json: schema: type: array - items: *561 + items: *559 examples: default: value: @@ -90557,7 +90472,7 @@ paths: parameters: - *308 - *309 - - *565 + - *563 - name: name in: query required: true @@ -90583,7 +90498,7 @@ paths: description: Response for successful upload content: application/json: - schema: *561 + schema: *559 examples: response-for-successful-upload: value: @@ -90640,7 +90555,7 @@ paths: parameters: - *308 - *309 - - *565 + - *563 - 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. @@ -90689,7 +90604,7 @@ paths: parameters: - *308 - *309 - - *565 + - *563 requestBody: required: true content: @@ -90752,7 +90667,7 @@ paths: parameters: - *308 - *309 - - *565 + - *563 - *507 responses: '204': @@ -90796,7 +90711,7 @@ paths: oneOf: - allOf: - *271 - - &566 + - &564 title: repository ruleset data for rule description: User-defined metadata to store domain-specific information limited to 8 keys with scalar values. @@ -90817,67 +90732,67 @@ paths: description: The ID of the ruleset that includes this rule. - allOf: - *272 - - *566 + - *564 - allOf: - *273 - - *566 + - *564 - allOf: - *274 - - *566 + - *564 - allOf: - - *567 - - *566 + - *565 + - *564 - allOf: - *275 - - *566 + - *564 - allOf: - *276 - - *566 + - *564 - allOf: - *277 - - *566 + - *564 - allOf: - *278 - - *566 + - *564 - allOf: - *279 - - *566 + - *564 - allOf: - *280 - - *566 + - *564 - allOf: - *281 - - *566 + - *564 - allOf: - *282 - - *566 + - *564 - allOf: - *283 - - *566 + - *564 - allOf: - *284 - - *566 + - *564 - allOf: - *285 - - *566 + - *564 - allOf: - *286 - - *566 + - *564 - allOf: - *287 - - *566 + - *564 - allOf: - *288 - - *566 + - *564 - allOf: - *289 - - *566 + - *564 - allOf: - *290 - - *566 + - *564 - allOf: - *291 - - *566 + - *564 examples: default: value: @@ -90928,7 +90843,7 @@ paths: schema: type: boolean default: true - - *568 + - *566 responses: '200': description: Response @@ -90967,7 +90882,7 @@ paths: created_at: '2023-08-15T08:43:03Z' updated_at: '2023-09-23T16:29:47Z' '404': *6 - '500': *105 + '500': *104 post: summary: Create a repository ruleset description: Create a ruleset for a repository. @@ -91013,7 +90928,7 @@ paths: rules: type: array description: An array of rules within the ruleset. - items: *569 + items: *567 required: - name - enforcement @@ -91046,7 +90961,7 @@ paths: application/json: schema: *292 examples: - default: &579 + default: &577 value: id: 42 name: super cool ruleset @@ -91079,7 +90994,7 @@ paths: created_at: '2023-07-15T08:43:03Z' updated_at: '2023-08-23T16:29:47Z' '404': *6 - '500': *105 + '500': *104 "/repos/{owner}/{repo}/rulesets/rule-suites": get: summary: List repository rule suites @@ -91095,10 +91010,10 @@ paths: parameters: - *308 - *309 + - *568 + - *569 - *570 - *571 - - *572 - - *573 - *17 - *19 responses: @@ -91106,11 +91021,11 @@ paths: description: Response content: application/json: - schema: *574 + schema: *572 examples: - default: *575 + default: *573 '404': *6 - '500': *105 + '500': *104 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -91131,17 +91046,17 @@ paths: parameters: - *308 - *309 - - *576 + - *574 responses: '200': description: Response content: application/json: - schema: *577 + schema: *575 examples: - default: *578 + default: *576 '404': *6 - '500': *105 + '500': *104 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -91190,9 +91105,9 @@ paths: application/json: schema: *292 examples: - default: *579 + default: *577 '404': *6 - '500': *105 + '500': *104 put: summary: Update a repository ruleset description: Update a ruleset for a repository. @@ -91243,7 +91158,7 @@ paths: rules: description: An array of rules within the ruleset. type: array - items: *569 + items: *567 examples: default: value: @@ -91273,9 +91188,9 @@ paths: application/json: schema: *292 examples: - default: *579 + default: *577 '404': *6 - '500': *105 + '500': *104 delete: summary: Delete a repository ruleset description: Delete a ruleset for a repository. @@ -91303,7 +91218,7 @@ paths: '204': description: Response '404': *6 - '500': *105 + '500': *104 "/repos/{owner}/{repo}/rulesets/{ruleset_id}/history": get: summary: Get repository ruleset history @@ -91334,9 +91249,9 @@ paths: type: array items: *295 examples: - default: *580 + default: *578 '404': *6 - '500': *105 + '500': *104 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -91372,7 +91287,7 @@ paths: description: Response content: application/json: - schema: *581 + schema: *579 examples: default: value: @@ -91405,7 +91320,7 @@ paths: operator: contains pattern: github '404': *6 - '500': *105 + '500': *104 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -91429,20 +91344,20 @@ paths: parameters: - *308 - *309 + - *580 + - *581 - *582 - *583 - *584 - - *585 - - *586 - *51 - *19 - *17 + - *585 + - *586 - *587 - *588 - *589 - *590 - - *591 - - *592 responses: '200': description: Response @@ -91450,24 +91365,24 @@ paths: application/json: schema: type: array - items: &596 + items: &594 type: object properties: - number: *163 - created_at: *164 + number: *162 + created_at: *163 updated_at: anyOf: - type: 'null' - - *165 - url: *166 - html_url: *167 + - *164 + url: *165 + html_url: *166 locations_url: type: string format: uri description: The REST API URL of the code locations for this alert. - state: *593 - resolution: *594 + state: *591 + resolution: *592 resolved_at: type: - string @@ -91561,7 +91476,7 @@ paths: first_location_detected: anyOf: - type: 'null' - - *595 + - *593 has_more_locations: type: boolean description: A boolean value representing whether or not the @@ -91684,7 +91599,7 @@ paths: '404': description: Repository is public or secret scanning is disabled for the repository - '503': *106 + '503': *105 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -91709,13 +91624,13 @@ paths: - *308 - *309 - *405 - - *592 + - *590 responses: '200': description: Response content: application/json: - schema: *596 + schema: *594 examples: default: value: @@ -91746,7 +91661,7 @@ paths: '404': description: Repository is public, or secret scanning is disabled for the repository, or the resource is not found - '503': *106 + '503': *105 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -91779,8 +91694,8 @@ paths: schema: type: object properties: - state: *593 - resolution: *594 + state: *591 + resolution: *592 resolution_comment: description: An optional comment when closing or reopening an alert. Cannot be updated or deleted. @@ -91816,7 +91731,7 @@ paths: description: Response content: application/json: - schema: *596 + schema: *594 examples: default: value: @@ -91889,7 +91804,7 @@ paths: '422': description: State does not match the resolution or resolution comment, or assignee does not have write access to the repository - '503': *106 + '503': *105 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -91924,7 +91839,7 @@ paths: schema: type: array description: List of locations where the secret was detected - items: &746 + items: &744 type: object properties: type: @@ -91951,6 +91866,8 @@ paths: - commit details: oneOf: + - *595 + - *596 - *597 - *598 - *599 @@ -91962,8 +91879,6 @@ paths: - *605 - *606 - *607 - - *608 - - *609 examples: default: value: @@ -92027,7 +91942,7 @@ paths: '404': description: Repository is public, or secret scanning is disabled for the repository, or the resource is not found - '503': *106 + '503': *105 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -92058,14 +91973,14 @@ paths: schema: type: object properties: - reason: &611 + reason: &609 description: The reason for bypassing push protection. type: string enum: - false_positive - used_in_tests - will_fix_later - placeholder_id: *610 + placeholder_id: *608 required: - reason - placeholder_id @@ -92082,7 +91997,7 @@ paths: schema: type: object properties: - reason: *611 + reason: *609 expire_at: type: - string @@ -92106,7 +92021,7 @@ paths: this repository. '422': description: Bad request, input data missing or incorrect. - '503': *106 + '503': *105 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -92135,7 +92050,7 @@ paths: '404': description: Repository does not have GitHub Advanced Security or secret scanning enabled - '503': *106 + '503': *105 '200': description: Response content: @@ -92145,7 +92060,7 @@ paths: properties: incremental_scans: type: array - items: &612 + items: &610 description: Information on a single scan performed by secret scanning on the repository type: object @@ -92173,15 +92088,15 @@ paths: the scan is pending pattern_update_scans: type: array - items: *612 + items: *610 backfill_scans: type: array - items: *612 + items: *610 custom_pattern_backfill_scans: type: array items: allOf: - - *612 + - *610 - type: object properties: pattern_name: @@ -92296,9 +92211,9 @@ paths: application/json: schema: type: array - items: *613 + items: *611 examples: - default: *614 + default: *612 '400': *14 '404': *6 x-github: @@ -92492,9 +92407,9 @@ paths: description: Response content: application/json: - schema: *613 + schema: *611 examples: - default: &616 + default: &614 value: ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -92841,7 +92756,7 @@ paths: description: Response content: application/json: - schema: *613 + schema: *611 examples: default: value: @@ -92990,15 +92905,15 @@ paths: parameters: - *308 - *309 - - *615 + - *613 responses: '200': description: Response content: application/json: - schema: *613 + schema: *611 examples: - default: *616 + default: *614 '403': *27 '404': *6 x-github: @@ -93024,7 +92939,7 @@ paths: parameters: - *308 - *309 - - *615 + - *613 requestBody: required: true content: @@ -93195,17 +93110,17 @@ paths: description: Response content: application/json: - schema: *613 + schema: *611 examples: - default: *616 - add_credit: *616 + default: *614 + add_credit: *614 '403': *27 '404': *6 '422': description: Validation failed, or the endpoint has been spammed. content: application/json: - schema: *114 + schema: *113 examples: invalid_state_transition: value: @@ -93238,7 +93153,7 @@ paths: parameters: - *308 - *309 - - *615 + - *613 responses: '202': *37 '400': *14 @@ -93267,7 +93182,7 @@ paths: parameters: - *308 - *309 - - *615 + - *613 responses: '202': description: Response @@ -93408,7 +93323,7 @@ paths: application/json: schema: type: array - items: &617 + items: &615 title: Code Frequency Stat description: Code Frequency Stat type: array @@ -93421,7 +93336,7 @@ paths: - 1124 - -435 '202': *37 - '204': *176 + '204': *175 '422': description: Repository contains more than 10,000 commits x-github: @@ -93493,7 +93408,7 @@ paths: total: 89 week: 1336280400 '202': *37 - '204': *176 + '204': *175 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -93593,7 +93508,7 @@ paths: d: 77 c: 10 '202': *37 - '204': *176 + '204': *175 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -93781,7 +93696,7 @@ paths: application/json: schema: type: array - items: *617 + items: *615 examples: default: value: @@ -93794,7 +93709,7 @@ paths: - - 0 - 2 - 21 - '204': *176 + '204': *175 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -93871,7 +93786,7 @@ paths: description: Response content: application/json: - schema: *618 + schema: *616 examples: default: value: @@ -93965,7 +93880,7 @@ paths: description: if you subscribe to the repository content: application/json: - schema: &619 + schema: &617 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -94065,7 +93980,7 @@ paths: description: Response content: application/json: - schema: *619 + schema: *617 examples: default: value: @@ -94205,7 +94120,7 @@ paths: application/json: schema: type: array - items: &620 + items: &618 title: Tag protection description: Tag protection type: object @@ -94286,7 +94201,7 @@ paths: description: Response content: application/json: - schema: *620 + schema: *618 examples: default: value: @@ -94403,9 +94318,9 @@ paths: application/json: schema: type: array - items: *180 + items: *179 examples: - default: *232 + default: *231 headers: Link: *57 '404': *6 @@ -94434,7 +94349,7 @@ paths: description: Response content: application/json: - schema: &621 + schema: &619 title: Topic description: A topic aggregates entities that are related to a subject. type: object @@ -94446,7 +94361,7 @@ paths: required: - names examples: - default: &622 + default: &620 value: names: - octocat @@ -94501,9 +94416,9 @@ paths: description: Response content: application/json: - schema: *621 + schema: *619 examples: - default: *622 + default: *620 '404': *6 '422': *7 x-github: @@ -94526,7 +94441,7 @@ paths: parameters: - *308 - *309 - - &623 + - &621 name: per description: The time frame to display results for. in: query @@ -94557,7 +94472,7 @@ paths: - 128 clones: type: array - items: &624 + items: &622 title: Traffic type: object properties: @@ -94805,7 +94720,7 @@ paths: parameters: - *308 - *309 - - *623 + - *621 responses: '200': description: Response @@ -94826,7 +94741,7 @@ paths: - 3782 views: type: array - items: *624 + items: *622 required: - uniques - count @@ -94940,7 +94855,7 @@ paths: description: Response content: application/json: - schema: *145 + schema: *144 examples: default: value: @@ -95388,7 +95303,7 @@ paths: application/json: schema: type: array - items: *145 + items: *144 examples: default: value: @@ -95577,7 +95492,7 @@ paths: html_url: type: string format: uri - repository: *145 + repository: *144 score: type: number file_size: @@ -95596,7 +95511,7 @@ paths: examples: - 73..77 - 77..78 - text_matches: &625 + text_matches: &623 title: Search Result Text Matches type: array items: @@ -95711,7 +95626,7 @@ paths: releases_url: http://api.github.com/repos/octocat/Hello-World/releases{/id} score: 1 '304': *35 - '503': *106 + '503': *105 '422': *15 '403': *27 x-github: @@ -95759,7 +95674,7 @@ paths: enum: - author-date - committer-date - - &626 + - &624 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 @@ -95874,12 +95789,12 @@ paths: type: string sha: type: string - repository: *145 + repository: *144 score: type: number node_id: type: string - text_matches: *625 + text_matches: *623 required: - sha - node_id @@ -96071,7 +95986,7 @@ paths: - interactions - created - updated - - *626 + - *624 - *17 - *19 - name: advanced_search @@ -96168,11 +96083,11 @@ paths: type: - string - 'null' - sub_issues_summary: *627 - issue_dependencies_summary: *628 + sub_issues_summary: *625 + issue_dependencies_summary: *626 issue_field_values: type: array - items: *629 + items: *627 state: type: string state_reason: @@ -96186,7 +96101,7 @@ paths: milestone: anyOf: - type: 'null' - - *252 + - *251 comments: type: integer created_at: @@ -96200,7 +96115,7 @@ paths: - string - 'null' format: date-time - text_matches: *625 + text_matches: *623 pull_request: type: object properties: @@ -96249,7 +96164,7 @@ paths: timeline_url: type: string format: uri - type: *216 + type: *215 performed_via_github_app: anyOf: - type: 'null' @@ -96370,7 +96285,7 @@ paths: locked: true author_association: COLLABORATOR state_reason: completed - '503': *106 + '503': *105 '422': *15 '304': *35 '403': *27 @@ -96423,7 +96338,7 @@ paths: enum: - created - updated - - *626 + - *624 - *17 - *19 responses: @@ -96468,7 +96383,7 @@ paths: - 'null' score: type: number - text_matches: *625 + text_matches: *623 required: - id - node_id @@ -96553,7 +96468,7 @@ paths: - forks - help-wanted-issues - updated - - *626 + - *624 - *17 - *19 responses: @@ -96790,7 +96705,7 @@ paths: - admin - pull - push - text_matches: *625 + text_matches: *623 temp_clone_token: type: string allow_merge_commit: @@ -96993,7 +96908,7 @@ paths: spdx_id: MIT node_id: MDc6TGljZW5zZW1pdA== html_url: https://api.github.com/licenses/mit - '503': *106 + '503': *105 '422': *15 '304': *35 x-github: @@ -97098,7 +97013,7 @@ paths: - string - 'null' format: uri - text_matches: *625 + text_matches: *623 related: type: - array @@ -97291,7 +97206,7 @@ paths: - followers - repositories - joined - - *626 + - *624 - *17 - *19 responses: @@ -97401,7 +97316,7 @@ paths: type: - boolean - 'null' - text_matches: *625 + text_matches: *623 blog: type: - string @@ -97463,7 +97378,7 @@ paths: events_url: https://api.github.com/users/mojombo/events{/privacy} site_admin: true '304': *35 - '503': *106 + '503': *105 '422': *15 x-github: githubCloudOnly: false @@ -97483,7 +97398,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#get-a-team-legacy parameters: - - &630 + - &628 name: team_id description: The unique identifier of the team. in: path @@ -97524,7 +97439,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#update-a-team-legacy parameters: - - *630 + - *628 requestBody: required: true content: @@ -97625,7 +97540,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#delete-a-team-legacy parameters: - - *630 + - *628 responses: '204': description: Response @@ -97654,7 +97569,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#list-pending-team-invitations-legacy parameters: - - *630 + - *628 - *17 - *19 responses: @@ -97664,9 +97579,9 @@ paths: application/json: schema: type: array - items: *213 + items: *212 examples: - default: *214 + default: *213 headers: Link: *57 x-github: @@ -97692,7 +97607,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#list-team-members-legacy parameters: - - *630 + - *628 - name: role description: Filters members returned by their role in the team. in: query @@ -97743,7 +97658,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#get-team-member-legacy parameters: - - *630 + - *628 - *62 responses: '204': @@ -97780,7 +97695,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#add-team-member-legacy parameters: - - *630 + - *628 - *62 responses: '204': @@ -97820,7 +97735,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#remove-team-member-legacy parameters: - - *630 + - *628 - *62 responses: '204': @@ -97857,7 +97772,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#get-team-membership-for-a-user-legacy parameters: - - *630 + - *628 - *62 responses: '200': @@ -97866,7 +97781,7 @@ paths: application/json: schema: *307 examples: - response-if-user-is-a-team-maintainer: *631 + response-if-user-is-a-team-maintainer: *629 '404': *6 x-github: githubCloudOnly: false @@ -97899,7 +97814,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#add-or-update-team-membership-for-a-user-legacy parameters: - - *630 + - *628 - *62 requestBody: required: false @@ -97927,7 +97842,7 @@ paths: application/json: schema: *307 examples: - response-if-users-membership-with-team-is-now-pending: *632 + response-if-users-membership-with-team-is-now-pending: *630 '403': description: Forbidden if team synchronization is set up '422': @@ -97961,7 +97876,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#remove-team-membership-for-a-user-legacy parameters: - - *630 + - *628 - *62 responses: '204': @@ -97989,7 +97904,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#list-team-repositories-legacy parameters: - - *630 + - *628 - *17 - *19 responses: @@ -97999,9 +97914,9 @@ paths: application/json: schema: type: array - items: *145 + items: *144 examples: - default: *239 + default: *238 headers: Link: *57 '404': *6 @@ -98031,7 +97946,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#check-team-permissions-for-a-repository-legacy parameters: - - *630 + - *628 - *308 - *309 responses: @@ -98039,7 +97954,7 @@ paths: description: Alternative response with extra repository information content: application/json: - schema: *633 + schema: *631 examples: alternative-response-with-extra-repository-information: value: @@ -98190,7 +98105,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#add-or-update-team-repository-permissions-legacy parameters: - - *630 + - *628 - *308 - *309 requestBody: @@ -98242,7 +98157,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#remove-a-repository-from-a-team-legacy parameters: - - *630 + - *628 - *308 - *309 responses: @@ -98269,7 +98184,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#list-child-teams-legacy parameters: - - *630 + - *628 - *17 - *19 responses: @@ -98279,9 +98194,9 @@ paths: application/json: schema: type: array - items: *180 + items: *179 examples: - response-if-child-teams-exist: *634 + response-if-child-teams-exist: *632 headers: Link: *57 '404': *6 @@ -98314,7 +98229,7 @@ paths: application/json: schema: oneOf: - - &636 + - &634 title: Private User description: Private User type: object @@ -98564,7 +98479,7 @@ paths: - private_gists - total_private_repos - two_factor_authentication - - *635 + - *633 examples: response-with-public-and-private-profile-information: summary: Response with public and private profile information @@ -98724,7 +98639,7 @@ paths: description: Response content: application/json: - schema: *636 + schema: *634 examples: default: value: @@ -98927,11 +98842,11 @@ paths: type: integer codespaces: type: array - items: *221 + items: *220 examples: - default: *222 + default: *221 '304': *35 - '500': *105 + '500': *104 '401': *23 '403': *27 '404': *6 @@ -99068,7 +98983,7 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *221 + schema: *220 examples: default: *428 '202': @@ -99076,13 +98991,13 @@ paths: being retried in the background content: application/json: - schema: *221 + schema: *220 examples: default: *428 '401': *23 '403': *27 '404': *6 - '503': *106 + '503': *105 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -99122,7 +99037,7 @@ paths: type: integer secrets: type: array - items: &637 + items: &635 title: Codespaces Secret description: Secrets for a GitHub Codespace. type: object @@ -99236,13 +99151,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/secrets#get-a-secret-for-the-authenticated-user parameters: - - *153 + - *152 responses: '200': description: Response content: application/json: - schema: *637 + schema: *635 examples: default: value: @@ -99272,7 +99187,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/secrets#create-or-update-a-secret-for-the-authenticated-user parameters: - - *153 + - *152 requestBody: required: true content: @@ -99317,7 +99232,7 @@ paths: description: Response after successfully creating a secret content: application/json: - schema: *154 + schema: *153 examples: default: value: @@ -99345,7 +99260,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/secrets#delete-a-secret-for-the-authenticated-user parameters: - - *153 + - *152 responses: '204': description: Response @@ -99370,7 +99285,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/secrets#list-selected-repositories-for-a-user-secret parameters: - - *153 + - *152 responses: '200': description: Response @@ -99386,13 +99301,13 @@ paths: type: integer repositories: type: array - items: *145 + items: *144 examples: - default: *638 + default: *636 '401': *23 '403': *27 '404': *6 - '500': *105 + '500': *104 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -99413,7 +99328,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/secrets#set-selected-repositories-for-a-user-secret parameters: - - *153 + - *152 requestBody: required: true content: @@ -99445,7 +99360,7 @@ paths: '401': *23 '403': *27 '404': *6 - '500': *105 + '500': *104 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -99467,7 +99382,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/secrets#add-a-selected-repository-to-a-user-secret parameters: - - *153 + - *152 - name: repository_id in: path required: true @@ -99479,7 +99394,7 @@ paths: '401': *23 '403': *27 '404': *6 - '500': *105 + '500': *104 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -99500,7 +99415,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/secrets#remove-a-selected-repository-from-a-user-secret parameters: - - *153 + - *152 - name: repository_id in: path required: true @@ -99512,7 +99427,7 @@ paths: '401': *23 '403': *27 '404': *6 - '500': *105 + '500': *104 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -99532,17 +99447,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#get-a-codespace-for-the-authenticated-user parameters: - - *223 + - *222 responses: '200': description: Response content: application/json: - schema: *221 + schema: *220 examples: default: *428 '304': *35 - '500': *105 + '500': *104 '401': *23 '403': *27 '404': *6 @@ -99566,7 +99481,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#update-a-codespace-for-the-authenticated-user parameters: - - *223 + - *222 requestBody: required: false content: @@ -99596,7 +99511,7 @@ paths: description: Response content: application/json: - schema: *221 + schema: *220 examples: default: *428 '401': *23 @@ -99620,11 +99535,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#delete-a-codespace-for-the-authenticated-user parameters: - - *223 + - *222 responses: '202': *37 '304': *35 - '500': *105 + '500': *104 '401': *23 '403': *27 '404': *6 @@ -99649,13 +99564,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#export-a-codespace-for-the-authenticated-user parameters: - - *223 + - *222 responses: '202': description: Response content: application/json: - schema: &639 + schema: &637 type: object title: Fetches information about an export of a codespace. description: An export of a codespace. Also, latest export details @@ -99708,7 +99623,7 @@ paths: examples: - https://github.com/octocat/hello-world/tree/:branch examples: - default: &640 + default: &638 value: state: succeeded completed_at: '2022-01-01T14:59:22Z' @@ -99716,7 +99631,7 @@ paths: sha: fd95a81ca01e48ede9f39c799ecbcef817b8a3b2 id: latest export_url: https://api.github.com/user/codespaces/:name/exports/latest - '500': *105 + '500': *104 '401': *23 '403': *27 '404': *6 @@ -99740,7 +99655,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#get-details-about-a-codespace-export parameters: - - *223 + - *222 - name: export_id in: path required: true @@ -99753,9 +99668,9 @@ paths: description: Response content: application/json: - schema: *639 + schema: *637 examples: - default: *640 + default: *638 '404': *6 x-github: githubCloudOnly: false @@ -99776,7 +99691,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/machines#list-machine-types-for-a-codespace parameters: - - *223 + - *222 responses: '200': description: Response @@ -99794,9 +99709,9 @@ paths: type: array items: *429 examples: - default: *641 + default: *639 '304': *35 - '500': *105 + '500': *104 '401': *23 '403': *27 '404': *6 @@ -99823,7 +99738,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#create-a-repository-from-an-unpublished-codespace parameters: - - *223 + - *222 requestBody: required: true content: @@ -100680,17 +100595,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#start-a-codespace-for-the-authenticated-user parameters: - - *223 + - *222 responses: '200': description: Response content: application/json: - schema: *221 + schema: *220 examples: default: *428 '304': *35 - '500': *105 + '500': *104 '400': *14 '401': *23 '402': @@ -100720,16 +100635,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#stop-a-codespace-for-the-authenticated-user parameters: - - *223 + - *222 responses: '200': description: Response content: application/json: - schema: *221 + schema: *220 examples: default: *428 - '500': *105 + '500': *104 '401': *23 '403': *27 '404': *6 @@ -100758,9 +100673,9 @@ paths: application/json: schema: type: array - items: *233 + items: *232 examples: - default: &652 + default: &650 value: - id: 197 name: hello_docker @@ -100861,7 +100776,7 @@ paths: application/json: schema: type: array - items: &642 + items: &640 title: Email description: Email type: object @@ -100931,9 +100846,9 @@ paths: application/json: schema: type: array - items: *642 + items: *640 examples: - default: &654 + default: &652 value: - email: octocat@github.com verified: true @@ -101010,7 +100925,7 @@ paths: application/json: schema: type: array - items: *642 + items: *640 examples: default: value: @@ -101268,7 +101183,7 @@ paths: application/json: schema: type: array - items: &643 + items: &641 title: GPG Key description: A unique encryption key type: object @@ -101413,7 +101328,7 @@ paths: - subkeys - revoked examples: - default: &668 + default: &666 value: - id: 3 name: Octocat's GPG Key @@ -101498,9 +101413,9 @@ paths: description: Response content: application/json: - schema: *643 + schema: *641 examples: - default: &644 + default: &642 value: id: 3 name: Octocat's GPG Key @@ -101557,7 +101472,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/gpg-keys#get-a-gpg-key-for-the-authenticated-user parameters: - - &645 + - &643 name: gpg_key_id description: The unique identifier of the GPG key. in: path @@ -101569,9 +101484,9 @@ paths: description: Response content: application/json: - schema: *643 + schema: *641 examples: - default: *644 + default: *642 '404': *6 '304': *35 '403': *27 @@ -101594,7 +101509,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/gpg-keys#delete-a-gpg-key-for-the-authenticated-user parameters: - - *645 + - *643 responses: '204': description: Response @@ -101785,7 +101700,7 @@ paths: type: array items: *69 examples: - default: *137 + default: *136 headers: Link: *57 '404': *6 @@ -101810,7 +101725,7 @@ paths: url: https://docs.github.com/rest/apps/installations#add-a-repository-to-an-app-installation parameters: - *21 - - *134 + - *133 responses: '204': description: Response @@ -101836,7 +101751,7 @@ paths: url: https://docs.github.com/rest/apps/installations#remove-a-repository-from-an-app-installation parameters: - *21 - - *134 + - *133 responses: '204': description: Response @@ -101870,12 +101785,12 @@ paths: application/json: schema: anyOf: - - *211 + - *210 - type: object properties: {} additionalProperties: false examples: - default: *212 + default: *211 '204': description: Response when there are no restrictions x-github: @@ -101910,7 +101825,7 @@ paths: description: Response content: application/json: - schema: *211 + schema: *210 examples: default: value: @@ -101991,7 +101906,7 @@ paths: - closed - all default: open - - *219 + - *218 - name: sort description: What to sort results by. in: query @@ -102016,7 +101931,7 @@ paths: type: array items: *71 examples: - default: *220 + default: *219 headers: Link: *57 '404': *6 @@ -102049,7 +101964,7 @@ paths: application/json: schema: type: array - items: &646 + items: &644 title: Key description: Key type: object @@ -102152,9 +102067,9 @@ paths: description: Response content: application/json: - schema: *646 + schema: *644 examples: - default: &647 + default: &645 value: key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -102193,9 +102108,9 @@ paths: description: Response content: application/json: - schema: *646 + schema: *644 examples: - default: *647 + default: *645 '404': *6 '304': *35 '403': *27 @@ -102251,7 +102166,7 @@ paths: application/json: schema: type: array - items: &648 + items: &646 title: User Marketplace Purchase description: User Marketplace Purchase type: object @@ -102330,7 +102245,7 @@ paths: - account - plan examples: - default: &649 + default: &647 value: - billing_cycle: monthly next_billing_date: '2017-11-11T00:00:00Z' @@ -102392,9 +102307,9 @@ paths: application/json: schema: type: array - items: *648 + items: *646 examples: - default: *649 + default: *647 headers: Link: *57 '304': *35 @@ -102434,7 +102349,7 @@ paths: application/json: schema: type: array - items: *225 + items: *224 examples: default: value: @@ -102548,7 +102463,7 @@ paths: description: Response content: application/json: - schema: *225 + schema: *224 examples: default: value: @@ -102635,7 +102550,7 @@ paths: description: Response content: application/json: - schema: *225 + schema: *224 examples: default: value: @@ -102707,7 +102622,7 @@ paths: application/json: schema: type: array - items: *227 + items: *226 examples: default: value: @@ -102969,7 +102884,7 @@ paths: description: Response content: application/json: - schema: *227 + schema: *226 examples: default: value: @@ -103149,7 +103064,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#get-a-user-migration-status parameters: - - *228 + - *227 - name: exclude in: query required: false @@ -103162,7 +103077,7 @@ paths: description: Response content: application/json: - schema: *227 + schema: *226 examples: default: value: @@ -103356,7 +103271,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#download-a-user-migration-archive parameters: - - *228 + - *227 responses: '302': description: Response @@ -103382,7 +103297,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#delete-a-user-migration-archive parameters: - - *228 + - *227 responses: '204': description: Response @@ -103411,8 +103326,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#unlock-a-user-repository parameters: - - *228 - - *650 + - *227 + - *648 responses: '204': description: Response @@ -103436,7 +103351,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#list-repositories-for-a-user-migration parameters: - - *228 + - *227 - *17 - *19 responses: @@ -103446,9 +103361,9 @@ paths: application/json: schema: type: array - items: *145 + items: *144 examples: - default: *239 + default: *238 headers: Link: *57 '404': *6 @@ -103527,7 +103442,7 @@ paths: - docker - nuget - container - - *651 + - *649 - *19 - *17 responses: @@ -103537,10 +103452,10 @@ paths: application/json: schema: type: array - items: *233 + items: *232 examples: - default: *652 - '400': *653 + default: *650 + '400': *651 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -103560,16 +103475,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-for-the-authenticated-user parameters: + - *234 - *235 - - *236 responses: '200': description: Response content: application/json: - schema: *233 + schema: *232 examples: - default: &669 + default: &667 value: id: 40201 name: octo-name @@ -103682,8 +103597,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-a-package-for-the-authenticated-user parameters: + - *234 - *235 - - *236 responses: '204': description: Response @@ -103713,8 +103628,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-a-package-for-the-authenticated-user parameters: + - *234 - *235 - - *236 - name: token description: package token schema: @@ -103746,8 +103661,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: + - *234 - *235 - - *236 - *19 - *17 - name: state @@ -103767,7 +103682,7 @@ paths: application/json: schema: type: array - items: *237 + items: *236 examples: default: value: @@ -103816,15 +103731,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-version-for-the-authenticated-user parameters: + - *234 - *235 - - *236 - - *238 + - *237 responses: '200': description: Response content: application/json: - schema: *237 + schema: *236 examples: default: value: @@ -103860,9 +103775,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-a-package-version-for-the-authenticated-user parameters: + - *234 - *235 - - *236 - - *238 + - *237 responses: '204': description: Response @@ -103892,9 +103807,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-a-package-version-for-the-authenticated-user parameters: + - *234 - *235 - - *236 - - *238 + - *237 responses: '204': description: Response @@ -103931,9 +103846,9 @@ paths: application/json: schema: type: array - items: *642 + items: *640 examples: - default: *654 + default: *652 headers: Link: *57 '304': *35 @@ -104046,7 +103961,7 @@ paths: type: array items: *69 examples: - default: &661 + default: &659 summary: Default response value: - id: 1296269 @@ -104406,7 +104321,7 @@ paths: type: array items: *502 examples: - default: *655 + default: *653 headers: Link: *57 '304': *35 @@ -104429,7 +104344,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#accept-a-repository-invitation parameters: - - *215 + - *214 responses: '204': description: Response @@ -104452,7 +104367,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#decline-a-repository-invitation parameters: - - *215 + - *214 responses: '204': description: Response @@ -104485,7 +104400,7 @@ paths: application/json: schema: type: array - items: &656 + items: &654 title: Social account description: Social media account type: object @@ -104502,7 +104417,7 @@ paths: - provider - url examples: - default: &657 + default: &655 value: - provider: twitter url: https://twitter.com/github @@ -104565,9 +104480,9 @@ paths: application/json: schema: type: array - items: *656 + items: *654 examples: - default: *657 + default: *655 '422': *15 '304': *35 '404': *6 @@ -104655,7 +104570,7 @@ paths: application/json: schema: type: array - items: &658 + items: &656 title: SSH Signing Key description: A public SSH key used to sign Git commits type: object @@ -104675,7 +104590,7 @@ paths: - title - created_at examples: - default: &687 + default: &685 value: - id: 2 key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -104740,9 +104655,9 @@ paths: description: Response content: application/json: - schema: *658 + schema: *656 examples: - default: &659 + default: &657 value: id: 2 key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -104772,7 +104687,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: - - &660 + - &658 name: ssh_signing_key_id description: The unique identifier of the SSH signing key. in: path @@ -104784,9 +104699,9 @@ paths: description: Response content: application/json: - schema: *658 + schema: *656 examples: - default: *659 + default: *657 '404': *6 '304': *35 '403': *27 @@ -104809,7 +104724,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: - - *660 + - *658 responses: '204': description: Response @@ -104838,7 +104753,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#list-repositories-starred-by-the-authenticated-user parameters: - - &688 + - &686 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 @@ -104863,11 +104778,11 @@ paths: type: array items: *69 examples: - default-response: *661 + default-response: *659 application/vnd.github.v3.star+json: schema: type: array - items: &689 + items: &687 title: Starred Repository description: Starred Repository type: object @@ -105111,9 +105026,9 @@ paths: application/json: schema: type: array - items: *145 + items: *144 examples: - default: *239 + default: *238 headers: Link: *57 '304': *35 @@ -105236,10 +105151,10 @@ paths: application/json: schema: oneOf: - - *636 - - *635 + - *634 + - *633 examples: - default-response: &663 + default-response: &661 summary: Default response value: login: octocat @@ -105274,7 +105189,7 @@ paths: following: 0 created_at: '2008-01-14T04:33:35Z' updated_at: '2008-01-14T04:33:35Z' - response-with-git-hub-plan-information: &664 + response-with-git-hub-plan-information: &662 summary: Response with GitHub plan information value: login: octocat @@ -105337,7 +105252,7 @@ paths: required: true schema: type: string - - *251 + - *250 requestBody: required: true description: Details of the draft item to create in the project. @@ -105371,9 +105286,9 @@ paths: description: Response content: application/json: - schema: *256 + schema: *255 examples: - draft_issue: *257 + draft_issue: *256 '304': *35 '403': *27 '401': *23 @@ -105396,7 +105311,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/users#list-users parameters: - - *662 + - *660 - *17 responses: '200': @@ -105445,11 +105360,11 @@ paths: application/json: schema: oneOf: - - *636 - - *635 + - *634 + - *633 examples: - default-response: *663 - response-with-git-hub-plan-information: *664 + default-response: *661 + response-with-git-hub-plan-information: *662 '404': *6 x-github: githubCloudOnly: false @@ -105499,8 +105414,8 @@ paths: required: - subject_digests examples: - default: *665 - withPredicateType: *666 + default: *663 + withPredicateType: *664 responses: '200': description: Response @@ -105554,7 +105469,7 @@ paths: description: The cursor to the previous page. description: Information about the current page. examples: - default: *667 + default: *665 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -105764,7 +105679,7 @@ paths: description: Response content: application/json: - schema: *154 + schema: *153 examples: default: value: @@ -105798,9 +105713,9 @@ paths: application/json: schema: type: array - items: *233 + items: *232 examples: - default: *652 + default: *650 '403': *27 '401': *23 x-github: @@ -106184,9 +106099,9 @@ paths: application/json: schema: type: array - items: *643 + items: *641 examples: - default: *668 + default: *666 headers: Link: *57 x-github: @@ -106415,7 +106330,7 @@ paths: - docker - nuget - container - - *651 + - *649 - *62 - *19 - *17 @@ -106426,12 +106341,12 @@ paths: application/json: schema: type: array - items: *233 + items: *232 examples: - default: *652 + default: *650 '403': *27 '401': *23 - '400': *653 + '400': *651 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -106451,17 +106366,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-for-a-user parameters: + - *234 - *235 - - *236 - *62 responses: '200': description: Response content: application/json: - schema: *233 + schema: *232 examples: - default: *669 + default: *667 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -106482,8 +106397,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-a-package-for-a-user parameters: + - *234 - *235 - - *236 - *62 responses: '204': @@ -106516,8 +106431,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-a-package-for-a-user parameters: + - *234 - *235 - - *236 - *62 - name: token description: package token @@ -106550,8 +106465,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: + - *234 - *235 - - *236 - *62 responses: '200': @@ -106560,7 +106475,7 @@ paths: application/json: schema: type: array - items: *237 + items: *236 examples: default: value: @@ -106618,16 +106533,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-version-for-a-user parameters: + - *234 - *235 - - *236 - - *238 + - *237 - *62 responses: '200': description: Response content: application/json: - schema: *237 + schema: *236 examples: default: value: @@ -106662,10 +106577,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-package-version-for-a-user parameters: + - *234 - *235 - - *236 - *62 - - *238 + - *237 responses: '204': description: Response @@ -106697,10 +106612,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-package-version-for-a-user parameters: + - *234 - *235 - - *236 - *62 - - *238 + - *237 responses: '204': description: Response @@ -106741,9 +106656,9 @@ paths: application/json: schema: type: array - items: *249 + items: *248 examples: - default: *250 + default: *249 headers: Link: *57 '304': *35 @@ -106765,16 +106680,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/projects#get-project-for-user parameters: - - *251 + - *250 - *62 responses: '200': description: Response content: application/json: - schema: *249 + schema: *248 examples: - default: *250 + default: *249 headers: Link: *57 '304': *35 @@ -106796,7 +106711,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/fields#list-project-fields-for-user parameters: - - *251 + - *250 - *62 - *17 - *43 @@ -106808,9 +106723,9 @@ paths: application/json: schema: type: array - items: *254 + items: *253 examples: - default: *670 + default: *668 headers: Link: *57 '304': *35 @@ -106832,7 +106747,7 @@ paths: url: https://docs.github.com/rest/projects/fields#add-field-to-user-owned-project parameters: - *62 - - *251 + - *250 requestBody: required: true content: @@ -106870,7 +106785,7 @@ paths: description: The options available for single select fields. At least one option must be provided when creating a single select field. - items: *671 + items: *669 required: - name - data_type @@ -106886,7 +106801,7 @@ paths: description: The field's data type. enum: - iteration - iteration_configuration: *672 + iteration_configuration: *670 required: - name - data_type @@ -106908,20 +106823,20 @@ paths: value: name: Due date data_type: date - single_select_field: *673 - iteration_field: *674 + single_select_field: *671 + iteration_field: *672 responses: '201': description: Response content: application/json: - schema: *254 + schema: *253 examples: - text_field: *675 - number_field: *676 - date_field: *677 - single_select_field: *678 - iteration_field: *679 + text_field: *673 + number_field: *674 + date_field: *675 + single_select_field: *676 + iteration_field: *677 '304': *35 '403': *27 '401': *23 @@ -106942,17 +106857,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/fields#get-project-field-for-user parameters: - - *251 - - *680 + - *250 + - *678 - *62 responses: '200': description: Response content: application/json: - schema: *254 + schema: *253 examples: - default: *681 + default: *679 headers: Link: *57 '304': *35 @@ -106975,7 +106890,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#list-items-for-a-user-owned-project parameters: - - *251 + - *250 - *62 - *43 - *44 @@ -107008,9 +106923,9 @@ paths: application/json: schema: type: array - items: *258 + items: *257 examples: - default: *259 + default: *258 headers: Link: *57 '304': *35 @@ -107032,7 +106947,7 @@ paths: url: https://docs.github.com/rest/projects/items#add-item-to-user-owned-project parameters: - *62 - - *251 + - *250 requestBody: required: true description: Details of the item to add to the project. You can specify either @@ -107102,22 +107017,22 @@ paths: description: Response content: application/json: - schema: *256 + schema: *255 examples: issue_with_id: summary: Response for adding an issue using its unique ID - value: *257 + value: *256 pull_request_with_id: summary: Response for adding a pull request using its unique ID - value: *257 + value: *256 issue_with_nwo: summary: Response for adding an issue using repository owner, name, and issue number - value: *257 + value: *256 pull_request_with_nwo: summary: Response for adding a pull request using repository owner, name, and PR number - value: *257 + value: *256 '304': *35 '403': *27 '401': *23 @@ -107137,9 +107052,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#get-an-item-for-a-user-owned-project parameters: - - *251 + - *250 - *62 - - *260 + - *259 - name: fields description: |- Limit results to specific fields, by their IDs. If not specified, the title field will be returned. @@ -107159,9 +107074,9 @@ paths: description: Response content: application/json: - schema: *258 + schema: *257 examples: - default: *259 + default: *258 headers: Link: *57 '304': *35 @@ -107182,9 +107097,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#update-project-item-for-user parameters: - - *251 + - *250 - *62 - - *260 + - *259 requestBody: required: true description: Field updates to apply to the project item. Only text, number, @@ -107257,13 +107172,13 @@ paths: description: Response content: application/json: - schema: *258 + schema: *257 examples: - text_field: *259 - number_field: *259 - date_field: *259 - single_select_field: *259 - iteration_field: *259 + text_field: *258 + number_field: *258 + date_field: *258 + single_select_field: *258 + iteration_field: *258 '401': *23 '403': *27 '404': *6 @@ -107283,9 +107198,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#delete-project-item-for-user parameters: - - *251 + - *250 - *62 - - *260 + - *259 responses: '204': description: Response @@ -107307,9 +107222,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#list-items-for-a-user-project-view parameters: - - *251 + - *250 - *62 - - *682 + - *680 - name: fields description: |- Limit results to specific fields, by their IDs. If not specified, the @@ -107335,9 +107250,9 @@ paths: application/json: schema: type: array - items: *258 + items: *257 examples: - default: *259 + default: *258 headers: Link: *57 '304': *35 @@ -107556,9 +107471,9 @@ paths: application/json: schema: type: array - items: *145 + items: *144 examples: - default: *239 + default: *238 headers: Link: *57 x-github: @@ -107581,11 +107496,11 @@ paths: url: https://docs.github.com/rest/billing/usage#get-billing-premium-request-usage-report-for-a-user parameters: - *62 + - *107 + - *109 - *108 + - *681 - *110 - - *109 - - *683 - - *111 responses: '200': description: Response when getting a billing premium request usage report @@ -107692,8 +107607,8 @@ paths: '400': *14 '403': *27 '404': *6 - '500': *105 - '503': *106 + '500': *104 + '503': *105 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -107714,9 +107629,9 @@ paths: url: https://docs.github.com/rest/billing/usage#get-billing-usage-report-for-a-user parameters: - *62 + - *107 + - *682 - *108 - - *684 - - *109 responses: '200': description: Response when getting a billing usage report @@ -107786,8 +107701,8 @@ paths: repositoryName: user/example '400': *14 '403': *27 - '500': *105 - '503': *106 + '500': *104 + '503': *105 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -107811,12 +107726,12 @@ paths: url: https://docs.github.com/rest/billing/usage#get-billing-usage-summary-for-a-user parameters: - *62 + - *107 + - *109 - *108 + - *683 - *110 - - *109 - - *685 - - *111 - - *686 + - *684 responses: '200': description: Response when getting a billing usage summary @@ -107921,8 +107836,8 @@ paths: '400': *14 '403': *27 '404': *6 - '500': *105 - '503': *106 + '500': *104 + '503': *105 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -107950,9 +107865,9 @@ paths: application/json: schema: type: array - items: *656 + items: *654 examples: - default: *657 + default: *655 headers: Link: *57 x-github: @@ -107982,9 +107897,9 @@ paths: application/json: schema: type: array - items: *658 + items: *656 examples: - default: *687 + default: *685 headers: Link: *57 x-github: @@ -108009,7 +107924,7 @@ paths: url: https://docs.github.com/rest/activity/starring#list-repositories-starred-by-a-user parameters: - *62 - - *688 + - *686 - *51 - *17 - *19 @@ -108021,11 +107936,11 @@ paths: schema: anyOf: - type: array - items: *689 + items: *687 - type: array items: *69 examples: - default-response: *661 + default-response: *659 headers: Link: *57 x-github: @@ -108054,9 +107969,9 @@ paths: application/json: schema: type: array - items: *145 + items: *144 examples: - default: *239 + default: *238 headers: Link: *57 x-github: @@ -108185,7 +108100,7 @@ webhooks: type: string enum: - disabled - enterprise: &690 + enterprise: &688 title: Enterprise description: |- An enterprise on GitHub. Webhook payloads contain the `enterprise` property when the webhook is configured @@ -108254,7 +108169,7 @@ webhooks: - created_at - updated_at - avatar_url - installation: &691 + installation: &689 title: Simple Installation description: |- The GitHub App installation. Webhook payloads contain the `installation` property when the event is configured @@ -108275,7 +108190,7 @@ webhooks: required: - id - node_id - organization: &692 + organization: &690 title: Organization Simple description: |- A GitHub organization. Webhook payloads contain the `organization` property when the webhook is configured for an @@ -108348,7 +108263,7 @@ webhooks: - public_members_url - avatar_url - description - repository: &693 + repository: &691 title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property @@ -109261,10 +109176,10 @@ webhooks: type: string enum: - enabled - enterprise: *690 - installation: *691 - organization: *692 - repository: *693 + enterprise: *688 + installation: *689 + organization: *690 + repository: *691 sender: *4 required: - action @@ -109340,11 +109255,11 @@ webhooks: type: string enum: - created - enterprise: *690 - installation: *691 - organization: *692 - repository: *693 - rule: &694 + enterprise: *688 + installation: *689 + organization: *690 + repository: *691 + rule: &692 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) @@ -109567,11 +109482,11 @@ webhooks: type: string enum: - deleted - enterprise: *690 - installation: *691 - organization: *692 - repository: *693 - rule: *694 + enterprise: *688 + installation: *689 + organization: *690 + repository: *691 + rule: *692 sender: *4 required: - action @@ -109759,11 +109674,11 @@ webhooks: - everyone required: - from - enterprise: *690 - installation: *691 - organization: *692 - repository: *693 - rule: *694 + enterprise: *688 + installation: *689 + organization: *690 + repository: *691 + rule: *692 sender: *4 required: - action @@ -109847,7 +109762,7 @@ webhooks: type: string enum: - completed - check_run: &696 + check_run: &694 title: CheckRun description: A check performed on the code of a given code change type: object @@ -109913,7 +109828,7 @@ webhooks: pull_requests: type: array items: *75 - repository: *145 + repository: *144 status: type: string enum: @@ -109957,7 +109872,7 @@ webhooks: - examples: - neutral - deployment: *695 + deployment: *693 details_url: type: string examples: @@ -110055,10 +109970,10 @@ webhooks: - output - app - pull_requests - installation: *691 - enterprise: *690 - organization: *692 - repository: *693 + installation: *689 + enterprise: *688 + organization: *690 + repository: *691 sender: *4 required: - check_run @@ -110451,11 +110366,11 @@ webhooks: type: string enum: - created - check_run: *696 - installation: *691 - enterprise: *690 - organization: *692 - repository: *693 + check_run: *694 + installation: *689 + enterprise: *688 + organization: *690 + repository: *691 sender: *4 required: - check_run @@ -110851,11 +110766,11 @@ webhooks: type: string enum: - requested_action - check_run: *696 - installation: *691 - enterprise: *690 - organization: *692 - repository: *693 + check_run: *694 + installation: *689 + enterprise: *688 + organization: *690 + repository: *691 requested_action: description: The action requested by the user. type: object @@ -111260,11 +111175,11 @@ webhooks: type: string enum: - rerequested - check_run: *696 - installation: *691 - enterprise: *690 - organization: *692 - repository: *693 + check_run: *694 + installation: *689 + enterprise: *688 + organization: *690 + repository: *691 sender: *4 required: - check_run @@ -112256,10 +112171,10 @@ webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *690 - installation: *691 - organization: *692 - repository: *693 + enterprise: *688 + installation: *689 + organization: *690 + repository: *691 sender: *4 required: - action @@ -112968,10 +112883,10 @@ webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *690 - installation: *691 - organization: *692 - repository: *693 + enterprise: *688 + installation: *689 + organization: *690 + repository: *691 sender: *4 required: - action @@ -113674,10 +113589,10 @@ webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *690 - installation: *691 - organization: *692 - repository: *693 + enterprise: *688 + installation: *689 + organization: *690 + repository: *691 sender: *4 required: - action @@ -113998,20 +113913,20 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: &697 + commit_oid: &695 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: *690 - installation: *691 - organization: *692 - ref: &698 + enterprise: *688 + installation: *689 + organization: *690 + ref: &696 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: *693 + repository: *691 sender: *4 required: - action @@ -114419,12 +114334,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *697 - enterprise: *690 - installation: *691 - organization: *692 - ref: *698 - repository: *693 + commit_oid: *695 + enterprise: *688 + installation: *689 + organization: *690 + ref: *696 + repository: *691 sender: *4 required: - action @@ -114707,12 +114622,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *697 - enterprise: *690 - installation: *691 - organization: *692 - ref: *698 - repository: *693 + commit_oid: *695 + enterprise: *688 + installation: *689 + organization: *690 + ref: *696 + repository: *691 sender: *4 required: - action @@ -115058,12 +114973,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *697 - enterprise: *690 - installation: *691 - organization: *692 - ref: *698 - repository: *693 + commit_oid: *695 + enterprise: *688 + installation: *689 + organization: *690 + ref: *696 + repository: *691 sender: *4 required: - action @@ -115353,9 +115268,9 @@ webhooks: type: - string - 'null' - enterprise: *690 - installation: *691 - organization: *692 + enterprise: *688 + installation: *689 + organization: *690 ref: description: The Git reference of the code scanning alert. When the action is `reopened_by_user` or `closed_by_user`, the event @@ -115363,7 +115278,7 @@ webhooks: type: - string - 'null' - repository: *693 + repository: *691 sender: *4 required: - action @@ -115609,12 +115524,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *697 - enterprise: *690 - installation: *691 - organization: *692 - ref: *698 - repository: *693 + commit_oid: *695 + enterprise: *688 + installation: *689 + organization: *690 + ref: *696 + repository: *691 sender: *4 required: - action @@ -115935,10 +115850,10 @@ webhooks: - dismissed_reason - rule - tool - enterprise: *690 - installation: *691 - organization: *692 - repository: *693 + enterprise: *688 + installation: *689 + organization: *690 + repository: *691 sender: *4 required: - action @@ -116198,10 +116113,10 @@ webhooks: - updated_at - author_association - body - enterprise: *690 - installation: *691 - organization: *692 - repository: *693 + enterprise: *688 + installation: *689 + organization: *690 + repository: *691 sender: *4 required: - action @@ -116282,18 +116197,18 @@ webhooks: type: - string - 'null' - enterprise: *690 - installation: *691 + enterprise: *688 + installation: *689 master_branch: description: The name of the repository's default branch (usually `main`). type: string - organization: *692 - pusher_type: &699 + organization: *690 + pusher_type: &697 description: The pusher type for the event. Can be either `user` or a deploy key. type: string - ref: &700 + ref: &698 description: The [`git ref`](https://docs.github.com/rest/git/refs#get-a-reference) resource. type: string @@ -116303,7 +116218,7 @@ webhooks: enum: - tag - branch - repository: *693 + repository: *691 sender: *4 required: - ref @@ -116385,10 +116300,10 @@ webhooks: type: string enum: - created - definition: *261 - enterprise: *690 - installation: *691 - organization: *692 + definition: *260 + enterprise: *688 + installation: *689 + organization: *690 sender: *4 required: - action @@ -116473,9 +116388,9 @@ webhooks: description: The name of the property that was deleted. required: - property_name - enterprise: *690 - installation: *691 - organization: *692 + enterprise: *688 + installation: *689 + organization: *690 sender: *4 required: - action @@ -116552,10 +116467,10 @@ webhooks: type: string enum: - promote_to_enterprise - definition: *261 - enterprise: *690 - installation: *691 - organization: *692 + definition: *260 + enterprise: *688 + installation: *689 + organization: *690 sender: *4 required: - action @@ -116632,10 +116547,10 @@ webhooks: type: string enum: - updated - definition: *261 - enterprise: *690 - installation: *691 - organization: *692 + definition: *260 + enterprise: *688 + installation: *689 + organization: *690 sender: *4 required: - action @@ -116712,19 +116627,19 @@ webhooks: type: string enum: - updated - enterprise: *690 - installation: *691 - repository: *693 - organization: *692 + enterprise: *688 + installation: *689 + repository: *691 + organization: *690 sender: *4 new_property_values: type: array description: The new custom property values for the repository. - items: *104 + items: *264 old_property_values: type: array description: The old custom property values for the repository. - items: *104 + items: *264 required: - action - repository @@ -116800,18 +116715,18 @@ webhooks: title: delete event type: object properties: - enterprise: *690 - installation: *691 - organization: *692 - pusher_type: *699 - ref: *700 + enterprise: *688 + installation: *689 + organization: *690 + pusher_type: *697 + ref: *698 ref_type: description: The type of Git ref object deleted in the repository. type: string enum: - tag - branch - repository: *693 + repository: *691 sender: *4 required: - ref @@ -116896,10 +116811,10 @@ webhooks: enum: - auto_dismissed alert: *458 - installation: *691 - organization: *692 - enterprise: *690 - repository: *693 + installation: *689 + organization: *690 + enterprise: *688 + repository: *691 sender: *4 required: - action @@ -116984,10 +116899,10 @@ webhooks: enum: - auto_reopened alert: *458 - installation: *691 - organization: *692 - enterprise: *690 - repository: *693 + installation: *689 + organization: *690 + enterprise: *688 + repository: *691 sender: *4 required: - action @@ -117072,10 +116987,10 @@ webhooks: enum: - created alert: *458 - installation: *691 - organization: *692 - enterprise: *690 - repository: *693 + installation: *689 + organization: *690 + enterprise: *688 + repository: *691 sender: *4 required: - action @@ -117158,10 +117073,10 @@ webhooks: enum: - dismissed alert: *458 - installation: *691 - organization: *692 - enterprise: *690 - repository: *693 + installation: *689 + organization: *690 + enterprise: *688 + repository: *691 sender: *4 required: - action @@ -117244,10 +117159,10 @@ webhooks: enum: - fixed alert: *458 - installation: *691 - organization: *692 - enterprise: *690 - repository: *693 + installation: *689 + organization: *690 + enterprise: *688 + repository: *691 sender: *4 required: - action @@ -117331,10 +117246,10 @@ webhooks: enum: - reintroduced alert: *458 - installation: *691 - organization: *692 - enterprise: *690 - repository: *693 + installation: *689 + organization: *690 + enterprise: *688 + repository: *691 sender: *4 required: - action @@ -117417,10 +117332,10 @@ webhooks: enum: - reopened alert: *458 - installation: *691 - organization: *692 - enterprise: *690 - repository: *693 + installation: *689 + organization: *690 + enterprise: *688 + repository: *691 sender: *4 required: - action @@ -117497,9 +117412,9 @@ webhooks: type: string enum: - created - enterprise: *690 - installation: *691 - key: &701 + enterprise: *688 + installation: *689 + key: &699 description: The [`deploy key`](https://docs.github.com/rest/deploy-keys/deploy-keys#get-a-deploy-key) resource. type: object @@ -117537,8 +117452,8 @@ webhooks: - verified - created_at - read_only - organization: *692 - repository: *693 + organization: *690 + repository: *691 sender: *4 required: - action @@ -117615,11 +117530,11 @@ webhooks: type: string enum: - deleted - enterprise: *690 - installation: *691 - key: *701 - organization: *692 - repository: *693 + enterprise: *688 + installation: *689 + key: *699 + organization: *690 + repository: *691 sender: *4 required: - action @@ -118191,12 +118106,12 @@ webhooks: - updated_at - statuses_url - repository_url - enterprise: *690 - installation: *691 - organization: *692 - repository: *693 + enterprise: *688 + installation: *689 + organization: *690 + repository: *691 sender: *4 - workflow: &705 + workflow: &703 title: Workflow type: - object @@ -118937,10 +118852,10 @@ webhooks: deployment: *464 pull_requests: type: array - items: *549 - repository: *693 - organization: *692 - installation: *691 + items: *547 + repository: *691 + organization: *690 + installation: *689 sender: *4 responses: '200': @@ -119011,7 +118926,7 @@ webhooks: type: string enum: - approved - approver: &702 + approver: &700 type: object properties: avatar_url: @@ -119054,11 +118969,11 @@ webhooks: type: string comment: type: string - enterprise: *690 - installation: *691 - organization: *692 - repository: *693 - reviewers: &703 + enterprise: *688 + installation: *689 + organization: *690 + repository: *691 + reviewers: &701 type: array items: type: object @@ -119139,7 +119054,7 @@ webhooks: sender: *4 since: type: string - workflow_job_run: &704 + workflow_job_run: &702 type: object properties: conclusion: @@ -119885,18 +119800,18 @@ webhooks: type: string enum: - rejected - approver: *702 + approver: *700 comment: type: string - enterprise: *690 - installation: *691 - organization: *692 - repository: *693 - reviewers: *703 + enterprise: *688 + installation: *689 + organization: *690 + repository: *691 + reviewers: *701 sender: *4 since: type: string - workflow_job_run: *704 + workflow_job_run: *702 workflow_job_runs: type: array items: @@ -120613,13 +120528,13 @@ webhooks: type: string enum: - requested - enterprise: *690 + enterprise: *688 environment: type: string - installation: *691 - organization: *692 - repository: *693 - requestor: &710 + installation: *689 + organization: *690 + repository: *691 + requestor: &708 title: User type: - object @@ -122562,12 +122477,12 @@ webhooks: - updated_at - deployment_url - repository_url - enterprise: *690 - installation: *691 - organization: *692 - repository: *693 + enterprise: *688 + installation: *689 + organization: *690 + repository: *691 sender: *4 - workflow: *705 + workflow: *703 workflow_run: title: Deployment Workflow Run type: @@ -123258,7 +123173,7 @@ webhooks: type: string enum: - answered - answer: &708 + answer: &706 type: object properties: author_association: @@ -123418,11 +123333,11 @@ webhooks: - created_at - updated_at - body - discussion: *706 - enterprise: *690 - installation: *691 - organization: *692 - repository: *693 + discussion: *704 + enterprise: *688 + installation: *689 + organization: *690 + repository: *691 sender: *4 required: - action @@ -123549,11 +123464,11 @@ webhooks: - from required: - category - discussion: *706 - enterprise: *690 - installation: *691 - organization: *692 - repository: *693 + discussion: *704 + enterprise: *688 + installation: *689 + organization: *690 + repository: *691 sender: *4 required: - action @@ -123636,11 +123551,11 @@ webhooks: type: string enum: - closed - discussion: *706 - enterprise: *690 - installation: *691 - organization: *692 - repository: *693 + discussion: *704 + enterprise: *688 + installation: *689 + organization: *690 + repository: *691 sender: *4 required: - action @@ -123722,7 +123637,7 @@ webhooks: type: string enum: - created - comment: &707 + comment: &705 type: object properties: author_association: @@ -123882,11 +123797,11 @@ webhooks: - updated_at - body - reactions - discussion: *706 - enterprise: *690 - installation: *691 - organization: *692 - repository: *693 + discussion: *704 + enterprise: *688 + installation: *689 + organization: *690 + repository: *691 sender: *4 required: - action @@ -123969,12 +123884,12 @@ webhooks: type: string enum: - deleted - comment: *707 - discussion: *706 - enterprise: *690 - installation: *691 - organization: *692 - repository: *693 + comment: *705 + discussion: *704 + enterprise: *688 + installation: *689 + organization: *690 + repository: *691 sender: *4 required: - action @@ -124069,12 +123984,12 @@ webhooks: - from required: - body - comment: *707 - discussion: *706 - enterprise: *690 - installation: *691 - organization: *692 - repository: *693 + comment: *705 + discussion: *704 + enterprise: *688 + installation: *689 + organization: *690 + repository: *691 sender: *4 required: - action @@ -124158,11 +124073,11 @@ webhooks: type: string enum: - created - discussion: *706 - enterprise: *690 - installation: *691 - organization: *692 - repository: *693 + discussion: *704 + enterprise: *688 + installation: *689 + organization: *690 + repository: *691 sender: *4 required: - action @@ -124244,11 +124159,11 @@ webhooks: type: string enum: - deleted - discussion: *706 - enterprise: *690 - installation: *691 - organization: *692 - repository: *693 + discussion: *704 + enterprise: *688 + installation: *689 + organization: *690 + repository: *691 sender: *4 required: - action @@ -124348,11 +124263,11 @@ webhooks: type: string required: - from - discussion: *706 - enterprise: *690 - installation: *691 - organization: *692 - repository: *693 + discussion: *704 + enterprise: *688 + installation: *689 + organization: *690 + repository: *691 sender: *4 required: - action @@ -124434,10 +124349,10 @@ webhooks: type: string enum: - labeled - discussion: *706 - enterprise: *690 - installation: *691 - label: &709 + discussion: *704 + enterprise: *688 + installation: *689 + label: &707 title: Label type: object properties: @@ -124470,8 +124385,8 @@ webhooks: - color - default - description - organization: *692 - repository: *693 + organization: *690 + repository: *691 sender: *4 required: - action @@ -124554,11 +124469,11 @@ webhooks: type: string enum: - locked - discussion: *706 - enterprise: *690 - installation: *691 - organization: *692 - repository: *693 + discussion: *704 + enterprise: *688 + installation: *689 + organization: *690 + repository: *691 sender: *4 required: - action @@ -124640,11 +124555,11 @@ webhooks: type: string enum: - pinned - discussion: *706 - enterprise: *690 - installation: *691 - organization: *692 - repository: *693 + discussion: *704 + enterprise: *688 + installation: *689 + organization: *690 + repository: *691 sender: *4 required: - action @@ -124726,11 +124641,11 @@ webhooks: type: string enum: - reopened - discussion: *706 - enterprise: *690 - installation: *691 - organization: *692 - repository: *693 + discussion: *704 + enterprise: *688 + installation: *689 + organization: *690 + repository: *691 sender: *4 required: - action @@ -124815,16 +124730,16 @@ webhooks: changes: type: object properties: - new_discussion: *706 - new_repository: *693 + new_discussion: *704 + new_repository: *691 required: - new_discussion - new_repository - discussion: *706 - enterprise: *690 - installation: *691 - organization: *692 - repository: *693 + discussion: *704 + enterprise: *688 + installation: *689 + organization: *690 + repository: *691 sender: *4 required: - action @@ -124907,10 +124822,10 @@ webhooks: type: string enum: - unanswered - discussion: *706 - old_answer: *708 - organization: *692 - repository: *693 + discussion: *704 + old_answer: *706 + organization: *690 + repository: *691 sender: *4 required: - action @@ -124992,12 +124907,12 @@ webhooks: type: string enum: - unlabeled - discussion: *706 - enterprise: *690 - installation: *691 - label: *709 - organization: *692 - repository: *693 + discussion: *704 + enterprise: *688 + installation: *689 + label: *707 + organization: *690 + repository: *691 sender: *4 required: - action @@ -125080,11 +124995,11 @@ webhooks: type: string enum: - unlocked - discussion: *706 - enterprise: *690 - installation: *691 - organization: *692 - repository: *693 + discussion: *704 + enterprise: *688 + installation: *689 + organization: *690 + repository: *691 sender: *4 required: - action @@ -125166,11 +125081,11 @@ webhooks: type: string enum: - unpinned - discussion: *706 - enterprise: *690 - installation: *691 - organization: *692 - repository: *693 + discussion: *704 + enterprise: *688 + installation: *689 + organization: *690 + repository: *691 sender: *4 required: - action @@ -125243,7 +125158,7 @@ webhooks: description: A user forks a repository. type: object properties: - enterprise: *690 + enterprise: *688 forkee: description: The created [`repository`](https://docs.github.com/rest/repos/repos#get-a-repository) resource. @@ -125921,9 +125836,9 @@ webhooks: type: integer watchers_count: type: integer - installation: *691 - organization: *692 - repository: *693 + installation: *689 + organization: *690 + repository: *691 sender: *4 required: - forkee @@ -126069,9 +125984,9 @@ webhooks: title: gollum event type: object properties: - enterprise: *690 - installation: *691 - organization: *692 + enterprise: *688 + installation: *689 + organization: *690 pages: description: The pages that were updated. type: array @@ -126109,7 +126024,7 @@ webhooks: - action - sha - html_url - repository: *693 + repository: *691 sender: *4 required: - pages @@ -126185,10 +126100,10 @@ webhooks: type: string enum: - created - enterprise: *690 + enterprise: *688 installation: *20 - organization: *692 - repositories: &711 + organization: *690 + repositories: &709 description: An array of repository objects that the installation can access. type: array @@ -126214,8 +126129,8 @@ webhooks: - name - full_name - private - repository: *693 - requester: *710 + repository: *691 + requester: *708 sender: *4 required: - action @@ -126290,11 +126205,11 @@ webhooks: type: string enum: - deleted - enterprise: *690 + enterprise: *688 installation: *20 - organization: *692 - repositories: *711 - repository: *693 + organization: *690 + repositories: *709 + repository: *691 requester: type: - 'null' @@ -126371,11 +126286,11 @@ webhooks: type: string enum: - new_permissions_accepted - enterprise: *690 + enterprise: *688 installation: *20 - organization: *692 - repositories: *711 - repository: *693 + organization: *690 + repositories: *709 + repository: *691 requester: type: - 'null' @@ -126452,10 +126367,10 @@ webhooks: type: string enum: - added - enterprise: *690 + enterprise: *688 installation: *20 - organization: *692 - repositories_added: &712 + organization: *690 + repositories_added: &710 description: An array of repository objects, which were added to the installation. type: array @@ -126501,15 +126416,15 @@ webhooks: private: description: Whether the repository is private or public. type: boolean - repository: *693 - repository_selection: &713 + repository: *691 + repository_selection: &711 description: Describe whether all repositories have been selected or there's a selection involved type: string enum: - all - selected - requester: *710 + requester: *708 sender: *4 required: - action @@ -126588,10 +126503,10 @@ webhooks: type: string enum: - removed - enterprise: *690 + enterprise: *688 installation: *20 - organization: *692 - repositories_added: *712 + organization: *690 + repositories_added: *710 repositories_removed: description: An array of repository objects, which were removed from the installation. @@ -126618,9 +126533,9 @@ webhooks: - name - full_name - private - repository: *693 - repository_selection: *713 - requester: *710 + repository: *691 + repository_selection: *711 + requester: *708 sender: *4 required: - action @@ -126699,11 +126614,11 @@ webhooks: type: string enum: - suspend - enterprise: *690 + enterprise: *688 installation: *20 - organization: *692 - repositories: *711 - repository: *693 + organization: *690 + repositories: *709 + repository: *691 requester: type: - 'null' @@ -126885,10 +126800,10 @@ webhooks: type: string required: - from - enterprise: *690 - installation: *691 - organization: *692 - repository: *693 + enterprise: *688 + installation: *689 + organization: *690 + repository: *691 sender: *4 target_type: type: string @@ -126967,11 +126882,11 @@ webhooks: type: string enum: - unsuspend - enterprise: *690 + enterprise: *688 installation: *20 - organization: *692 - repositories: *711 - repository: *693 + organization: *690 + repositories: *709 + repository: *691 requester: type: - 'null' @@ -127219,8 +127134,8 @@ webhooks: - performed_via_github_app - body - reactions - enterprise: *690 - installation: *691 + enterprise: *688 + installation: *689 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -128037,8 +127952,8 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *627 - issue_dependencies_summary: *628 + sub_issues_summary: *625 + issue_dependencies_summary: *626 state: description: State of the issue; either 'open' or 'closed' type: string @@ -128055,7 +127970,7 @@ webhooks: title: description: Title of the issue type: string - type: *216 + type: *215 updated_at: type: string format: date-time @@ -128399,8 +128314,8 @@ webhooks: - state - locked - assignee - organization: *692 - repository: *693 + organization: *690 + repository: *691 sender: *4 required: - action @@ -128480,7 +128395,7 @@ webhooks: type: string enum: - deleted - comment: &714 + comment: &712 title: issue comment description: The [comment](https://docs.github.com/rest/issues/comments#get-an-issue-comment) itself. @@ -128647,8 +128562,8 @@ webhooks: - performed_via_github_app - body - reactions - enterprise: *690 - installation: *691 + enterprise: *688 + installation: *689 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -129461,8 +129376,8 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *627 - issue_dependencies_summary: *628 + sub_issues_summary: *625 + issue_dependencies_summary: *626 state: description: State of the issue; either 'open' or 'closed' type: string @@ -129479,7 +129394,7 @@ webhooks: title: description: Title of the issue type: string - type: *216 + type: *215 updated_at: type: string format: date-time @@ -129825,8 +129740,8 @@ webhooks: - state - locked - assignee - organization: *692 - repository: *693 + organization: *690 + repository: *691 sender: *4 required: - action @@ -129906,7 +129821,7 @@ webhooks: type: string enum: - edited - changes: &738 + changes: &736 description: The changes to the comment. type: object properties: @@ -129918,9 +129833,9 @@ webhooks: type: string required: - from - comment: *714 - enterprise: *690 - installation: *691 + comment: *712 + enterprise: *688 + installation: *689 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -130736,8 +130651,8 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *627 - issue_dependencies_summary: *628 + sub_issues_summary: *625 + issue_dependencies_summary: *626 state: description: State of the issue; either 'open' or 'closed' type: string @@ -130754,7 +130669,7 @@ webhooks: title: description: Title of the issue type: string - type: *216 + type: *215 updated_at: type: string format: date-time @@ -131098,8 +131013,8 @@ webhooks: - state - locked - assignee - organization: *692 - repository: *693 + organization: *690 + repository: *691 sender: *4 required: - action @@ -131189,9 +131104,9 @@ webhooks: type: number blocking_issue: *71 blocking_issue_repo: *69 - installation: *691 - organization: *692 - repository: *693 + installation: *689 + organization: *690 + repository: *691 sender: *4 required: - action @@ -131280,9 +131195,9 @@ webhooks: type: number blocking_issue: *71 blocking_issue_repo: *69 - installation: *691 - organization: *692 - repository: *693 + installation: *689 + organization: *690 + repository: *691 sender: *4 required: - action @@ -131370,9 +131285,9 @@ webhooks: description: The ID of the blocking issue. type: number blocking_issue: *71 - installation: *691 - organization: *692 - repository: *693 + installation: *689 + organization: *690 + repository: *691 sender: *4 required: - action @@ -131461,9 +131376,9 @@ webhooks: description: The ID of the blocking issue. type: number blocking_issue: *71 - installation: *691 - organization: *692 - repository: *693 + installation: *689 + organization: *690 + repository: *691 sender: *4 required: - action @@ -131543,10 +131458,10 @@ webhooks: type: string enum: - assigned - assignee: *710 - enterprise: *690 - installation: *691 - issue: &717 + assignee: *708 + enterprise: *688 + installation: *689 + issue: &715 title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -132358,11 +132273,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *627 - issue_dependencies_summary: *628 + sub_issues_summary: *625 + issue_dependencies_summary: *626 issue_field_values: type: array - items: *629 + items: *627 state: description: State of the issue; either 'open' or 'closed' type: string @@ -132379,7 +132294,7 @@ webhooks: title: description: Title of the issue type: string - type: *216 + type: *215 updated_at: type: string format: date-time @@ -132482,8 +132397,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *692 - repository: *693 + organization: *690 + repository: *691 sender: *4 required: - action @@ -132563,8 +132478,8 @@ webhooks: type: string enum: - closed - enterprise: *690 - installation: *691 + enterprise: *688 + installation: *689 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -133381,11 +133296,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *627 - issue_dependencies_summary: *628 + sub_issues_summary: *625 + issue_dependencies_summary: *626 issue_field_values: type: array - items: *629 + items: *627 state: description: State of the issue; either 'open' or 'closed' type: string @@ -133402,7 +133317,7 @@ webhooks: title: description: Title of the issue type: string - type: *216 + type: *215 updated_at: type: string format: date-time @@ -133648,8 +133563,8 @@ webhooks: required: - state - closed_at - organization: *692 - repository: *693 + organization: *690 + repository: *691 sender: *4 required: - action @@ -133728,8 +133643,8 @@ webhooks: type: string enum: - deleted - enterprise: *690 - installation: *691 + enterprise: *688 + installation: *689 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -134537,11 +134452,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *627 - issue_dependencies_summary: *628 + sub_issues_summary: *625 + issue_dependencies_summary: *626 issue_field_values: type: array - items: *629 + items: *627 state: description: State of the issue; either 'open' or 'closed' type: string @@ -134558,7 +134473,7 @@ webhooks: title: description: Title of the issue type: string - type: *216 + type: *215 updated_at: type: string format: date-time @@ -134660,8 +134575,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *692 - repository: *693 + organization: *690 + repository: *691 sender: *4 required: - action @@ -134740,8 +134655,8 @@ webhooks: type: string enum: - demilestoned - enterprise: *690 - installation: *691 + enterprise: *688 + installation: *689 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -135572,11 +135487,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *627 - issue_dependencies_summary: *628 + sub_issues_summary: *625 + issue_dependencies_summary: *626 issue_field_values: type: array - items: *629 + items: *627 state: description: State of the issue; either 'open' or 'closed' type: string @@ -135593,7 +135508,7 @@ webhooks: title: description: Title of the issue type: string - type: *216 + type: *215 updated_at: type: string format: date-time @@ -135674,7 +135589,7 @@ webhooks: format: uri user_view_type: type: string - milestone: &715 + milestone: &713 title: Milestone description: A collection of related issues and pull requests. type: object @@ -135817,8 +135732,8 @@ webhooks: - updated_at - due_on - closed_at - organization: *692 - repository: *693 + organization: *690 + repository: *691 sender: *4 required: - action @@ -135917,8 +135832,8 @@ webhooks: type: string required: - from - enterprise: *690 - installation: *691 + enterprise: *688 + installation: *689 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -136730,11 +136645,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *627 - issue_dependencies_summary: *628 + sub_issues_summary: *625 + issue_dependencies_summary: *626 issue_field_values: type: array - items: *629 + items: *627 state: description: State of the issue; either 'open' or 'closed' type: string @@ -136748,7 +136663,7 @@ webhooks: timeline_url: type: string format: uri - type: *216 + type: *215 title: description: Title of the issue type: string @@ -136854,9 +136769,9 @@ webhooks: - active_lock_reason - body - reactions - label: *709 - organization: *692 - repository: *693 + label: *707 + organization: *690 + repository: *691 sender: *4 required: - action @@ -136936,8 +136851,8 @@ webhooks: type: string enum: - labeled - enterprise: *690 - installation: *691 + enterprise: *688 + installation: *689 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -137748,11 +137663,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *627 - issue_dependencies_summary: *628 + sub_issues_summary: *625 + issue_dependencies_summary: *626 issue_field_values: type: array - items: *629 + items: *627 state: description: State of the issue; either 'open' or 'closed' type: string @@ -137766,7 +137681,7 @@ webhooks: timeline_url: type: string format: uri - type: *216 + type: *215 title: description: Title of the issue type: string @@ -137872,9 +137787,9 @@ webhooks: - active_lock_reason - body - reactions - label: *709 - organization: *692 - repository: *693 + label: *707 + organization: *690 + repository: *691 sender: *4 required: - action @@ -137954,8 +137869,8 @@ webhooks: type: string enum: - locked - enterprise: *690 - installation: *691 + enterprise: *688 + installation: *689 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -138791,11 +138706,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *627 - issue_dependencies_summary: *628 + sub_issues_summary: *625 + issue_dependencies_summary: *626 issue_field_values: type: array - items: *629 + items: *627 state: description: State of the issue; either 'open' or 'closed' type: string @@ -138809,7 +138724,7 @@ webhooks: timeline_url: type: string format: uri - type: *216 + type: *215 title: description: Title of the issue type: string @@ -138892,8 +138807,8 @@ webhooks: format: uri user_view_type: type: string - organization: *692 - repository: *693 + organization: *690 + repository: *691 sender: *4 required: - action @@ -138972,8 +138887,8 @@ webhooks: type: string enum: - milestoned - enterprise: *690 - installation: *691 + enterprise: *688 + installation: *689 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -139803,11 +139718,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *627 - issue_dependencies_summary: *628 + sub_issues_summary: *625 + issue_dependencies_summary: *626 issue_field_values: type: array - items: *629 + items: *627 state: description: State of the issue; either 'open' or 'closed' type: string @@ -139824,7 +139739,7 @@ webhooks: title: description: Title of the issue type: string - type: *216 + type: *215 updated_at: type: string format: date-time @@ -139904,9 +139819,9 @@ webhooks: format: uri user_view_type: type: string - milestone: *715 - organization: *692 - repository: *693 + milestone: *713 + organization: *690 + repository: *691 sender: *4 required: - action @@ -140798,11 +140713,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *627 - issue_dependencies_summary: *628 + sub_issues_summary: *625 + issue_dependencies_summary: *626 issue_field_values: type: array - items: *629 + items: *627 state: description: State of the issue; either 'open' or 'closed' type: string @@ -140898,7 +140813,7 @@ webhooks: required: - login - id - type: *216 + type: *215 required: - id - number @@ -141379,8 +141294,8 @@ webhooks: required: - old_issue - old_repository - enterprise: *690 - installation: *691 + enterprise: *688 + installation: *689 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -142192,11 +142107,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *627 - issue_dependencies_summary: *628 + sub_issues_summary: *625 + issue_dependencies_summary: *626 issue_field_values: type: array - items: *629 + items: *627 state: description: State of the issue; either 'open' or 'closed' type: string @@ -142213,7 +142128,7 @@ webhooks: title: description: Title of the issue type: string - type: *216 + type: *215 updated_at: type: string format: date-time @@ -142315,8 +142230,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *692 - repository: *693 + organization: *690 + repository: *691 sender: *4 required: - action @@ -142396,9 +142311,9 @@ webhooks: type: string enum: - pinned - enterprise: *690 - installation: *691 - issue: &716 + enterprise: *688 + installation: *689 + issue: &714 title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -143204,11 +143119,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *627 - issue_dependencies_summary: *628 + sub_issues_summary: *625 + issue_dependencies_summary: *626 issue_field_values: type: array - items: *629 + items: *627 state: description: State of the issue; either 'open' or 'closed' type: string @@ -143225,7 +143140,7 @@ webhooks: title: description: Title of the issue type: string - type: *216 + type: *215 updated_at: type: string format: date-time @@ -143327,8 +143242,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *692 - repository: *693 + organization: *690 + repository: *691 sender: *4 required: - action @@ -143407,8 +143322,8 @@ webhooks: type: string enum: - reopened - enterprise: *690 - installation: *691 + enterprise: *688 + installation: *689 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -144242,11 +144157,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *627 - issue_dependencies_summary: *628 + sub_issues_summary: *625 + issue_dependencies_summary: *626 issue_field_values: type: array - items: *629 + items: *627 state: description: State of the issue; either 'open' or 'closed' type: string @@ -144343,9 +144258,9 @@ webhooks: format: uri user_view_type: type: string - type: *216 - organization: *692 - repository: *693 + type: *215 + organization: *690 + repository: *691 sender: *4 required: - action @@ -145234,11 +145149,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *627 - issue_dependencies_summary: *628 + sub_issues_summary: *625 + issue_dependencies_summary: *626 issue_field_values: type: array - items: *629 + items: *627 state: description: State of the issue; either 'open' or 'closed' type: string @@ -145255,7 +145170,7 @@ webhooks: title: description: Title of the issue type: string - type: *216 + type: *215 updated_at: type: string format: date-time @@ -145837,11 +145752,11 @@ webhooks: required: - new_issue - new_repository - enterprise: *690 - installation: *691 - issue: *716 - organization: *692 - repository: *693 + enterprise: *688 + installation: *689 + issue: *714 + organization: *690 + repository: *691 sender: *4 required: - action @@ -145921,12 +145836,12 @@ webhooks: type: string enum: - typed - enterprise: *690 - installation: *691 - issue: *717 - type: *216 - organization: *692 - repository: *693 + enterprise: *688 + installation: *689 + issue: *715 + type: *215 + organization: *690 + repository: *691 sender: *4 required: - action @@ -146007,7 +145922,7 @@ webhooks: type: string enum: - unassigned - assignee: &741 + assignee: &739 title: User type: - object @@ -146079,11 +145994,11 @@ webhooks: required: - login - id - enterprise: *690 - installation: *691 - issue: *717 - organization: *692 - repository: *693 + enterprise: *688 + installation: *689 + issue: *715 + organization: *690 + repository: *691 sender: *4 required: - action @@ -146162,12 +146077,12 @@ webhooks: type: string enum: - unlabeled - enterprise: *690 - installation: *691 - issue: *717 - label: *709 - organization: *692 - repository: *693 + enterprise: *688 + installation: *689 + issue: *715 + label: *707 + organization: *690 + repository: *691 sender: *4 required: - action @@ -146247,8 +146162,8 @@ webhooks: type: string enum: - unlocked - enterprise: *690 - installation: *691 + enterprise: *688 + installation: *689 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -147082,11 +146997,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *627 - issue_dependencies_summary: *628 + sub_issues_summary: *625 + issue_dependencies_summary: *626 issue_field_values: type: array - items: *629 + items: *627 state: description: State of the issue; either 'open' or 'closed' type: string @@ -147103,7 +147018,7 @@ webhooks: title: description: Title of the issue type: string - type: *216 + type: *215 updated_at: type: string format: date-time @@ -147183,8 +147098,8 @@ webhooks: format: uri user_view_type: type: string - organization: *692 - repository: *693 + organization: *690 + repository: *691 sender: *4 required: - action @@ -147264,11 +147179,11 @@ webhooks: type: string enum: - unpinned - enterprise: *690 - installation: *691 - issue: *716 - organization: *692 - repository: *693 + enterprise: *688 + installation: *689 + issue: *714 + organization: *690 + repository: *691 sender: *4 required: - action @@ -147347,12 +147262,12 @@ webhooks: type: string enum: - untyped - enterprise: *690 - installation: *691 - issue: *717 - type: *216 - organization: *692 - repository: *693 + enterprise: *688 + installation: *689 + issue: *715 + type: *215 + organization: *690 + repository: *691 sender: *4 required: - action @@ -147432,11 +147347,11 @@ webhooks: type: string enum: - created - enterprise: *690 - installation: *691 - label: *709 - organization: *692 - repository: *693 + enterprise: *688 + installation: *689 + label: *707 + organization: *690 + repository: *691 sender: *4 required: - action @@ -147514,11 +147429,11 @@ webhooks: type: string enum: - deleted - enterprise: *690 - installation: *691 - label: *709 - organization: *692 - repository: *693 + enterprise: *688 + installation: *689 + label: *707 + organization: *690 + repository: *691 sender: *4 required: - action @@ -147628,11 +147543,11 @@ webhooks: type: string required: - from - enterprise: *690 - installation: *691 - label: *709 - organization: *692 - repository: *693 + enterprise: *688 + installation: *689 + label: *707 + organization: *690 + repository: *691 sender: *4 required: - action @@ -147714,9 +147629,9 @@ webhooks: - cancelled effective_date: type: string - enterprise: *690 - installation: *691 - marketplace_purchase: &718 + enterprise: *688 + installation: *689 + marketplace_purchase: &716 title: Marketplace Purchase type: object required: @@ -147804,8 +147719,8 @@ webhooks: type: integer unit_count: type: integer - organization: *692 - previous_marketplace_purchase: &719 + organization: *690 + previous_marketplace_purchase: &717 title: Marketplace Purchase type: object properties: @@ -147889,7 +147804,7 @@ webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *693 + repository: *691 sender: *4 required: - action @@ -147969,10 +147884,10 @@ webhooks: - changed effective_date: type: string - enterprise: *690 - installation: *691 - marketplace_purchase: *718 - organization: *692 + enterprise: *688 + installation: *689 + marketplace_purchase: *716 + organization: *690 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -148060,7 +147975,7 @@ webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *693 + repository: *691 sender: *4 required: - action @@ -148142,10 +148057,10 @@ webhooks: - pending_change effective_date: type: string - enterprise: *690 - installation: *691 - marketplace_purchase: *718 - organization: *692 + enterprise: *688 + installation: *689 + marketplace_purchase: *716 + organization: *690 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -148231,7 +148146,7 @@ webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *693 + repository: *691 sender: *4 required: - action @@ -148312,8 +148227,8 @@ webhooks: - pending_change_cancelled effective_date: type: string - enterprise: *690 - installation: *691 + enterprise: *688 + installation: *689 marketplace_purchase: title: Marketplace Purchase type: object @@ -148399,9 +148314,9 @@ webhooks: type: integer unit_count: type: integer - organization: *692 - previous_marketplace_purchase: *719 - repository: *693 + organization: *690 + previous_marketplace_purchase: *717 + repository: *691 sender: *4 required: - action @@ -148481,12 +148396,12 @@ webhooks: - purchased effective_date: type: string - enterprise: *690 - installation: *691 - marketplace_purchase: *718 - organization: *692 - previous_marketplace_purchase: *719 - repository: *693 + enterprise: *688 + installation: *689 + marketplace_purchase: *716 + organization: *690 + previous_marketplace_purchase: *717 + repository: *691 sender: *4 required: - action @@ -148588,11 +148503,11 @@ webhooks: type: string required: - to - enterprise: *690 - installation: *691 - member: *710 - organization: *692 - repository: *693 + enterprise: *688 + installation: *689 + member: *708 + organization: *690 + repository: *691 sender: *4 required: - action @@ -148694,11 +148609,11 @@ webhooks: type: - string - 'null' - enterprise: *690 - installation: *691 - member: *710 - organization: *692 - repository: *693 + enterprise: *688 + installation: *689 + member: *708 + organization: *690 + repository: *691 sender: *4 required: - action @@ -148777,11 +148692,11 @@ webhooks: type: string enum: - removed - enterprise: *690 - installation: *691 - member: *710 - organization: *692 - repository: *693 + enterprise: *688 + installation: *689 + member: *708 + organization: *690 + repository: *691 sender: *4 required: - action @@ -148859,11 +148774,11 @@ webhooks: type: string enum: - added - enterprise: *690 - installation: *691 - member: *710 - organization: *692 - repository: *693 + enterprise: *688 + installation: *689 + member: *708 + organization: *690 + repository: *691 scope: description: The scope of the membership. Currently, can only be `team`. @@ -148941,7 +148856,7 @@ webhooks: required: - login - id - team: &720 + team: &718 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -149171,11 +149086,11 @@ webhooks: type: string enum: - removed - enterprise: *690 - installation: *691 - member: *710 - organization: *692 - repository: *693 + enterprise: *688 + installation: *689 + member: *708 + organization: *690 + repository: *691 scope: description: The scope of the membership. Currently, can only be `team`. @@ -149254,7 +149169,7 @@ webhooks: required: - login - id - team: *720 + team: *718 required: - action - scope @@ -149336,8 +149251,8 @@ webhooks: type: string enum: - checks_requested - installation: *691 - merge_group: &721 + installation: *689 + merge_group: &719 type: object title: Merge Group description: A group of pull requests that the merge queue has grouped @@ -149363,8 +149278,8 @@ webhooks: - base_sha - base_ref - head_commit - organization: *692 - repository: *693 + organization: *690 + repository: *691 sender: *4 required: - action @@ -149450,10 +149365,10 @@ webhooks: - merged - invalidated - dequeued - installation: *691 - merge_group: *721 - organization: *692 - repository: *693 + installation: *689 + merge_group: *719 + organization: *690 + repository: *691 sender: *4 required: - action @@ -149526,7 +149441,7 @@ webhooks: type: string enum: - deleted - enterprise: *690 + enterprise: *688 hook: description: 'The deleted webhook. This will contain different keys based on the type of webhook it is: repository, organization, @@ -149635,12 +149550,12 @@ webhooks: hook_id: description: The id of the modified webhook. type: integer - installation: *691 - organization: *692 + installation: *689 + organization: *690 repository: anyOf: - type: 'null' - - *693 + - *691 sender: *4 required: - action @@ -149720,11 +149635,11 @@ webhooks: type: string enum: - closed - enterprise: *690 - installation: *691 - milestone: *715 - organization: *692 - repository: *693 + enterprise: *688 + installation: *689 + milestone: *713 + organization: *690 + repository: *691 sender: *4 required: - action @@ -149803,9 +149718,9 @@ webhooks: type: string enum: - created - enterprise: *690 - installation: *691 - milestone: &722 + enterprise: *688 + installation: *689 + milestone: &720 title: Milestone description: A collection of related issues and pull requests. type: object @@ -149947,8 +149862,8 @@ webhooks: - updated_at - due_on - closed_at - organization: *692 - repository: *693 + organization: *690 + repository: *691 sender: *4 required: - action @@ -150027,11 +149942,11 @@ webhooks: type: string enum: - deleted - enterprise: *690 - installation: *691 - milestone: *715 - organization: *692 - repository: *693 + enterprise: *688 + installation: *689 + milestone: *713 + organization: *690 + repository: *691 sender: *4 required: - action @@ -150141,11 +150056,11 @@ webhooks: type: string required: - from - enterprise: *690 - installation: *691 - milestone: *715 - organization: *692 - repository: *693 + enterprise: *688 + installation: *689 + milestone: *713 + organization: *690 + repository: *691 sender: *4 required: - action @@ -150225,11 +150140,11 @@ webhooks: type: string enum: - opened - enterprise: *690 - installation: *691 - milestone: *722 - organization: *692 - repository: *693 + enterprise: *688 + installation: *689 + milestone: *720 + organization: *690 + repository: *691 sender: *4 required: - action @@ -150308,11 +150223,11 @@ webhooks: type: string enum: - blocked - blocked_user: *710 - enterprise: *690 - installation: *691 - organization: *692 - repository: *693 + blocked_user: *708 + enterprise: *688 + installation: *689 + organization: *690 + repository: *691 sender: *4 required: - action @@ -150391,11 +150306,11 @@ webhooks: type: string enum: - unblocked - blocked_user: *710 - enterprise: *690 - installation: *691 - organization: *692 - repository: *693 + blocked_user: *708 + enterprise: *688 + installation: *689 + organization: *690 + repository: *691 sender: *4 required: - action @@ -150474,9 +150389,9 @@ webhooks: type: string enum: - deleted - enterprise: *690 - installation: *691 - membership: &723 + enterprise: *688 + installation: *689 + membership: &721 title: Membership description: The membership between the user and the organization. Not present when the action is `member_invited`. @@ -150586,8 +150501,8 @@ webhooks: - role - organization_url - user - organization: *692 - repository: *693 + organization: *690 + repository: *691 sender: *4 required: - action @@ -150665,11 +150580,11 @@ webhooks: type: string enum: - member_added - enterprise: *690 - installation: *691 - membership: *723 - organization: *692 - repository: *693 + enterprise: *688 + installation: *689 + membership: *721 + organization: *690 + repository: *691 sender: *4 required: - action @@ -150748,8 +150663,8 @@ webhooks: type: string enum: - member_invited - enterprise: *690 - installation: *691 + enterprise: *688 + installation: *689 invitation: description: The invitation for the user or email if the action is `member_invited`. @@ -150871,10 +150786,10 @@ webhooks: - inviter - team_count - invitation_teams_url - organization: *692 - repository: *693 + organization: *690 + repository: *691 sender: *4 - user: *710 + user: *708 required: - action - invitation @@ -150952,11 +150867,11 @@ webhooks: type: string enum: - member_removed - enterprise: *690 - installation: *691 - membership: *723 - organization: *692 - repository: *693 + enterprise: *688 + installation: *689 + membership: *721 + organization: *690 + repository: *691 sender: *4 required: - action @@ -151043,11 +150958,11 @@ webhooks: properties: from: type: string - enterprise: *690 - installation: *691 - membership: *723 - organization: *692 - repository: *693 + enterprise: *688 + installation: *689 + membership: *721 + organization: *690 + repository: *691 sender: *4 required: - action @@ -151123,9 +151038,9 @@ webhooks: type: string enum: - published - enterprise: *690 - installation: *691 - organization: *692 + enterprise: *688 + installation: *689 + organization: *690 package: description: Information about the package. type: object @@ -151648,7 +151563,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: &724 + items: &722 title: Ruby Gems metadata type: object properties: @@ -151745,7 +151660,7 @@ webhooks: - owner - package_version - registry - repository: *693 + repository: *691 sender: *4 required: - action @@ -151821,9 +151736,9 @@ webhooks: type: string enum: - updated - enterprise: *690 - installation: *691 - organization: *692 + enterprise: *688 + installation: *689 + organization: *690 package: description: Information about the package. type: object @@ -152185,7 +152100,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: *724 + items: *722 source_url: type: string format: uri @@ -152256,7 +152171,7 @@ webhooks: - owner - package_version - registry - repository: *693 + repository: *691 sender: *4 required: - action @@ -152437,12 +152352,12 @@ webhooks: - duration - created_at - updated_at - enterprise: *690 + enterprise: *688 id: type: integer - installation: *691 - organization: *692 - repository: *693 + installation: *689 + organization: *690 + repository: *691 sender: *4 required: - id @@ -152519,7 +152434,7 @@ webhooks: type: string enum: - approved - personal_access_token_request: &725 + personal_access_token_request: &723 title: Personal Access Token Request description: Details of a Personal Access Token Request. type: object @@ -152669,10 +152584,10 @@ webhooks: - token_expired - token_expires_at - token_last_used_at - enterprise: *690 - organization: *692 + enterprise: *688 + organization: *690 sender: *4 - installation: *691 + installation: *689 required: - action - personal_access_token_request @@ -152749,11 +152664,11 @@ webhooks: type: string enum: - cancelled - personal_access_token_request: *725 - enterprise: *690 - organization: *692 + personal_access_token_request: *723 + enterprise: *688 + organization: *690 sender: *4 - installation: *691 + installation: *689 required: - action - personal_access_token_request @@ -152829,11 +152744,11 @@ webhooks: type: string enum: - created - personal_access_token_request: *725 - enterprise: *690 - organization: *692 + personal_access_token_request: *723 + enterprise: *688 + organization: *690 sender: *4 - installation: *691 + installation: *689 required: - action - personal_access_token_request @@ -152908,11 +152823,11 @@ webhooks: type: string enum: - denied - personal_access_token_request: *725 - organization: *692 - enterprise: *690 + personal_access_token_request: *723 + organization: *690 + enterprise: *688 sender: *4 - installation: *691 + installation: *689 required: - action - personal_access_token_request @@ -153017,7 +152932,7 @@ webhooks: id: description: Unique identifier of the webhook. type: integer - last_response: *726 + last_response: *724 name: description: The type of webhook. The only valid value is 'web'. type: string @@ -153049,8 +152964,8 @@ webhooks: hook_id: description: The ID of the webhook that triggered the ping. type: integer - organization: *692 - repository: *693 + organization: *690 + repository: *691 sender: *4 zen: description: Random string of GitHub zen. @@ -153295,10 +153210,10 @@ webhooks: - from required: - note - enterprise: *690 - installation: *691 - organization: *692 - project_card: &727 + enterprise: *688 + installation: *689 + organization: *690 + project_card: &725 title: Project Card type: object properties: @@ -153421,7 +153336,7 @@ webhooks: - creator - created_at - updated_at - repository: *693 + repository: *691 sender: *4 required: - action @@ -153502,11 +153417,11 @@ webhooks: type: string enum: - created - enterprise: *690 - installation: *691 - organization: *692 - project_card: *727 - repository: *693 + enterprise: *688 + installation: *689 + organization: *690 + project_card: *725 + repository: *691 sender: *4 required: - action @@ -153586,9 +153501,9 @@ webhooks: type: string enum: - deleted - enterprise: *690 - installation: *691 - organization: *692 + enterprise: *688 + installation: *689 + organization: *690 project_card: title: Project Card type: object @@ -153718,7 +153633,7 @@ webhooks: repository: anyOf: - type: 'null' - - *693 + - *691 sender: *4 required: - action @@ -153812,11 +153727,11 @@ webhooks: - from required: - note - enterprise: *690 - installation: *691 - organization: *692 - project_card: *727 - repository: *693 + enterprise: *688 + installation: *689 + organization: *690 + project_card: *725 + repository: *691 sender: *4 required: - action @@ -153910,9 +153825,9 @@ webhooks: - from required: - column_id - enterprise: *690 - installation: *691 - organization: *692 + enterprise: *688 + installation: *689 + organization: *690 project_card: allOf: - title: Project Card @@ -154109,7 +154024,7 @@ webhooks: type: string required: - after_id - repository: *693 + repository: *691 sender: *4 required: - action @@ -154189,10 +154104,10 @@ webhooks: type: string enum: - closed - enterprise: *690 - installation: *691 - organization: *692 - project: &729 + enterprise: *688 + installation: *689 + organization: *690 + project: &727 title: Project type: object properties: @@ -154319,7 +154234,7 @@ webhooks: - creator - created_at - updated_at - repository: *693 + repository: *691 sender: *4 required: - action @@ -154399,10 +154314,10 @@ webhooks: type: string enum: - created - enterprise: *690 - installation: *691 - organization: *692 - project_column: &728 + enterprise: *688 + installation: *689 + organization: *690 + project_column: &726 title: Project Column type: object properties: @@ -154442,7 +154357,7 @@ webhooks: - name - created_at - updated_at - repository: *693 + repository: *691 sender: *4 required: - action @@ -154521,14 +154436,14 @@ webhooks: type: string enum: - deleted - enterprise: *690 - installation: *691 - organization: *692 - project_column: *728 + enterprise: *688 + installation: *689 + organization: *690 + project_column: *726 repository: anyOf: - type: 'null' - - *693 + - *691 sender: *4 required: - action @@ -154617,11 +154532,11 @@ webhooks: type: string required: - from - enterprise: *690 - installation: *691 - organization: *692 - project_column: *728 - repository: *693 + enterprise: *688 + installation: *689 + organization: *690 + project_column: *726 + repository: *691 sender: *4 required: - action @@ -154701,11 +154616,11 @@ webhooks: type: string enum: - moved - enterprise: *690 - installation: *691 - organization: *692 - project_column: *728 - repository: *693 + enterprise: *688 + installation: *689 + organization: *690 + project_column: *726 + repository: *691 sender: *4 required: - action @@ -154785,11 +154700,11 @@ webhooks: type: string enum: - created - enterprise: *690 - installation: *691 - organization: *692 - project: *729 - repository: *693 + enterprise: *688 + installation: *689 + organization: *690 + project: *727 + repository: *691 sender: *4 required: - action @@ -154869,14 +154784,14 @@ webhooks: type: string enum: - deleted - enterprise: *690 - installation: *691 - organization: *692 - project: *729 + enterprise: *688 + installation: *689 + organization: *690 + project: *727 repository: anyOf: - type: 'null' - - *693 + - *691 sender: *4 required: - action @@ -154977,11 +154892,11 @@ webhooks: type: string required: - from - enterprise: *690 - installation: *691 - organization: *692 - project: *729 - repository: *693 + enterprise: *688 + installation: *689 + organization: *690 + project: *727 + repository: *691 sender: *4 required: - action @@ -155060,11 +154975,11 @@ webhooks: type: string enum: - reopened - enterprise: *690 - installation: *691 - organization: *692 - project: *729 - repository: *693 + enterprise: *688 + installation: *689 + organization: *690 + project: *727 + repository: *691 sender: *4 required: - action @@ -155145,9 +155060,9 @@ webhooks: type: string enum: - closed - installation: *691 - organization: *692 - projects_v2: *249 + installation: *689 + organization: *690 + projects_v2: *248 sender: *4 required: - action @@ -155228,9 +155143,9 @@ webhooks: type: string enum: - created - installation: *691 - organization: *692 - projects_v2: *249 + installation: *689 + organization: *690 + projects_v2: *248 sender: *4 required: - action @@ -155311,9 +155226,9 @@ webhooks: type: string enum: - deleted - installation: *691 - organization: *692 - projects_v2: *249 + installation: *689 + organization: *690 + projects_v2: *248 sender: *4 required: - action @@ -155434,9 +155349,9 @@ webhooks: type: string to: type: string - installation: *691 - organization: *692 - projects_v2: *249 + installation: *689 + organization: *690 + projects_v2: *248 sender: *4 required: - action @@ -155519,7 +155434,7 @@ webhooks: type: string enum: - archived - changes: &733 + changes: &731 type: object properties: archived_at: @@ -155535,9 +155450,9 @@ webhooks: - string - 'null' format: date-time - installation: *691 - organization: *692 - projects_v2_item: &730 + installation: *689 + organization: *690 + projects_v2_item: &728 title: Projects v2 Item description: An item belonging to a project type: object @@ -155555,7 +155470,7 @@ webhooks: type: string description: The node ID of the content represented by this item. - content_type: *255 + content_type: *254 creator: *4 created_at: type: string @@ -155677,9 +155592,9 @@ webhooks: - 'null' to: type: string - installation: *691 - organization: *692 - projects_v2_item: *730 + installation: *689 + organization: *690 + projects_v2_item: *728 sender: *4 required: - action @@ -155761,9 +155676,9 @@ webhooks: type: string enum: - created - installation: *691 - organization: *692 - projects_v2_item: *730 + installation: *689 + organization: *690 + projects_v2_item: *728 sender: *4 required: - action @@ -155844,9 +155759,9 @@ webhooks: type: string enum: - deleted - installation: *691 - organization: *692 - projects_v2_item: *730 + installation: *689 + organization: *690 + projects_v2_item: *728 sender: *4 required: - action @@ -155951,7 +155866,7 @@ webhooks: oneOf: - type: string - type: integer - - &731 + - &729 title: Projects v2 Single Select Option description: An option for a single select field type: object @@ -155975,7 +155890,7 @@ webhooks: required: - id - name - - &732 + - &730 title: Projects v2 Iteration Setting description: An iteration setting for an iteration field type: object @@ -156015,8 +155930,8 @@ webhooks: oneOf: - type: string - type: integer - - *731 - - *732 + - *729 + - *730 type: - 'null' - string @@ -156039,9 +155954,9 @@ webhooks: - 'null' required: - body - installation: *691 - organization: *692 - projects_v2_item: *730 + installation: *689 + organization: *690 + projects_v2_item: *728 sender: *4 required: - action @@ -156138,9 +156053,9 @@ webhooks: type: - string - 'null' - installation: *691 - organization: *692 - projects_v2_item: *730 + installation: *689 + organization: *690 + projects_v2_item: *728 sender: *4 required: - action @@ -156223,10 +156138,10 @@ webhooks: type: string enum: - restored - changes: *733 - installation: *691 - organization: *692 - projects_v2_item: *730 + changes: *731 + installation: *689 + organization: *690 + projects_v2_item: *728 sender: *4 required: - action @@ -156308,9 +156223,9 @@ webhooks: type: string enum: - reopened - installation: *691 - organization: *692 - projects_v2: *249 + installation: *689 + organization: *690 + projects_v2: *248 sender: *4 required: - action @@ -156391,9 +156306,9 @@ webhooks: type: string enum: - created - installation: *691 - organization: *692 - projects_v2_status_update: *734 + installation: *689 + organization: *690 + projects_v2_status_update: *732 sender: *4 required: - action @@ -156474,9 +156389,9 @@ webhooks: type: string enum: - deleted - installation: *691 - organization: *692 - projects_v2_status_update: *734 + installation: *689 + organization: *690 + projects_v2_status_update: *732 sender: *4 required: - action @@ -156622,9 +156537,9 @@ webhooks: - string - 'null' format: date - installation: *691 - organization: *692 - projects_v2_status_update: *734 + installation: *689 + organization: *690 + projects_v2_status_update: *732 sender: *4 required: - action @@ -156695,10 +156610,10 @@ webhooks: title: public event type: object properties: - enterprise: *690 - installation: *691 - organization: *692 - repository: *693 + enterprise: *688 + installation: *689 + organization: *690 + repository: *691 sender: *4 required: - repository @@ -156775,13 +156690,13 @@ webhooks: type: string enum: - assigned - assignee: *710 - enterprise: *690 - installation: *691 - number: &735 + assignee: *708 + enterprise: *688 + installation: *689 + number: &733 description: The pull request number. type: integer - organization: *692 + organization: *690 pull_request: title: Pull Request type: object @@ -159130,7 +159045,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *693 + repository: *691 sender: *4 required: - action @@ -159212,11 +159127,11 @@ webhooks: type: string enum: - auto_merge_disabled - enterprise: *690 - installation: *691 + enterprise: *688 + installation: *689 number: type: integer - organization: *692 + organization: *690 pull_request: title: Pull Request type: object @@ -161558,7 +161473,7 @@ webhooks: - draft reason: type: string - repository: *693 + repository: *691 sender: *4 required: - action @@ -161640,11 +161555,11 @@ webhooks: type: string enum: - auto_merge_enabled - enterprise: *690 - installation: *691 + enterprise: *688 + installation: *689 number: type: integer - organization: *692 + organization: *690 pull_request: title: Pull Request type: object @@ -163986,7 +163901,7 @@ webhooks: - draft reason: type: string - repository: *693 + repository: *691 sender: *4 required: - action @@ -164068,13 +163983,13 @@ webhooks: type: string enum: - closed - enterprise: *690 - installation: *691 - number: *735 - organization: *692 - pull_request: &736 + enterprise: *688 + installation: *689 + number: *733 + organization: *690 + pull_request: &734 allOf: - - *549 + - *547 - type: object properties: allow_auto_merge: @@ -164136,7 +164051,7 @@ webhooks: Please use `squash_merge_commit_title` instead.** type: boolean default: false - repository: *693 + repository: *691 sender: *4 required: - action @@ -164217,12 +164132,12 @@ webhooks: type: string enum: - converted_to_draft - enterprise: *690 - installation: *691 - number: *735 - organization: *692 - pull_request: *736 - repository: *693 + enterprise: *688 + installation: *689 + number: *733 + organization: *690 + pull_request: *734 + repository: *691 sender: *4 required: - action @@ -164302,11 +164217,11 @@ webhooks: type: string enum: - demilestoned - enterprise: *690 - milestone: *252 - number: *735 - organization: *692 - pull_request: &737 + enterprise: *688 + milestone: *251 + number: *733 + organization: *690 + pull_request: &735 title: Pull Request type: object properties: @@ -166633,7 +166548,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *693 + repository: *691 sender: *4 required: - action @@ -166712,11 +166627,11 @@ webhooks: type: string enum: - dequeued - enterprise: *690 - installation: *691 + enterprise: *688 + installation: *689 number: type: integer - organization: *692 + organization: *690 pull_request: title: Pull Request type: object @@ -169062,7 +168977,7 @@ webhooks: - BRANCH_PROTECTIONS - GIT_TREE_INVALID - INVALID_MERGE_COMMIT - repository: *693 + repository: *691 sender: *4 required: - action @@ -169186,12 +169101,12 @@ webhooks: type: string required: - from - enterprise: *690 - installation: *691 - number: *735 - organization: *692 - pull_request: *736 - repository: *693 + enterprise: *688 + installation: *689 + number: *733 + organization: *690 + pull_request: *734 + repository: *691 sender: *4 required: - action @@ -169271,11 +169186,11 @@ webhooks: type: string enum: - enqueued - enterprise: *690 - installation: *691 + enterprise: *688 + installation: *689 number: type: integer - organization: *692 + organization: *690 pull_request: title: Pull Request type: object @@ -171606,7 +171521,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *693 + repository: *691 sender: *4 required: - action @@ -171686,11 +171601,11 @@ webhooks: type: string enum: - labeled - enterprise: *690 - installation: *691 - label: *709 - number: *735 - organization: *692 + enterprise: *688 + installation: *689 + label: *707 + number: *733 + organization: *690 pull_request: title: Pull Request type: object @@ -174038,7 +173953,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *693 + repository: *691 sender: *4 required: - action @@ -174119,10 +174034,10 @@ webhooks: type: string enum: - locked - enterprise: *690 - installation: *691 - number: *735 - organization: *692 + enterprise: *688 + installation: *689 + number: *733 + organization: *690 pull_request: title: Pull Request type: object @@ -176468,7 +176383,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *693 + repository: *691 sender: *4 required: - action @@ -176548,12 +176463,12 @@ webhooks: type: string enum: - milestoned - enterprise: *690 - milestone: *252 - number: *735 - organization: *692 - pull_request: *737 - repository: *693 + enterprise: *688 + milestone: *251 + number: *733 + organization: *690 + pull_request: *735 + repository: *691 sender: *4 required: - action @@ -176632,12 +176547,12 @@ webhooks: type: string enum: - opened - enterprise: *690 - installation: *691 - number: *735 - organization: *692 - pull_request: *736 - repository: *693 + enterprise: *688 + installation: *689 + number: *733 + organization: *690 + pull_request: *734 + repository: *691 sender: *4 required: - action @@ -176718,12 +176633,12 @@ webhooks: type: string enum: - ready_for_review - enterprise: *690 - installation: *691 - number: *735 - organization: *692 - pull_request: *736 - repository: *693 + enterprise: *688 + installation: *689 + number: *733 + organization: *690 + pull_request: *734 + repository: *691 sender: *4 required: - action @@ -176803,12 +176718,12 @@ webhooks: type: string enum: - reopened - enterprise: *690 - installation: *691 - number: *735 - organization: *692 - pull_request: *736 - repository: *693 + enterprise: *688 + installation: *689 + number: *733 + organization: *690 + pull_request: *734 + repository: *691 sender: *4 required: - action @@ -177183,9 +177098,9 @@ webhooks: - start_side - side - reactions - enterprise: *690 - installation: *691 - organization: *692 + enterprise: *688 + installation: *689 + organization: *690 pull_request: type: object properties: @@ -179415,7 +179330,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *693 + repository: *691 sender: *4 required: - action @@ -179495,7 +179410,7 @@ webhooks: type: string enum: - deleted - comment: &739 + comment: &737 title: Pull Request Review Comment description: The [comment](https://docs.github.com/rest/pulls/comments#get-a-review-comment-for-a-pull-request) itself. @@ -179788,9 +179703,9 @@ webhooks: - start_side - side - reactions - enterprise: *690 - installation: *691 - organization: *692 + enterprise: *688 + installation: *689 + organization: *690 pull_request: type: object properties: @@ -182008,7 +181923,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *693 + repository: *691 sender: *4 required: - action @@ -182088,11 +182003,11 @@ webhooks: type: string enum: - edited - changes: *738 - comment: *739 - enterprise: *690 - installation: *691 - organization: *692 + changes: *736 + comment: *737 + enterprise: *688 + installation: *689 + organization: *690 pull_request: type: object properties: @@ -184313,7 +184228,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *693 + repository: *691 sender: *4 required: - action @@ -184394,9 +184309,9 @@ webhooks: type: string enum: - dismissed - enterprise: *690 - installation: *691 - organization: *692 + enterprise: *688 + installation: *689 + organization: *690 pull_request: title: Simple Pull Request type: object @@ -186629,7 +186544,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *693 + repository: *691 review: description: The review that was affected. type: object @@ -186880,9 +186795,9 @@ webhooks: type: string required: - from - enterprise: *690 - installation: *691 - organization: *692 + enterprise: *688 + installation: *689 + organization: *690 pull_request: title: Simple Pull Request type: object @@ -188996,8 +188911,8 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *693 - review: &740 + repository: *691 + review: &738 description: The review that was affected. type: object properties: @@ -189235,12 +189150,12 @@ webhooks: type: string enum: - review_request_removed - enterprise: *690 - installation: *691 + enterprise: *688 + installation: *689 number: description: The pull request number. type: integer - organization: *692 + organization: *690 pull_request: title: Pull Request type: object @@ -191587,7 +191502,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *693 + repository: *691 requested_reviewer: title: User type: @@ -191673,12 +191588,12 @@ webhooks: type: string enum: - review_request_removed - enterprise: *690 - installation: *691 + enterprise: *688 + installation: *689 number: description: The pull request number. type: integer - organization: *692 + organization: *690 pull_request: title: Pull Request type: object @@ -194032,7 +193947,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *693 + repository: *691 requested_team: title: Team description: Groups of organization members that gives permissions @@ -194227,12 +194142,12 @@ webhooks: type: string enum: - review_requested - enterprise: *690 - installation: *691 + enterprise: *688 + installation: *689 number: description: The pull request number. type: integer - organization: *692 + organization: *690 pull_request: title: Pull Request type: object @@ -196581,7 +196496,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *693 + repository: *691 requested_reviewer: title: User type: @@ -196668,12 +196583,12 @@ webhooks: type: string enum: - review_requested - enterprise: *690 - installation: *691 + enterprise: *688 + installation: *689 number: description: The pull request number. type: integer - organization: *692 + organization: *690 pull_request: title: Pull Request type: object @@ -199013,7 +198928,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *693 + repository: *691 requested_team: title: Team description: Groups of organization members that gives permissions @@ -199197,9 +199112,9 @@ webhooks: type: string enum: - submitted - enterprise: *690 - installation: *691 - organization: *692 + enterprise: *688 + installation: *689 + organization: *690 pull_request: title: Simple Pull Request type: object @@ -201435,8 +201350,8 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *693 - review: *740 + repository: *691 + review: *738 sender: *4 required: - action @@ -201516,9 +201431,9 @@ webhooks: type: string enum: - resolved - enterprise: *690 - installation: *691 - organization: *692 + enterprise: *688 + installation: *689 + organization: *690 pull_request: title: Simple Pull Request type: object @@ -203649,7 +203564,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *693 + repository: *691 sender: *4 thread: type: object @@ -204046,9 +203961,9 @@ webhooks: type: string enum: - unresolved - enterprise: *690 - installation: *691 - organization: *692 + enterprise: *688 + installation: *689 + organization: *690 pull_request: title: Simple Pull Request type: object @@ -206162,7 +206077,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *693 + repository: *691 sender: *4 thread: type: object @@ -206561,10 +206476,10 @@ webhooks: type: string before: type: string - enterprise: *690 - installation: *691 - number: *735 - organization: *692 + enterprise: *688 + installation: *689 + number: *733 + organization: *690 pull_request: title: Pull Request type: object @@ -208899,7 +208814,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *693 + repository: *691 sender: *4 required: - action @@ -208981,11 +208896,11 @@ webhooks: type: string enum: - unassigned - assignee: *741 - enterprise: *690 - installation: *691 - number: *735 - organization: *692 + assignee: *739 + enterprise: *688 + installation: *689 + number: *733 + organization: *690 pull_request: title: Pull Request type: object @@ -211335,7 +211250,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *693 + repository: *691 sender: *4 required: - action @@ -211414,11 +211329,11 @@ webhooks: type: string enum: - unlabeled - enterprise: *690 - installation: *691 - label: *709 - number: *735 - organization: *692 + enterprise: *688 + installation: *689 + label: *707 + number: *733 + organization: *690 pull_request: title: Pull Request type: object @@ -213757,7 +213672,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *693 + repository: *691 sender: *4 required: - action @@ -213838,10 +213753,10 @@ webhooks: type: string enum: - unlocked - enterprise: *690 - installation: *691 - number: *735 - organization: *692 + enterprise: *688 + installation: *689 + number: *733 + organization: *690 pull_request: title: Pull Request type: object @@ -216170,7 +216085,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *693 + repository: *691 sender: *4 required: - action @@ -216373,7 +216288,7 @@ webhooks: deleted: description: Whether this push deleted the `ref`. type: boolean - enterprise: *690 + enterprise: *688 forced: description: Whether this push was a force push of the `ref`. type: boolean @@ -216468,8 +216383,8 @@ webhooks: - url - author - committer - installation: *691 - organization: *692 + installation: *689 + organization: *690 pusher: title: Committer description: Metaproperties for Git author/committer information. @@ -217057,9 +216972,9 @@ webhooks: type: string enum: - published - enterprise: *690 - installation: *691 - organization: *692 + enterprise: *688 + installation: *689 + organization: *690 registry_package: type: object properties: @@ -217536,7 +217451,7 @@ webhooks: type: string rubygems_metadata: type: array - items: *724 + items: *722 summary: type: string tag_name: @@ -217592,7 +217507,7 @@ webhooks: - owner - package_version - registry - repository: *693 + repository: *691 sender: *4 required: - action @@ -217670,9 +217585,9 @@ webhooks: type: string enum: - updated - enterprise: *690 - installation: *691 - organization: *692 + enterprise: *688 + installation: *689 + organization: *690 registry_package: type: object properties: @@ -217984,7 +217899,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: *724 + items: *722 summary: type: string tag_name: @@ -218034,7 +217949,7 @@ webhooks: - owner - package_version - registry - repository: *693 + repository: *691 sender: *4 required: - action @@ -218111,10 +218026,10 @@ webhooks: type: string enum: - created - enterprise: *690 - installation: *691 - organization: *692 - release: &742 + enterprise: *688 + installation: *689 + organization: *690 + release: &740 title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) object. @@ -218445,7 +218360,7 @@ webhooks: - updated_at - zipball_url - body - repository: *693 + repository: *691 sender: *4 required: - action @@ -218522,11 +218437,11 @@ webhooks: type: string enum: - deleted - enterprise: *690 - installation: *691 - organization: *692 - release: *742 - repository: *693 + enterprise: *688 + installation: *689 + organization: *690 + release: *740 + repository: *691 sender: *4 required: - action @@ -218643,11 +218558,11 @@ webhooks: type: boolean required: - to - enterprise: *690 - installation: *691 - organization: *692 - release: *742 - repository: *693 + enterprise: *688 + installation: *689 + organization: *690 + release: *740 + repository: *691 sender: *4 required: - action @@ -218725,9 +218640,9 @@ webhooks: type: string enum: - prereleased - enterprise: *690 - installation: *691 - organization: *692 + enterprise: *688 + installation: *689 + organization: *690 release: title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) @@ -219063,7 +218978,7 @@ webhooks: - string - 'null' format: uri - repository: *693 + repository: *691 sender: *4 required: - action @@ -219139,10 +219054,10 @@ webhooks: type: string enum: - published - enterprise: *690 - installation: *691 - organization: *692 - release: &743 + enterprise: *688 + installation: *689 + organization: *690 + release: &741 title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) object. @@ -219475,7 +219390,7 @@ webhooks: - string - 'null' format: uri - repository: *693 + repository: *691 sender: *4 required: - action @@ -219551,11 +219466,11 @@ webhooks: type: string enum: - released - enterprise: *690 - installation: *691 - organization: *692 - release: *742 - repository: *693 + enterprise: *688 + installation: *689 + organization: *690 + release: *740 + repository: *691 sender: *4 required: - action @@ -219631,11 +219546,11 @@ webhooks: type: string enum: - unpublished - enterprise: *690 - installation: *691 - organization: *692 - release: *743 - repository: *693 + enterprise: *688 + installation: *689 + organization: *690 + release: *741 + repository: *691 sender: *4 required: - action @@ -219711,11 +219626,11 @@ webhooks: type: string enum: - published - enterprise: *690 - installation: *691 - organization: *692 - repository: *693 - repository_advisory: *613 + enterprise: *688 + installation: *689 + organization: *690 + repository: *691 + repository_advisory: *611 sender: *4 required: - action @@ -219791,11 +219706,11 @@ webhooks: type: string enum: - reported - enterprise: *690 - installation: *691 - organization: *692 - repository: *693 - repository_advisory: *613 + enterprise: *688 + installation: *689 + organization: *690 + repository: *691 + repository_advisory: *611 sender: *4 required: - action @@ -219871,10 +219786,10 @@ webhooks: type: string enum: - archived - enterprise: *690 - installation: *691 - organization: *692 - repository: *693 + enterprise: *688 + installation: *689 + organization: *690 + repository: *691 sender: *4 required: - action @@ -219951,10 +219866,10 @@ webhooks: type: string enum: - created - enterprise: *690 - installation: *691 - organization: *692 - repository: *693 + enterprise: *688 + installation: *689 + organization: *690 + repository: *691 sender: *4 required: - action @@ -220032,10 +219947,10 @@ webhooks: type: string enum: - deleted - enterprise: *690 - installation: *691 - organization: *692 - repository: *693 + enterprise: *688 + installation: *689 + organization: *690 + repository: *691 sender: *4 required: - action @@ -220120,10 +220035,10 @@ webhooks: additionalProperties: true description: The `client_payload` that was specified in the `POST /repos/{owner}/{repo}/dispatches` request body. - enterprise: *690 - installation: *691 - organization: *692 - repository: *693 + enterprise: *688 + installation: *689 + organization: *690 + repository: *691 sender: *4 required: - action @@ -220238,10 +220153,10 @@ webhooks: - 'null' items: type: string - enterprise: *690 - installation: *691 - organization: *692 - repository: *693 + enterprise: *688 + installation: *689 + organization: *690 + repository: *691 sender: *4 required: - action @@ -220313,10 +220228,10 @@ webhooks: title: repository_import event type: object properties: - enterprise: *690 - installation: *691 - organization: *692 - repository: *693 + enterprise: *688 + installation: *689 + organization: *690 + repository: *691 sender: *4 status: type: string @@ -220397,10 +220312,10 @@ webhooks: type: string enum: - privatized - enterprise: *690 - installation: *691 - organization: *692 - repository: *693 + enterprise: *688 + installation: *689 + organization: *690 + repository: *691 sender: *4 required: - action @@ -220477,10 +220392,10 @@ webhooks: type: string enum: - publicized - enterprise: *690 - installation: *691 - organization: *692 - repository: *693 + enterprise: *688 + installation: *689 + organization: *690 + repository: *691 sender: *4 required: - action @@ -220574,10 +220489,10 @@ webhooks: - name required: - repository - enterprise: *690 - installation: *691 - organization: *692 - repository: *693 + enterprise: *688 + installation: *689 + organization: *690 + repository: *691 sender: *4 required: - action @@ -220657,10 +220572,10 @@ webhooks: type: string enum: - created - enterprise: *690 - installation: *691 - organization: *692 - repository: *693 + enterprise: *688 + installation: *689 + organization: *690 + repository: *691 repository_ruleset: *292 sender: *4 required: @@ -220739,10 +220654,10 @@ webhooks: type: string enum: - deleted - enterprise: *690 - installation: *691 - organization: *692 - repository: *693 + enterprise: *688 + installation: *689 + organization: *690 + repository: *691 repository_ruleset: *292 sender: *4 required: @@ -220821,10 +220736,10 @@ webhooks: type: string enum: - edited - enterprise: *690 - installation: *691 - organization: *692 - repository: *693 + enterprise: *688 + installation: *689 + organization: *690 + repository: *691 repository_ruleset: *292 changes: type: object @@ -220886,16 +220801,16 @@ webhooks: properties: added: type: array - items: *569 + items: *567 deleted: type: array - items: *569 + items: *567 updated: type: array items: type: object properties: - rule: *569 + rule: *567 changes: type: object properties: @@ -221132,10 +221047,10 @@ webhooks: - from required: - owner - enterprise: *690 - installation: *691 - organization: *692 - repository: *693 + enterprise: *688 + installation: *689 + organization: *690 + repository: *691 sender: *4 required: - action @@ -221213,10 +221128,10 @@ webhooks: type: string enum: - unarchived - enterprise: *690 - installation: *691 - organization: *692 - repository: *693 + enterprise: *688 + installation: *689 + organization: *690 + repository: *691 sender: *4 required: - action @@ -221294,7 +221209,7 @@ webhooks: type: string enum: - create - alert: &744 + alert: &742 title: Repository Vulnerability Alert Alert description: The security alert of the vulnerable dependency. type: object @@ -221418,10 +221333,10 @@ webhooks: type: string enum: - open - enterprise: *690 - installation: *691 - organization: *692 - repository: *693 + enterprise: *688 + installation: *689 + organization: *690 + repository: *691 sender: *4 required: - action @@ -221631,10 +221546,10 @@ webhooks: type: string enum: - dismissed - enterprise: *690 - installation: *691 - organization: *692 - repository: *693 + enterprise: *688 + installation: *689 + organization: *690 + repository: *691 sender: *4 required: - action @@ -221712,11 +221627,11 @@ webhooks: type: string enum: - reopen - alert: *744 - enterprise: *690 - installation: *691 - organization: *692 - repository: *693 + alert: *742 + enterprise: *688 + installation: *689 + organization: *690 + repository: *691 sender: *4 required: - action @@ -221918,10 +221833,10 @@ webhooks: enum: - fixed - open - enterprise: *690 - installation: *691 - organization: *692 - repository: *693 + enterprise: *688 + installation: *689 + organization: *690 + repository: *691 sender: *4 required: - action @@ -221999,17 +221914,17 @@ webhooks: type: string enum: - assigned - alert: &745 + alert: &743 type: object properties: - number: *163 - created_at: *164 + number: *162 + created_at: *163 updated_at: anyOf: - type: 'null' - - *165 - url: *166 - html_url: *167 + - *164 + url: *165 + html_url: *166 locations_url: type: string format: uri @@ -222114,10 +222029,10 @@ webhooks: - type: 'null' - *4 assignee: *4 - enterprise: *690 - installation: *691 - organization: *692 - repository: *693 + enterprise: *688 + installation: *689 + organization: *690 + repository: *691 sender: *4 required: - action @@ -222195,11 +222110,11 @@ webhooks: type: string enum: - created - alert: *745 - enterprise: *690 - installation: *691 - organization: *692 - repository: *693 + alert: *743 + enterprise: *688 + installation: *689 + organization: *690 + repository: *691 sender: *4 required: - action @@ -222280,11 +222195,11 @@ webhooks: type: string enum: - created - alert: *745 - installation: *691 - location: *746 - organization: *692 - repository: *693 + alert: *743 + installation: *689 + location: *744 + organization: *690 + repository: *691 sender: *4 required: - location @@ -222522,11 +222437,11 @@ webhooks: type: string enum: - publicly_leaked - alert: *745 - enterprise: *690 - installation: *691 - organization: *692 - repository: *693 + alert: *743 + enterprise: *688 + installation: *689 + organization: *690 + repository: *691 sender: *4 required: - action @@ -222604,11 +222519,11 @@ webhooks: type: string enum: - reopened - alert: *745 - enterprise: *690 - installation: *691 - organization: *692 - repository: *693 + alert: *743 + enterprise: *688 + installation: *689 + organization: *690 + repository: *691 sender: *4 required: - action @@ -222686,11 +222601,11 @@ webhooks: type: string enum: - resolved - alert: *745 - enterprise: *690 - installation: *691 - organization: *692 - repository: *693 + alert: *743 + enterprise: *688 + installation: *689 + organization: *690 + repository: *691 sender: *4 required: - action @@ -222768,12 +222683,12 @@ webhooks: type: string enum: - unassigned - alert: *745 + alert: *743 assignee: *4 - enterprise: *690 - installation: *691 - organization: *692 - repository: *693 + enterprise: *688 + installation: *689 + organization: *690 + repository: *691 sender: *4 required: - action @@ -222851,11 +222766,11 @@ webhooks: type: string enum: - validated - alert: *745 - enterprise: *690 - installation: *691 - organization: *692 - repository: *693 + alert: *743 + enterprise: *688 + installation: *689 + organization: *690 + repository: *691 sender: *4 required: - action @@ -222985,10 +222900,10 @@ webhooks: - organization - enterprise - - repository: *693 - enterprise: *690 - installation: *691 - organization: *692 + repository: *691 + enterprise: *688 + installation: *689 + organization: *690 sender: *4 required: - action @@ -223066,11 +222981,11 @@ webhooks: type: string enum: - published - enterprise: *690 - installation: *691 - organization: *692 - repository: *693 - security_advisory: &747 + enterprise: *688 + installation: *689 + organization: *690 + repository: *691 + security_advisory: &745 description: The details of the security advisory, including summary, description, and severity. type: object @@ -223256,11 +223171,11 @@ webhooks: type: string enum: - updated - enterprise: *690 - installation: *691 - organization: *692 - repository: *693 - security_advisory: *747 + enterprise: *688 + installation: *689 + organization: *690 + repository: *691 + security_advisory: *745 sender: *4 required: - action @@ -223333,10 +223248,10 @@ webhooks: type: string enum: - withdrawn - enterprise: *690 - installation: *691 - organization: *692 - repository: *693 + enterprise: *688 + installation: *689 + organization: *690 + repository: *691 security_advisory: description: The details of the security advisory, including summary, description, and severity. @@ -223523,9 +223438,9 @@ webhooks: type: object properties: security_and_analysis: *265 - enterprise: *690 - installation: *691 - organization: *692 + enterprise: *688 + installation: *689 + organization: *690 repository: *311 sender: *4 required: @@ -223604,12 +223519,12 @@ webhooks: type: string enum: - cancelled - enterprise: *690 - installation: *691 - organization: *692 - repository: *693 + enterprise: *688 + installation: *689 + organization: *690 + repository: *691 sender: *4 - sponsorship: &748 + sponsorship: &746 type: object properties: created_at: @@ -223914,12 +223829,12 @@ webhooks: type: string enum: - created - enterprise: *690 - installation: *691 - organization: *692 - repository: *693 + enterprise: *688 + installation: *689 + organization: *690 + repository: *691 sender: *4 - sponsorship: *748 + sponsorship: *746 required: - action - sponsorship @@ -224007,12 +223922,12 @@ webhooks: type: string required: - from - enterprise: *690 - installation: *691 - organization: *692 - repository: *693 + enterprise: *688 + installation: *689 + organization: *690 + repository: *691 sender: *4 - sponsorship: *748 + sponsorship: *746 required: - action - changes @@ -224089,17 +224004,17 @@ webhooks: type: string enum: - pending_cancellation - effective_date: &749 + effective_date: &747 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: *690 - installation: *691 - organization: *692 - repository: *693 + enterprise: *688 + installation: *689 + organization: *690 + repository: *691 sender: *4 - sponsorship: *748 + sponsorship: *746 required: - action - sponsorship @@ -224173,7 +224088,7 @@ webhooks: type: string enum: - pending_tier_change - changes: &750 + changes: &748 type: object properties: tier: @@ -224217,13 +224132,13 @@ webhooks: - from required: - tier - effective_date: *749 - enterprise: *690 - installation: *691 - organization: *692 - repository: *693 + effective_date: *747 + enterprise: *688 + installation: *689 + organization: *690 + repository: *691 sender: *4 - sponsorship: *748 + sponsorship: *746 required: - action - changes @@ -224300,13 +224215,13 @@ webhooks: type: string enum: - tier_changed - changes: *750 - enterprise: *690 - installation: *691 - organization: *692 - repository: *693 + changes: *748 + enterprise: *688 + installation: *689 + organization: *690 + repository: *691 sender: *4 - sponsorship: *748 + sponsorship: *746 required: - action - changes @@ -224380,10 +224295,10 @@ webhooks: type: string enum: - created - enterprise: *690 - installation: *691 - organization: *692 - repository: *693 + enterprise: *688 + installation: *689 + organization: *690 + repository: *691 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -224467,10 +224382,10 @@ webhooks: type: string enum: - deleted - enterprise: *690 - installation: *691 - organization: *692 - repository: *693 + enterprise: *688 + installation: *689 + organization: *690 + repository: *691 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -224904,15 +224819,15 @@ webhooks: type: - string - 'null' - enterprise: *690 + enterprise: *688 id: description: The unique identifier of the status. type: integer - installation: *691 + installation: *689 name: type: string - organization: *692 - repository: *693 + organization: *690 + repository: *691 sender: *4 sha: description: The Commit SHA. @@ -225028,9 +224943,9 @@ webhooks: description: The ID of the sub-issue. type: number sub_issue: *71 - installation: *691 - organization: *692 - repository: *693 + installation: *689 + organization: *690 + repository: *691 sender: *4 required: - action @@ -225120,9 +225035,9 @@ webhooks: description: The ID of the sub-issue. type: number sub_issue: *71 - installation: *691 - organization: *692 - repository: *693 + installation: *689 + organization: *690 + repository: *691 sender: *4 required: - action @@ -225212,9 +225127,9 @@ webhooks: description: The ID of the parent issue. type: number parent_issue: *71 - installation: *691 - organization: *692 - repository: *693 + installation: *689 + organization: *690 + repository: *691 sender: *4 required: - action @@ -225304,9 +225219,9 @@ webhooks: description: The ID of the parent issue. type: number parent_issue: *71 - installation: *691 - organization: *692 - repository: *693 + installation: *689 + organization: *690 + repository: *691 sender: *4 required: - action @@ -225383,12 +225298,12 @@ webhooks: title: team_add event type: object properties: - enterprise: *690 - installation: *691 - organization: *692 - repository: *693 + enterprise: *688 + installation: *689 + organization: *690 + repository: *691 sender: *4 - team: &751 + team: &749 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -225618,9 +225533,9 @@ webhooks: type: string enum: - added_to_repository - enterprise: *690 - installation: *691 - organization: *692 + enterprise: *688 + installation: *689 + organization: *690 repository: title: Repository description: A git repository @@ -226090,7 +226005,7 @@ webhooks: - topics - visibility sender: *4 - team: *751 + team: *749 required: - action - team @@ -226166,9 +226081,9 @@ webhooks: type: string enum: - created - enterprise: *690 - installation: *691 - organization: *692 + enterprise: *688 + installation: *689 + organization: *690 repository: title: Repository description: A git repository @@ -226638,7 +226553,7 @@ webhooks: - topics - visibility sender: *4 - team: *751 + team: *749 required: - action - team @@ -226715,9 +226630,9 @@ webhooks: type: string enum: - deleted - enterprise: *690 - installation: *691 - organization: *692 + enterprise: *688 + installation: *689 + organization: *690 repository: title: Repository description: A git repository @@ -227187,7 +227102,7 @@ webhooks: - topics - visibility sender: *4 - team: *751 + team: *749 required: - action - team @@ -227331,9 +227246,9 @@ webhooks: - from required: - permissions - enterprise: *690 - installation: *691 - organization: *692 + enterprise: *688 + installation: *689 + organization: *690 repository: title: Repository description: A git repository @@ -227803,7 +227718,7 @@ webhooks: - topics - visibility sender: *4 - team: *751 + team: *749 required: - action - changes @@ -227881,9 +227796,9 @@ webhooks: type: string enum: - removed_from_repository - enterprise: *690 - installation: *691 - organization: *692 + enterprise: *688 + installation: *689 + organization: *690 repository: title: Repository description: A git repository @@ -228353,7 +228268,7 @@ webhooks: - topics - visibility sender: *4 - team: *751 + team: *749 required: - action - team @@ -228429,10 +228344,10 @@ webhooks: type: string enum: - started - enterprise: *690 - installation: *691 - organization: *692 - repository: *693 + enterprise: *688 + installation: *689 + organization: *690 + repository: *691 sender: *4 required: - action @@ -228505,17 +228420,17 @@ webhooks: title: workflow_dispatch event type: object properties: - enterprise: *690 + enterprise: *688 inputs: type: - object - 'null' additionalProperties: true - installation: *691 - organization: *692 + installation: *689 + organization: *690 ref: type: string - repository: *693 + repository: *691 sender: *4 workflow: type: string @@ -228597,10 +228512,10 @@ webhooks: type: string enum: - completed - enterprise: *690 - installation: *691 - organization: *692 - repository: *693 + enterprise: *688 + installation: *689 + organization: *690 + repository: *691 sender: *4 workflow_job: allOf: @@ -228935,10 +228850,10 @@ webhooks: type: string enum: - in_progress - enterprise: *690 - installation: *691 - organization: *692 - repository: *693 + enterprise: *688 + installation: *689 + organization: *690 + repository: *691 sender: *4 workflow_job: allOf: @@ -229299,10 +229214,10 @@ webhooks: type: string enum: - queued - enterprise: *690 - installation: *691 - organization: *692 - repository: *693 + enterprise: *688 + installation: *689 + organization: *690 + repository: *691 sender: *4 workflow_job: type: object @@ -229527,10 +229442,10 @@ webhooks: type: string enum: - waiting - enterprise: *690 - installation: *691 - organization: *692 - repository: *693 + enterprise: *688 + installation: *689 + organization: *690 + repository: *691 sender: *4 workflow_job: type: object @@ -229757,12 +229672,12 @@ webhooks: type: string enum: - completed - enterprise: *690 - installation: *691 - organization: *692 - repository: *693 + enterprise: *688 + installation: *689 + organization: *690 + repository: *691 sender: *4 - workflow: *705 + workflow: *703 workflow_run: title: Workflow Run type: object @@ -230781,12 +230696,12 @@ webhooks: type: string enum: - in_progress - enterprise: *690 - installation: *691 - organization: *692 - repository: *693 + enterprise: *688 + installation: *689 + organization: *690 + repository: *691 sender: *4 - workflow: *705 + workflow: *703 workflow_run: title: Workflow Run type: object @@ -231790,12 +231705,12 @@ webhooks: type: string enum: - requested - enterprise: *690 - installation: *691 - organization: *692 - repository: *693 + enterprise: *688 + installation: *689 + organization: *690 + repository: *691 sender: *4 - workflow: *705 + workflow: *703 workflow_run: title: Workflow Run type: object diff --git a/descriptions-next/api.github.com/dereferenced/api.github.com.deref.json b/descriptions-next/api.github.com/dereferenced/api.github.com.deref.json index 129a1d2bd..45acc0ce8 100644 --- a/descriptions-next/api.github.com/dereferenced/api.github.com.deref.json +++ b/descriptions-next/api.github.com/dereferenced/api.github.com.deref.json @@ -76784,387 +76784,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", - "type": [ - "null", - "string", - "array" - ] - } - }, - "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", - "type": [ - "null", - "string", - "array" - ] - } - }, - "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", - "null" - ] - }, - { - "type": [ - "integer", - "null" - ] - }, - { - "type": [ - "array", - "null" - ], - "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-next/api.github.com/dereferenced/api.github.com.deref.yaml b/descriptions-next/api.github.com/dereferenced/api.github.com.deref.yaml index 5a56745fb..273ca19f4 100644 --- a/descriptions-next/api.github.com/dereferenced/api.github.com.deref.yaml +++ b/descriptions-next/api.github.com/dereferenced/api.github.com.deref.yaml @@ -1038,7 +1038,7 @@ paths: description: Validation failed, or the endpoint has been spammed. content: application/json: - schema: &115 + schema: &114 title: Validation Error Simple description: Validation Error Simple type: object @@ -1071,7 +1071,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/global-advisories#get-a-global-security-advisory parameters: - - &615 + - &613 name: ghsa_id description: The GHSA (GitHub Security Advisory) identifier of the advisory. in: path @@ -1656,7 +1656,7 @@ paths: schema: type: integer default: 30 - - &194 + - &193 name: cursor description: 'Used for pagination: the starting delivery from which the page of deliveries is fetched. Refer to the `link` header for the next and previous @@ -1672,7 +1672,7 @@ paths: application/json: schema: type: array - items: &195 + items: &194 title: Simple webhook delivery description: Delivery made by a webhook, without request and response information. @@ -1768,7 +1768,7 @@ paths: - installation_id - repository_id examples: - default: &196 + default: &195 value: - id: 12345678 guid: 0b989ba4-242f-11e5-81e1-c7b6966d2516 @@ -1831,7 +1831,7 @@ paths: description: Validation failed, or the endpoint has been spammed. content: application/json: - schema: &114 + schema: &113 title: Validation Error description: Validation Error type: object @@ -1903,7 +1903,7 @@ paths: description: Response content: application/json: - schema: &197 + schema: &196 title: Webhook delivery description: Delivery made by a webhook. type: object @@ -2038,7 +2038,7 @@ paths: - request - response examples: - default: &198 + default: &197 value: id: 12345678 guid: 0b989ba4-242f-11e5-81e1-c7b6966d2516 @@ -5432,7 +5432,7 @@ paths: responses: '202': *37 '422': *7 - '500': &105 + '500': &104 description: Internal Error content: application/json: @@ -8125,7 +8125,7 @@ paths: description: Response content: application/json: - schema: &174 + schema: &173 type: array description: A list of default code security configurations items: @@ -8141,7 +8141,7 @@ paths: default configuration: *45 examples: - default: &175 + default: &174 value: - default_for_new_repos: public configuration: @@ -8473,7 +8473,7 @@ paths: - *38 - *47 responses: - '204': &176 + '204': &175 description: A header with no content is returned. '400': *14 '403': *27 @@ -8600,7 +8600,7 @@ paths: default: value: default_for_new_repos: all - configuration: &173 + configuration: &172 value: id: 1325 target_type: organization @@ -8685,7 +8685,7 @@ paths: application/json: schema: type: array - items: &177 + items: &176 type: object description: Repositories associated with a code security configuration and attachment status @@ -9030,7 +9030,7 @@ paths: summary: Example of code security configuration repositories value: - status: attached - repository: &178 + repository: &177 value: id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -9124,7 +9124,7 @@ paths: url: https://docs.github.com/rest/dependabot/alerts#list-dependabot-alerts-for-an-enterprise parameters: - *38 - - &181 + - &180 name: state in: query description: |- @@ -9133,7 +9133,7 @@ paths: Can be: `auto_dismissed`, `dismissed`, `fixed`, `open` schema: type: string - - &182 + - &181 name: severity in: query description: |- @@ -9142,7 +9142,7 @@ paths: Can be: `low`, `medium`, `high`, `critical` schema: type: string - - &183 + - &182 name: ecosystem in: query description: |- @@ -9151,14 +9151,14 @@ paths: Can be: `composer`, `go`, `maven`, `npm`, `nuget`, `pip`, `pub`, `rubygems`, `rust` schema: type: string - - &184 + - &183 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 - - &185 + - &184 name: epss_percentage in: query description: |- @@ -9184,7 +9184,7 @@ paths: type: string enum: - patch - - &186 + - &185 name: scope in: query description: The scope of the vulnerable dependency. If specified, only alerts @@ -9194,7 +9194,7 @@ paths: enum: - development - runtime - - &187 + - &186 name: sort in: query description: |- @@ -9220,11 +9220,11 @@ paths: application/json: schema: type: array - items: &188 + items: &187 type: object description: A Dependabot alert. properties: - number: &163 + number: &162 type: integer description: The security alert number. readOnly: true @@ -9497,29 +9497,29 @@ paths: - withdrawn_at additionalProperties: false security_vulnerability: *55 - url: &166 + url: &165 type: string description: The REST API URL of the alert resource. format: uri readOnly: true - html_url: &167 + html_url: &166 type: string description: The GitHub URL of the alert resource. format: uri readOnly: true - created_at: &164 + created_at: &163 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: &165 + updated_at: &164 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: &169 + dismissed_at: &168 type: - string - 'null' @@ -9550,7 +9550,7 @@ paths: description: An optional comment associated with the alert's dismissal. maxLength: 280 - fixed_at: &168 + fixed_at: &167 type: - string - 'null' @@ -9624,7 +9624,7 @@ paths: - repository additionalProperties: false examples: - default: &189 + default: &188 value: - number: 2 state: dismissed @@ -10957,7 +10957,7 @@ paths: properties: action: type: string - discussion: &706 + discussion: &704 title: Discussion description: A Discussion in a repository. type: object @@ -11460,7 +11460,7 @@ paths: milestone: anyOf: - type: 'null' - - &252 + - &251 title: Milestone description: A collection of related issues and pull requests. @@ -11632,7 +11632,7 @@ paths: timeline_url: type: string format: uri - type: &216 + type: &215 title: Issue Type description: The type of issue. type: @@ -11743,7 +11743,7 @@ paths: - hooray - eyes - rocket - sub_issues_summary: &627 + sub_issues_summary: &625 title: Sub-issues Summary type: object properties: @@ -11764,7 +11764,7 @@ paths: - string - 'null' format: uri - issue_dependencies_summary: &628 + issue_dependencies_summary: &626 title: Issue Dependencies Summary type: object properties: @@ -11783,7 +11783,7 @@ paths: - total_blocking issue_field_values: type: array - items: &629 + items: &627 title: Issue Field Value description: A value assigned to an issue field type: object @@ -12619,7 +12619,7 @@ paths: type: string release: allOf: - - &560 + - &558 title: Release description: A release. type: object @@ -12701,7 +12701,7 @@ paths: author: *4 assets: type: array - items: &561 + items: &559 title: Release Asset description: Data related to a release. type: object @@ -12869,7 +12869,7 @@ paths: created_at: '2022-06-07T07:50:26Z' '304': *35 '403': *27 - '503': &106 + '503': &105 description: Service unavailable content: application/json: @@ -13304,7 +13304,7 @@ paths: url: type: string format: uri - user: &635 + user: &633 title: Public User description: Public User type: object @@ -15199,7 +15199,7 @@ paths: - closed - all default: open - - &219 + - &218 name: labels description: 'A list of comma separated label names. Example: `bug,ui,@high`' in: query @@ -15250,7 +15250,7 @@ paths: type: array items: *71 examples: - default: &220 + default: &219 value: - id: 1 node_id: MDU6SXNzdWUx @@ -16802,7 +16802,7 @@ paths: properties: id: type: string - repository: &145 + repository: &144 title: Minimal Repository description: Minimal Repository type: object @@ -18283,127 +18283,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: - - *66 - responses: - '200': - description: Response - content: - application/json: - schema: - type: array - items: &104 - 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 - type: - - 'null' - - string - - array - required: - - property_name - - value - examples: - default: &543 - value: - - property_name: environment - value: production - - property_name: service - value: web - - property_name: team - value: octocat - '403': *27 - '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: - - *66 - 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: *104 - required: - - properties - examples: - default: &544 - 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': *27 - '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 @@ -18546,7 +18425,7 @@ paths: alert_recipients: [] '404': *6 '403': *27 - '500': *105 + '500': *104 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -18568,7 +18447,7 @@ paths: url: https://docs.github.com/rest/billing/budgets#get-a-budget-by-id-for-an-organization parameters: - *66 - - &107 + - &106 name: budget_id description: The ID corresponding to the budget. in: path @@ -18667,8 +18546,8 @@ paths: '400': *14 '404': *6 '403': *27 - '500': *105 - '503': *106 + '500': *104 + '503': *105 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -18689,7 +18568,7 @@ paths: url: https://docs.github.com/rest/billing/budgets#update-a-budget-for-an-organization parameters: - *66 - - *107 + - *106 requestBody: required: true content: @@ -18876,7 +18755,7 @@ paths: url: https://docs.github.com/rest/billing/budgets#delete-a-budget-for-an-organization parameters: - *66 - - *107 + - *106 responses: '200': description: Response when deleting a budget @@ -18902,8 +18781,8 @@ paths: '400': *14 '404': *6 '403': *27 - '500': *105 - '503': *106 + '500': *104 + '503': *105 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -18924,7 +18803,7 @@ paths: url: https://docs.github.com/rest/billing/usage#get-billing-premium-request-usage-report-for-an-organization parameters: - *66 - - &108 + - &107 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, @@ -18933,7 +18812,7 @@ paths: required: false schema: type: integer - - &110 + - &109 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 @@ -18942,7 +18821,7 @@ paths: required: false schema: type: integer - - &109 + - &108 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 @@ -18957,14 +18836,14 @@ paths: required: false schema: type: string - - &683 + - &681 name: model description: The model name to query usage for. The name is not case sensitive. in: query required: false schema: type: string - - &111 + - &110 name: product description: The product name to query usage for. The name is not case sensitive. in: query @@ -19080,8 +18959,8 @@ paths: '400': *14 '403': *27 '404': *6 - '500': *105 - '503': *106 + '500': *104 + '503': *105 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -19102,8 +18981,8 @@ paths: url: https://docs.github.com/rest/billing/usage#get-billing-usage-report-for-an-organization parameters: - *66 - - *108 - - &684 + - *107 + - &682 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 @@ -19112,7 +18991,7 @@ paths: required: false schema: type: integer - - *109 + - *108 responses: '200': description: Billing usage report response for an organization @@ -19187,8 +19066,8 @@ paths: repositoryName: github/example '400': *14 '403': *27 - '500': *105 - '503': *106 + '500': *104 + '503': *105 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -19212,18 +19091,18 @@ paths: url: https://docs.github.com/rest/billing/usage#get-billing-usage-summary-for-an-organization parameters: - *66 - - *108 - - *110 + - *107 - *109 - - &685 + - *108 + - &683 name: repository description: The repository name to query for usage in the format owner/repository. in: query required: false schema: type: string - - *111 - - &686 + - *110 + - &684 name: sku description: The SKU to query for usage. in: query @@ -19333,8 +19212,8 @@ paths: netAmount: 8.0 '400': *14 '403': *27 - '500': *105 - '503': *106 + '500': *104 + '503': *105 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -19366,7 +19245,7 @@ paths: description: Response content: application/json: - schema: &112 + schema: &111 title: Organization Full description: Organization Full type: object @@ -19761,7 +19640,7 @@ paths: - updated_at - archived_at examples: - default-response: &113 + default-response: &112 value: login: github id: 1 @@ -20078,17 +19957,17 @@ paths: description: Response content: application/json: - schema: *112 + schema: *111 examples: - default: *113 + default: *112 '422': description: Validation failed content: application/json: schema: oneOf: + - *113 - *114 - - *115 '409': *50 x-github: githubCloudOnly: false @@ -20278,7 +20157,7 @@ paths: type: integer runners: type: array - items: &116 + items: &115 title: GitHub-hosted hosted runner description: A Github-hosted hosted runner. type: object @@ -20341,7 +20220,7 @@ paths: - size_gb - display_name - source - machine_size_details: &124 + machine_size_details: &123 title: Github-owned VM details. description: Provides details of a particular machine spec. type: object @@ -20450,7 +20329,7 @@ paths: - public_ip_enabled - platform examples: - default: &144 + default: &143 value: total_count: 2 runners: @@ -20588,9 +20467,9 @@ paths: description: Response content: application/json: - schema: *116 + schema: *115 examples: - default: &125 + default: &124 value: id: 5 name: My hosted ubuntu runner @@ -20647,7 +20526,7 @@ paths: type: integer images: type: array - items: &117 + items: &116 title: GitHub-hosted runner custom image details description: Provides details of a custom runner image type: object @@ -20706,7 +20585,7 @@ paths: - latest_version - state examples: - default: &119 + default: &118 value: total_count: 2 image_versions: @@ -20738,7 +20617,7 @@ paths: url: https://docs.github.com/rest/actions/hosted-runners#get-a-custom-image-definition-for-github-actions-hosted-runners parameters: - *66 - - &118 + - &117 name: image_definition_id description: Image definition ID of custom image in: path @@ -20750,7 +20629,7 @@ paths: description: Response content: application/json: - schema: *117 + schema: *116 examples: default: value: @@ -20781,7 +20660,7 @@ paths: url: https://docs.github.com/rest/actions/hosted-runners#delete-a-custom-image-from-the-organization parameters: - *66 - - *118 + - *117 responses: '204': description: Response @@ -20804,7 +20683,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: - - *118 + - *117 - *66 responses: '200': @@ -20821,7 +20700,7 @@ paths: type: integer image_versions: type: array - items: &120 + items: &119 title: GitHub-hosted runner custom image version details. description: Provides details of a hosted runner custom image version @@ -20859,7 +20738,7 @@ paths: - created_on - state_details examples: - default: *119 + default: *118 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -20880,8 +20759,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: - *66 - - *118 - - &121 + - *117 + - &120 name: version description: Version of a custom image in: path @@ -20894,7 +20773,7 @@ paths: description: Response content: application/json: - schema: *120 + schema: *119 examples: default: value: @@ -20921,8 +20800,8 @@ paths: url: https://docs.github.com/rest/actions/hosted-runners#delete-an-image-version-of-custom-image-from-the-organization parameters: - *66 - - *118 - - *121 + - *117 + - *120 responses: '204': description: Response @@ -20959,7 +20838,7 @@ paths: type: integer images: type: array - items: &122 + items: &121 title: GitHub-hosted runner image details. description: Provides details of a hosted runner image type: object @@ -20999,7 +20878,7 @@ paths: - display_name - source examples: - default: &123 + default: &122 value: id: ubuntu-20.04 platform: linux-x64 @@ -21039,9 +20918,9 @@ paths: type: integer images: type: array - items: *122 + items: *121 examples: - default: *123 + default: *122 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -21129,7 +21008,7 @@ paths: type: integer machine_specs: type: array - items: *124 + items: *123 examples: default: value: @@ -21199,7 +21078,7 @@ paths: url: https://docs.github.com/rest/actions/hosted-runners#get-a-github-hosted-runner-for-an-organization parameters: - *66 - - &126 + - &125 name: hosted_runner_id description: Unique identifier of the GitHub-hosted runner. in: path @@ -21211,9 +21090,9 @@ paths: description: Response content: application/json: - schema: *116 + schema: *115 examples: - default: *125 + default: *124 headers: Link: *57 x-github: @@ -21234,7 +21113,7 @@ paths: url: https://docs.github.com/rest/actions/hosted-runners#update-a-github-hosted-runner-for-an-organization parameters: - *66 - - *126 + - *125 requestBody: required: true content: @@ -21278,9 +21157,9 @@ paths: description: Response content: application/json: - schema: *116 + schema: *115 examples: - default: *125 + default: *124 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -21297,15 +21176,15 @@ paths: url: https://docs.github.com/rest/actions/hosted-runners#delete-a-github-hosted-runner-for-an-organization parameters: - *66 - - *126 + - *125 responses: '202': description: Response content: application/json: - schema: *116 + schema: *115 examples: - default: *125 + default: *124 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -21331,7 +21210,7 @@ paths: description: A JSON serialized template for OIDC subject claim customization content: application/json: - schema: &127 + schema: &126 title: Actions OIDC Subject customization description: Actions OIDC Subject customization type: object @@ -21345,7 +21224,7 @@ paths: required: - include_claim_keys examples: - default: &128 + default: &127 value: include_claim_keys: - repo @@ -21372,15 +21251,15 @@ paths: required: true content: application/json: - schema: *127 + schema: *126 examples: - default: *128 + default: *127 responses: '201': description: Empty response content: application/json: - schema: &154 + schema: &153 title: Empty Object description: An object without any properties. type: object @@ -21419,7 +21298,7 @@ paths: schema: type: object properties: - enabled_repositories: &129 + enabled_repositories: &128 type: string description: The policy that controls the repositories in the organization that are allowed to run GitHub Actions. @@ -21432,7 +21311,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: &130 + allowed_actions: &129 type: string description: The permissions policy that controls the actions and reusable workflows that are allowed to run. @@ -21445,7 +21324,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: &131 + sha_pinning_required: &130 type: boolean description: Whether actions must be pinned to a full-length commit SHA. @@ -21487,9 +21366,9 @@ paths: schema: type: object properties: - enabled_repositories: *129 - allowed_actions: *130 - sha_pinning_required: *131 + enabled_repositories: *128 + allowed_actions: *129 + sha_pinning_required: *130 required: - enabled_repositories examples: @@ -21608,7 +21487,7 @@ paths: description: Response content: application/json: - schema: &132 + schema: &131 type: object properties: approval_policy: @@ -21653,7 +21532,7 @@ paths: required: true content: application/json: - schema: *132 + schema: *131 examples: default: summary: Set approval policy to first time contributors @@ -21707,7 +21586,7 @@ paths: description: Whether workflows triggered by pull requests from forks require approval from a repository administrator to run. examples: - default: &133 + default: &132 value: run_workflows_from_fork_pull_requests: true send_write_tokens_to_workflows: false @@ -21758,7 +21637,7 @@ paths: description: Whether workflows triggered by pull requests from forks require approval from a repository administrator to run. examples: - default: *133 + default: *132 responses: '204': description: Empty response for successful settings update @@ -21808,7 +21687,7 @@ paths: type: array items: *69 examples: - default: &137 + default: &136 value: total_count: 1 repositories: @@ -21993,7 +21872,7 @@ paths: url: https://docs.github.com/rest/actions/permissions#enable-a-selected-repository-for-github-actions-in-an-organization parameters: - *66 - - &134 + - &133 name: repository_id description: The unique identifier of the repository. in: path @@ -22022,7 +21901,7 @@ paths: url: https://docs.github.com/rest/actions/permissions#disable-a-selected-repository-for-github-actions-in-an-organization parameters: - *66 - - *134 + - *133 responses: '204': description: Response @@ -22051,7 +21930,7 @@ paths: description: Response content: application/json: - schema: &135 + schema: &134 type: object properties: github_owned_allowed: @@ -22073,7 +21952,7 @@ paths: items: type: string examples: - default: &136 + default: &135 value: github_owned_allowed: true verified_allowed: false @@ -22106,9 +21985,9 @@ paths: required: false content: application/json: - schema: *135 + schema: *134 examples: - selected_actions: *136 + selected_actions: *135 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -22240,7 +22119,7 @@ paths: type: array items: *69 examples: - default: *137 + default: *136 '403': *27 '404': *6 x-github: @@ -22309,7 +22188,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: - *66 - - *134 + - *133 responses: '204': description: No content @@ -22336,7 +22215,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: - *66 - - *134 + - *133 responses: '204': description: No content @@ -22373,14 +22252,14 @@ paths: schema: &334 type: object properties: - default_workflow_permissions: &138 + default_workflow_permissions: &137 type: string description: The default workflow permissions granted to the GITHUB_TOKEN when running workflows. enum: - read - write - can_approve_pull_request_reviews: &139 + can_approve_pull_request_reviews: &138 type: boolean description: Whether GitHub Actions can approve pull requests. Enabling this can be a security risk. @@ -22388,7 +22267,7 @@ paths: - default_workflow_permissions - can_approve_pull_request_reviews examples: - default: &140 + default: &139 summary: Give read-only permission, and allow approving PRs. value: default_workflow_permissions: read @@ -22424,10 +22303,10 @@ paths: schema: &335 type: object properties: - default_workflow_permissions: *138 - can_approve_pull_request_reviews: *139 + default_workflow_permissions: *137 + can_approve_pull_request_reviews: *138 examples: - default: *140 + default: *139 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -22472,7 +22351,7 @@ paths: type: number runner_groups: type: array - items: &141 + items: &140 type: object properties: id: @@ -22662,9 +22541,9 @@ paths: description: Response content: application/json: - schema: *141 + schema: *140 examples: - default: &143 + default: &142 value: id: 2 name: octo-runner-group @@ -22700,7 +22579,7 @@ paths: url: https://docs.github.com/rest/actions/self-hosted-runner-groups#get-a-self-hosted-runner-group-for-an-organization parameters: - *66 - - &142 + - &141 name: runner_group_id description: Unique identifier of the self-hosted runner group. in: path @@ -22712,7 +22591,7 @@ paths: description: Response content: application/json: - schema: *141 + schema: *140 examples: default: value: @@ -22749,7 +22628,7 @@ paths: url: https://docs.github.com/rest/actions/self-hosted-runner-groups#update-a-self-hosted-runner-group-for-an-organization parameters: - *66 - - *142 + - *141 requestBody: required: true content: @@ -22805,9 +22684,9 @@ paths: description: Response content: application/json: - schema: *141 + schema: *140 examples: - default: *143 + default: *142 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -22827,7 +22706,7 @@ paths: url: https://docs.github.com/rest/actions/self-hosted-runner-groups#delete-a-self-hosted-runner-group-from-an-organization parameters: - *66 - - *142 + - *141 responses: '204': description: Response @@ -22851,7 +22730,7 @@ paths: url: https://docs.github.com/rest/actions/self-hosted-runner-groups#list-github-hosted-runners-in-a-group-for-an-organization parameters: - *66 - - *142 + - *141 - *17 - *19 responses: @@ -22869,9 +22748,9 @@ paths: type: number runners: type: array - items: *116 + items: *115 examples: - default: *144 + default: *143 headers: Link: *57 x-github: @@ -22894,7 +22773,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: - *66 - - *142 + - *141 - *19 - *17 responses: @@ -22912,9 +22791,9 @@ paths: type: number repositories: type: array - items: *145 + items: *144 examples: - default: &638 + default: &636 value: total_count: 1 repositories: @@ -23167,7 +23046,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: - *66 - - *142 + - *141 requestBody: required: true content: @@ -23212,8 +23091,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: - *66 - - *142 - - *134 + - *141 + - *133 responses: '204': description: Response @@ -23236,8 +23115,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: - *66 - - *142 - - *134 + - *141 + - *133 responses: '204': description: Response @@ -23261,7 +23140,7 @@ paths: url: https://docs.github.com/rest/actions/self-hosted-runner-groups#list-self-hosted-runners-in-a-group-for-an-organization parameters: - *66 - - *142 + - *141 - *17 - *19 responses: @@ -23279,7 +23158,7 @@ paths: type: number runners: type: array - items: &147 + items: &146 title: Self hosted runners description: A self hosted runner type: object @@ -23313,7 +23192,7 @@ paths: type: boolean labels: type: array - items: &150 + items: &149 title: Self hosted runner label description: A label for a self hosted runner type: object @@ -23343,7 +23222,7 @@ paths: - busy - labels examples: - default: &148 + default: &147 value: total_count: 2 runners: @@ -23403,7 +23282,7 @@ paths: url: https://docs.github.com/rest/actions/self-hosted-runner-groups#set-self-hosted-runners-in-a-group-for-an-organization parameters: - *66 - - *142 + - *141 requestBody: required: true content: @@ -23448,8 +23327,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: - *66 - - *142 - - &146 + - *141 + - &145 name: runner_id description: Unique identifier of the self-hosted runner. in: path @@ -23478,8 +23357,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: - *66 - - *142 - - *146 + - *141 + - *145 responses: '204': description: Response @@ -23527,9 +23406,9 @@ paths: type: integer runners: type: array - items: *147 + items: *146 examples: - default: *148 + default: *147 headers: Link: *57 x-github: @@ -23682,7 +23561,7 @@ paths: - runner - encoded_jit_config properties: - runner: *147 + runner: *146 encoded_jit_config: type: string description: The base64 encoded runner configuration. @@ -23745,7 +23624,7 @@ paths: description: Response content: application/json: - schema: &149 + schema: &148 title: Authentication Token description: Authentication Token type: object @@ -23824,7 +23703,7 @@ paths: description: Response content: application/json: - schema: *149 + schema: *148 examples: default: &340 value: @@ -23852,13 +23731,13 @@ paths: url: https://docs.github.com/rest/actions/self-hosted-runners#get-a-self-hosted-runner-for-an-organization parameters: - *66 - - *146 + - *145 responses: '200': description: Response content: application/json: - schema: *147 + schema: *146 examples: default: &341 value: @@ -23902,7 +23781,7 @@ paths: url: https://docs.github.com/rest/actions/self-hosted-runners#delete-a-self-hosted-runner-from-an-organization parameters: - *66 - - *146 + - *145 responses: '204': description: Response @@ -23929,9 +23808,9 @@ paths: url: https://docs.github.com/rest/actions/self-hosted-runners#list-labels-for-a-self-hosted-runner-for-an-organization parameters: - *66 - - *146 + - *145 responses: - '200': &151 + '200': &150 description: Response content: application/json: @@ -23945,7 +23824,7 @@ paths: type: integer labels: type: array - items: *150 + items: *149 examples: default: value: @@ -23985,7 +23864,7 @@ paths: url: https://docs.github.com/rest/actions/self-hosted-runners#add-custom-labels-to-a-self-hosted-runner-for-an-organization parameters: - *66 - - *146 + - *145 requestBody: required: true content: @@ -24009,7 +23888,7 @@ paths: - gpu - accelerated responses: - '200': *151 + '200': *150 '404': *6 '422': *7 x-github: @@ -24034,7 +23913,7 @@ paths: url: https://docs.github.com/rest/actions/self-hosted-runners#set-custom-labels-for-a-self-hosted-runner-for-an-organization parameters: - *66 - - *146 + - *145 requestBody: required: true content: @@ -24059,7 +23938,7 @@ paths: - gpu - accelerated responses: - '200': *151 + '200': *150 '404': *6 '422': *7 x-github: @@ -24084,7 +23963,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: - *66 - - *146 + - *145 responses: '200': &342 description: Response @@ -24100,7 +23979,7 @@ paths: type: integer labels: type: array - items: *150 + items: *149 examples: default: value: @@ -24142,7 +24021,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: - *66 - - *146 + - *145 - &343 name: name description: The name of a self-hosted runner's custom label. @@ -24151,7 +24030,7 @@ paths: schema: type: string responses: - '200': *151 + '200': *150 '404': *6 '422': *7 x-github: @@ -24194,7 +24073,7 @@ paths: type: integer secrets: type: array - items: &152 + items: &151 title: Actions Secret for an Organization description: Secrets for GitHub Actions for an organization. type: object @@ -24336,7 +24215,7 @@ paths: url: https://docs.github.com/rest/actions/secrets#get-an-organization-secret parameters: - *66 - - &153 + - &152 name: secret_name description: The name of the secret. in: path @@ -24348,7 +24227,7 @@ paths: description: Response content: application/json: - schema: *152 + schema: *151 examples: default: value: @@ -24379,7 +24258,7 @@ paths: url: https://docs.github.com/rest/actions/secrets#create-or-update-an-organization-secret parameters: - *66 - - *153 + - *152 requestBody: required: true content: @@ -24436,7 +24315,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *154 + schema: *153 examples: default: value: @@ -24463,7 +24342,7 @@ paths: url: https://docs.github.com/rest/actions/secrets#delete-an-organization-secret parameters: - *66 - - *153 + - *152 responses: '204': description: Response @@ -24490,7 +24369,7 @@ paths: url: https://docs.github.com/rest/actions/secrets#list-selected-repositories-for-an-organization-secret parameters: - *66 - - *153 + - *152 - *19 - *17 responses: @@ -24508,9 +24387,9 @@ paths: type: integer repositories: type: array - items: *145 + items: *144 examples: - default: &157 + default: &156 value: total_count: 1 repositories: @@ -24603,7 +24482,7 @@ paths: url: https://docs.github.com/rest/actions/secrets#set-selected-repositories-for-an-organization-secret parameters: - *66 - - *153 + - *152 requestBody: required: true content: @@ -24656,7 +24535,7 @@ paths: url: https://docs.github.com/rest/actions/secrets#add-selected-repository-to-an-organization-secret parameters: - *66 - - *153 + - *152 - name: repository_id in: path required: true @@ -24690,7 +24569,7 @@ paths: url: https://docs.github.com/rest/actions/secrets#remove-selected-repository-from-an-organization-secret parameters: - *66 - - *153 + - *152 - name: repository_id in: path required: true @@ -24747,7 +24626,7 @@ paths: type: integer variables: type: array - items: &155 + items: &154 title: Actions Variable for an Organization description: Organization variable for GitHub Actions. type: object @@ -24885,7 +24764,7 @@ paths: description: Response when creating a variable content: application/json: - schema: *154 + schema: *153 examples: default: value: @@ -24911,7 +24790,7 @@ paths: url: https://docs.github.com/rest/actions/variables#get-an-organization-variable parameters: - *66 - - &156 + - &155 name: name description: The name of the variable. in: path @@ -24923,7 +24802,7 @@ paths: description: Response content: application/json: - schema: *155 + schema: *154 examples: default: value: @@ -24954,7 +24833,7 @@ paths: url: https://docs.github.com/rest/actions/variables#update-an-organization-variable parameters: - *66 - - *156 + - *155 requestBody: required: true content: @@ -25017,7 +24896,7 @@ paths: url: https://docs.github.com/rest/actions/variables#delete-an-organization-variable parameters: - *66 - - *156 + - *155 responses: '204': description: Response @@ -25044,7 +24923,7 @@ paths: url: https://docs.github.com/rest/actions/variables#list-selected-repositories-for-an-organization-variable parameters: - *66 - - *156 + - *155 - *19 - *17 responses: @@ -25062,9 +24941,9 @@ paths: type: integer repositories: type: array - items: *145 + items: *144 examples: - default: *157 + default: *156 '409': description: Response when the visibility of the variable is not set to `selected` @@ -25091,7 +24970,7 @@ paths: url: https://docs.github.com/rest/actions/variables#set-selected-repositories-for-an-organization-variable parameters: - *66 - - *156 + - *155 requestBody: required: true content: @@ -25141,7 +25020,7 @@ paths: url: https://docs.github.com/rest/actions/variables#add-selected-repository-to-an-organization-variable parameters: - *66 - - *156 + - *155 - name: repository_id in: path required: true @@ -25176,7 +25055,7 @@ paths: url: https://docs.github.com/rest/actions/variables#remove-selected-repository-from-an-organization-variable parameters: - *66 - - *156 + - *155 - name: repository_id in: path required: true @@ -25321,7 +25200,7 @@ paths: type: integer deployment_records: type: array - items: &158 + items: &157 title: Artifact Deployment Record description: Artifact Metadata Deployment Record type: object @@ -25366,7 +25245,7 @@ paths: description: The ID of the provenance attestation associated with the deployment record. examples: - default: &159 + default: &158 value: total_count: 1 deployment_records: @@ -25541,9 +25420,9 @@ paths: type: integer deployment_records: type: array - items: *158 + items: *157 examples: - default: *159 + default: *158 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -25753,9 +25632,9 @@ paths: - 3 deployment_records: type: array - items: *158 + items: *157 examples: - default: *159 + default: *158 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -25885,12 +25764,12 @@ paths: required: - subject_digests examples: - default: &665 + default: &663 value: subject_digests: - sha256:abc123 - sha512:def456 - withPredicateType: &666 + withPredicateType: &664 value: subject_digests: - sha256:abc123 @@ -25949,7 +25828,7 @@ paths: description: The cursor to the previous page. description: Information about the current page. examples: - default: &667 + default: &665 value: attestations_subject_digests: - sha256:abc: @@ -26517,7 +26396,7 @@ paths: description: If specified, only campaigns with this state will be returned. in: query required: false - schema: &160 + schema: &159 title: Campaign state description: Indicates whether a campaign is open or closed type: string @@ -26543,7 +26422,7 @@ paths: application/json: schema: type: array - items: &161 + items: &160 title: Campaign summary description: The campaign metadata and alert stats. type: object @@ -26574,7 +26453,7 @@ paths: team_managers: description: The campaign team managers type: array - items: &180 + items: &179 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -26651,7 +26530,7 @@ paths: parent: anyOf: - type: 'null' - - &231 + - &230 title: Team Simple description: Groups of organization members that gives permissions on specified repositories. @@ -26787,7 +26666,7 @@ paths: - string - 'null' format: date-time - state: *160 + state: *159 contact_link: description: The contact link of the campaign. type: @@ -26885,7 +26764,7 @@ paths: headers: Link: *57 '404': *6 - '503': *106 + '503': *105 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -27010,9 +26889,9 @@ paths: description: Response content: application/json: - schema: *161 + schema: *160 examples: - default: &162 + default: &161 value: number: 3 created_at: '2024-02-14T12:29:18Z' @@ -27061,7 +26940,7 @@ paths: schema: *3 '429': description: Too Many Requests - '503': *106 + '503': *105 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -27095,16 +26974,16 @@ paths: description: Response content: application/json: - schema: *161 + schema: *160 examples: - default: *162 + default: *161 '404': *6 '422': description: Unprocessable Entity content: application/json: schema: *3 - '503': *106 + '503': *105 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -27175,7 +27054,7 @@ paths: - string - 'null' format: uri - state: *160 + state: *159 examples: default: value: @@ -27185,9 +27064,9 @@ paths: description: Response content: application/json: - schema: *161 + schema: *160 examples: - default: *162 + default: *161 '400': description: Bad Request content: @@ -27199,7 +27078,7 @@ paths: content: application/json: schema: *3 - '503': *106 + '503': *105 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -27231,7 +27110,7 @@ paths: '204': description: Deletion successful '404': *6 - '503': *106 + '503': *105 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -27261,7 +27140,7 @@ paths: but not both. in: query required: false - schema: &170 + schema: &169 type: string description: The name of the tool used to generate the code scanning analysis. - &394 @@ -27272,7 +27151,7 @@ paths: or `tool_name`, but not both. in: query required: false - schema: &171 + schema: &170 type: - string - 'null' @@ -27340,18 +27219,18 @@ paths: items: type: object properties: - number: *163 - created_at: *164 - updated_at: *165 - url: *166 - html_url: *167 + number: *162 + created_at: *163 + updated_at: *164 + url: *165 + html_url: *166 instances_url: &398 type: string description: The REST API URL for fetching the list of instances for an alert. format: uri readOnly: true - state: &172 + state: &171 type: - string - 'null' @@ -27361,12 +27240,12 @@ paths: - dismissed - fixed - - fixed_at: *168 + fixed_at: *167 dismissed_by: anyOf: - type: 'null' - *4 - dismissed_at: *169 + dismissed_at: *168 dismissed_reason: &399 type: - string @@ -27449,14 +27328,14 @@ paths: tool: &402 type: object properties: - name: *170 + name: *169 version: type: - string - 'null' description: The version of the tool used to generate the code scanning analysis. - guid: *171 + guid: *170 most_recent_instance: &403 type: object properties: @@ -27482,7 +27361,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: *172 + state: *171 commit_sha: type: string message: @@ -27777,7 +27656,7 @@ paths: headers: Link: *57 '404': *6 - '503': *106 + '503': *105 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -28131,7 +28010,7 @@ paths: application/json: schema: *45 examples: - default: *173 + default: *172 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -28159,9 +28038,9 @@ paths: description: Response content: application/json: - schema: *174 + schema: *173 examples: - default: *175 + default: *174 '304': *35 '403': *27 '404': *6 @@ -28213,7 +28092,7 @@ paths: - 32 - 91 responses: - '204': *176 + '204': *175 '400': *14 '403': *27 '404': *6 @@ -28248,7 +28127,7 @@ paths: application/json: schema: *45 examples: - default: *173 + default: *172 '304': *35 '403': *27 '404': *6 @@ -28533,7 +28412,7 @@ paths: - *66 - *47 responses: - '204': *176 + '204': *175 '400': *14 '403': *27 '404': *6 @@ -28671,7 +28550,7 @@ paths: default: value: default_for_new_repos: all - configuration: *173 + configuration: *172 '403': *27 '404': *6 x-github: @@ -28724,13 +28603,13 @@ paths: application/json: schema: type: array - items: *177 + items: *176 examples: default: summary: Example of code security configuration repositories value: - status: attached - repository: *178 + repository: *177 '403': *27 '404': *6 x-github: @@ -28770,7 +28649,7 @@ paths: type: integer codespaces: type: array - items: &221 + items: &220 type: object title: Codespace description: A codespace. @@ -28801,7 +28680,7 @@ paths: - 26a7c758-7299-4a73-b978-5a92a7ae98a0 owner: *4 billable_owner: *4 - repository: *145 + repository: *144 machine: anyOf: - type: 'null' @@ -29092,7 +28971,7 @@ paths: - pulls_url - recent_folders examples: - default: &222 + default: &221 value: total_count: 3 codespaces: @@ -29502,7 +29381,7 @@ paths: stop_url: https://api.github.com/user/codespaces/monalisa-octocat-hello-world-f8adfad99a/stop recent_folders: [] '304': *35 - '500': *105 + '500': *104 '401': *23 '403': *27 '404': *6 @@ -29568,7 +29447,7 @@ paths: description: Users are neither members nor collaborators of this organization. '404': *6 '422': *15 - '500': *105 + '500': *104 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -29623,7 +29502,7 @@ paths: description: Users are neither members nor collaborators of this organization. '404': *6 '422': *15 - '500': *105 + '500': *104 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -29677,7 +29556,7 @@ paths: description: Users are neither members nor collaborators of this organization. '404': *6 '422': *15 - '500': *105 + '500': *104 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -29716,7 +29595,7 @@ paths: type: integer secrets: type: array - items: &179 + items: &178 title: Codespaces Secret description: Secrets for a GitHub Codespace. type: object @@ -29854,13 +29733,13 @@ paths: url: https://docs.github.com/rest/codespaces/organization-secrets#get-an-organization-secret parameters: - *66 - - *153 + - *152 responses: '200': description: Response content: application/json: - schema: *179 + schema: *178 examples: default: &434 value: @@ -29890,7 +29769,7 @@ paths: url: https://docs.github.com/rest/codespaces/organization-secrets#create-or-update-an-organization-secret parameters: - *66 - - *153 + - *152 requestBody: required: true content: @@ -29945,7 +29824,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *154 + schema: *153 examples: default: value: @@ -29972,7 +29851,7 @@ paths: url: https://docs.github.com/rest/codespaces/organization-secrets#delete-an-organization-secret parameters: - *66 - - *153 + - *152 responses: '204': description: Response @@ -29998,7 +29877,7 @@ paths: url: https://docs.github.com/rest/codespaces/organization-secrets#list-selected-repositories-for-an-organization-secret parameters: - *66 - - *153 + - *152 - *19 - *17 responses: @@ -30016,9 +29895,9 @@ paths: type: integer repositories: type: array - items: *145 + items: *144 examples: - default: *157 + default: *156 '404': *6 x-github: githubCloudOnly: false @@ -30041,7 +29920,7 @@ paths: url: https://docs.github.com/rest/codespaces/organization-secrets#set-selected-repositories-for-an-organization-secret parameters: - *66 - - *153 + - *152 requestBody: required: true content: @@ -30092,7 +29971,7 @@ paths: url: https://docs.github.com/rest/codespaces/organization-secrets#add-selected-repository-to-an-organization-secret parameters: - *66 - - *153 + - *152 - name: repository_id in: path required: true @@ -30126,7 +30005,7 @@ paths: url: https://docs.github.com/rest/codespaces/organization-secrets#remove-selected-repository-from-an-organization-secret parameters: - *66 - - *153 + - *152 - name: repository_id in: path required: true @@ -30274,7 +30153,7 @@ paths: cli: enabled public_code_suggestions: block plan_type: business - '500': *105 + '500': *104 '401': *23 '403': *27 '404': *6 @@ -30329,7 +30208,7 @@ paths: currently being billed. seats: type: array - items: &224 + items: &223 title: Copilot Business Seat Detail description: Information about a Copilot Business seat assignment for a user, team, or organization. @@ -30347,7 +30226,7 @@ paths: description: The team through which the assignee is granted access to GitHub Copilot, if applicable. oneOf: - - *180 + - *179 - *58 type: - 'null' @@ -30479,7 +30358,7 @@ paths: site_admin: false headers: Link: *57 - '500': *105 + '500': *104 '401': *23 '403': *27 '404': *6 @@ -30554,7 +30433,7 @@ paths: default: value: seats_created: 5 - '500': *105 + '500': *104 '401': *23 '403': *27 '404': *6 @@ -30632,7 +30511,7 @@ paths: default: value: seats_cancelled: 5 - '500': *105 + '500': *104 '401': *23 '403': *27 '404': *6 @@ -30711,7 +30590,7 @@ paths: default: value: seats_created: 5 - '500': *105 + '500': *104 '401': *23 '403': *27 '404': *6 @@ -30789,7 +30668,7 @@ paths: default: value: seats_cancelled: 5 - '500': *105 + '500': *104 '401': *23 '403': *27 '404': *6 @@ -31274,7 +31153,7 @@ paths: custom_model_training_date: '2024-02-01' total_pr_summaries_created: 10 total_engaged_users: 4 - '500': *105 + '500': *104 '403': *27 '404': *6 '422': &304 @@ -31305,11 +31184,11 @@ paths: url: https://docs.github.com/rest/dependabot/alerts#list-dependabot-alerts-for-an-organization parameters: - *66 + - *180 - *181 - *182 - *183 - *184 - - *185 - name: artifact_registry_url in: query description: A comma-separated list of artifact registry URLs. If specified, @@ -31347,8 +31226,8 @@ paths: Can be: `critical-resource`, `internet-exposed`, `sensitive-data`, `lateral-movement` schema: type: string + - *185 - *186 - - *187 - *51 - *43 - *44 @@ -31360,9 +31239,9 @@ paths: application/json: schema: type: array - items: *188 + items: *187 examples: - default: *189 + default: *188 '304': *35 '400': *14 '403': *27 @@ -31406,7 +31285,7 @@ paths: type: integer secrets: type: array - items: &190 + items: &189 title: Dependabot Secret for an Organization description: Secrets for GitHub Dependabot for an organization. type: object @@ -31528,13 +31407,13 @@ paths: url: https://docs.github.com/rest/dependabot/secrets#get-an-organization-secret parameters: - *66 - - *153 + - *152 responses: '200': description: Response content: application/json: - schema: *190 + schema: *189 examples: default: value: @@ -31563,7 +31442,7 @@ paths: url: https://docs.github.com/rest/dependabot/secrets#create-or-update-an-organization-secret parameters: - *66 - - *153 + - *152 requestBody: required: true content: @@ -31622,7 +31501,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *154 + schema: *153 examples: default: value: @@ -31647,7 +31526,7 @@ paths: url: https://docs.github.com/rest/dependabot/secrets#delete-an-organization-secret parameters: - *66 - - *153 + - *152 responses: '204': description: Response @@ -31672,7 +31551,7 @@ paths: url: https://docs.github.com/rest/dependabot/secrets#list-selected-repositories-for-an-organization-secret parameters: - *66 - - *153 + - *152 - *19 - *17 responses: @@ -31690,9 +31569,9 @@ paths: type: integer repositories: type: array - items: *145 + items: *144 examples: - default: *157 + default: *156 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -31714,7 +31593,7 @@ paths: url: https://docs.github.com/rest/dependabot/secrets#set-selected-repositories-for-an-organization-secret parameters: - *66 - - *153 + - *152 requestBody: required: true content: @@ -31765,7 +31644,7 @@ paths: url: https://docs.github.com/rest/dependabot/secrets#add-selected-repository-to-an-organization-secret parameters: - *66 - - *153 + - *152 - name: repository_id in: path required: true @@ -31797,7 +31676,7 @@ paths: url: https://docs.github.com/rest/dependabot/secrets#remove-selected-repository-from-an-organization-secret parameters: - *66 - - *153 + - *152 - name: repository_id in: path required: true @@ -31835,7 +31714,7 @@ paths: application/json: schema: type: array - items: &233 + items: &232 title: Package description: A software package type: object @@ -31888,7 +31767,7 @@ paths: repository: anyOf: - type: 'null' - - *145 + - *144 created_at: type: string format: date-time @@ -31906,7 +31785,7 @@ paths: - created_at - updated_at examples: - default: &234 + default: &233 value: - id: 197 name: hello_docker @@ -32076,7 +31955,7 @@ paths: application/json: schema: type: array - items: &213 + items: &212 title: Organization Invitation description: Organization Invitation type: object @@ -32130,7 +32009,7 @@ paths: - invitation_teams_url - node_id examples: - default: &214 + default: &213 value: - id: 1 login: monalisa @@ -32197,7 +32076,7 @@ paths: application/json: schema: type: array - items: &191 + items: &190 title: Org Hook description: Org Hook type: object @@ -32382,9 +32261,9 @@ paths: description: Response content: application/json: - schema: *191 + schema: *190 examples: - default: &192 + default: &191 value: id: 1 url: https://api.github.com/orgs/octocat/hooks/1 @@ -32432,7 +32311,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#get-an-organization-webhook parameters: - *66 - - &193 + - &192 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. @@ -32445,9 +32324,9 @@ paths: description: Response content: application/json: - schema: *191 + schema: *190 examples: - default: *192 + default: *191 '404': *6 x-github: githubCloudOnly: false @@ -32475,7 +32354,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#update-an-organization-webhook parameters: - *66 - - *193 + - *192 requestBody: required: false content: @@ -32521,7 +32400,7 @@ paths: description: Response content: application/json: - schema: *191 + schema: *190 examples: default: value: @@ -32563,7 +32442,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#delete-an-organization-webhook parameters: - *66 - - *193 + - *192 responses: '204': description: Response @@ -32591,7 +32470,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#get-a-webhook-configuration-for-an-organization parameters: - *66 - - *193 + - *192 responses: '200': description: Response @@ -32622,7 +32501,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#update-a-webhook-configuration-for-an-organization parameters: - *66 - - *193 + - *192 requestBody: required: false content: @@ -32673,9 +32552,9 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#list-deliveries-for-an-organization-webhook parameters: - *66 - - *193 + - *192 - *17 - - *194 + - *193 responses: '200': description: Response @@ -32683,9 +32562,9 @@ paths: application/json: schema: type: array - items: *195 + items: *194 examples: - default: *196 + default: *195 '400': *14 '422': *15 x-github: @@ -32711,16 +32590,16 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#get-a-webhook-delivery-for-an-organization-webhook parameters: - *66 - - *193 + - *192 - *16 responses: '200': description: Response content: application/json: - schema: *197 + schema: *196 examples: - default: *198 + default: *197 '400': *14 '422': *15 x-github: @@ -32746,7 +32625,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#redeliver-a-delivery-for-an-organization-webhook parameters: - *66 - - *193 + - *192 - *16 responses: '202': *37 @@ -32776,7 +32655,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#ping-an-organization-webhook parameters: - *66 - - *193 + - *192 responses: '204': description: Response @@ -32799,7 +32678,7 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-route-stats-by-actor parameters: - *66 - - &203 + - &202 name: actor_type in: path description: The type of the actor @@ -32812,14 +32691,14 @@ paths: - fine_grained_pat - oauth_app - github_app_user_to_server - - &204 + - &203 name: actor_id in: path description: The ID of the actor required: true schema: type: integer - - &199 + - &198 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`.' @@ -32827,7 +32706,7 @@ paths: required: true schema: type: string - - &200 + - &199 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) @@ -32922,12 +32801,12 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-subject-stats parameters: - *66 + - *198 - *199 - - *200 - *19 - *17 - *51 - - &209 + - &208 name: sort description: The property to sort the results by. in: query @@ -33007,14 +32886,14 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-summary-stats parameters: - *66 + - *198 - *199 - - *200 responses: '200': description: Response content: application/json: - schema: &201 + schema: &200 title: Summary Stats description: API Insights usage summary stats for an organization type: object @@ -33030,7 +32909,7 @@ paths: type: integer format: int64 examples: - default: &202 + default: &201 value: total_request_count: 34225 rate_limited_request_count: 23 @@ -33051,23 +32930,23 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-summary-stats-by-user parameters: - *66 - - &205 + - &204 name: user_id in: path description: The ID of the user to query for stats required: true schema: type: string + - *198 - *199 - - *200 responses: '200': description: Response content: application/json: - schema: *201 + schema: *200 examples: - default: *202 + default: *201 x-github: enabledForGitHubApps: true category: orgs @@ -33086,18 +32965,18 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-summary-stats-by-actor parameters: - *66 + - *198 - *199 - - *200 + - *202 - *203 - - *204 responses: '200': description: Response content: application/json: - schema: *201 + schema: *200 examples: - default: *202 + default: *201 x-github: enabledForGitHubApps: true category: orgs @@ -33115,9 +32994,9 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-time-stats parameters: - *66 + - *198 - *199 - - *200 - - &206 + - &205 name: timestamp_increment description: The increment of time used to breakdown the query results (5m, 10m, 1h, etc.) @@ -33130,7 +33009,7 @@ paths: description: Response content: application/json: - schema: &207 + schema: &206 title: Time Stats description: API Insights usage time stats for an organization type: array @@ -33146,7 +33025,7 @@ paths: type: integer format: int64 examples: - default: &208 + default: &207 value: - timestamp: '2024-09-11T15:00:00Z' total_request_count: 34225 @@ -33183,18 +33062,18 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-time-stats-by-user parameters: - *66 - - *205 + - *204 + - *198 - *199 - - *200 - - *206 + - *205 responses: '200': description: Response content: application/json: - schema: *207 + schema: *206 examples: - default: *208 + default: *207 x-github: enabledForGitHubApps: true category: orgs @@ -33212,19 +33091,19 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-time-stats-by-actor parameters: - *66 + - *202 - *203 - - *204 + - *198 - *199 - - *200 - - *206 + - *205 responses: '200': description: Response content: application/json: - schema: *207 + schema: *206 examples: - default: *208 + default: *207 x-github: enabledForGitHubApps: true category: orgs @@ -33242,13 +33121,13 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-user-stats parameters: - *66 - - *205 + - *204 + - *198 - *199 - - *200 - *19 - *17 - *51 - - *209 + - *208 - name: actor_name_substring in: query description: Providing a substring will filter results where the actor name @@ -33498,12 +33377,12 @@ paths: application/json: schema: anyOf: - - &211 + - &210 title: Interaction Limits description: Interaction limit settings. type: object properties: - limit: &210 + limit: &209 type: string description: The type of GitHub user that can comment, open issues, or create pull requests while the interaction limit @@ -33531,7 +33410,7 @@ paths: properties: {} additionalProperties: false examples: - default: &212 + default: &211 value: limit: collaborators_only origin: organization @@ -33566,7 +33445,7 @@ paths: duration type: object properties: - limit: *210 + limit: *209 expiry: type: string description: 'The duration of the interaction restriction. Default: @@ -33591,9 +33470,9 @@ paths: description: Response content: application/json: - schema: *211 + schema: *210 examples: - default: *212 + default: *211 '422': *15 x-github: githubCloudOnly: false @@ -33669,9 +33548,9 @@ paths: application/json: schema: type: array - items: *213 + items: *212 examples: - default: *214 + default: *213 headers: Link: *57 '404': *6 @@ -33748,7 +33627,7 @@ paths: description: Response content: application/json: - schema: *213 + schema: *212 examples: default: value: @@ -33803,7 +33682,7 @@ paths: url: https://docs.github.com/rest/orgs/members#cancel-an-organization-invitation parameters: - *66 - - &215 + - &214 name: invitation_id description: The unique identifier of the invitation. in: path @@ -33834,7 +33713,7 @@ paths: url: https://docs.github.com/rest/orgs/members#list-organization-invitation-teams parameters: - *66 - - *215 + - *214 - *17 - *19 responses: @@ -33844,9 +33723,9 @@ paths: application/json: schema: type: array - items: *180 + items: *179 examples: - default: &232 + default: &231 value: - id: 1 node_id: MDQ6VGVhbTE= @@ -33889,7 +33768,7 @@ paths: application/json: schema: type: array - items: *216 + items: *215 examples: default: value: @@ -33977,9 +33856,9 @@ paths: description: Response content: application/json: - schema: *216 + schema: *215 examples: - default: &217 + default: &216 value: id: 410 node_id: IT_kwDNAd3NAZo @@ -34012,7 +33891,7 @@ paths: url: https://docs.github.com/rest/orgs/issue-types#update-issue-type-for-an-organization parameters: - *66 - - &218 + - &217 name: issue_type_id description: The unique identifier of the issue type. in: path @@ -34068,9 +33947,9 @@ paths: description: Response content: application/json: - schema: *216 + schema: *215 examples: - default: *217 + default: *216 '404': *6 '422': *7 x-github: @@ -34095,7 +33974,7 @@ paths: url: https://docs.github.com/rest/orgs/issue-types#delete-issue-type-for-an-organization parameters: - *66 - - *218 + - *217 responses: '204': description: Response @@ -34158,7 +34037,7 @@ paths: - closed - all default: open - - *219 + - *218 - name: type description: Can be the name of an issue type. in: query @@ -34189,7 +34068,7 @@ paths: type: array items: *71 examples: - default: *220 + default: *219 headers: Link: *57 '404': *6 @@ -34348,11 +34227,11 @@ paths: type: integer codespaces: type: array - items: *221 + items: *220 examples: - default: *222 + default: *221 '304': *35 - '500': *105 + '500': *104 '401': *23 '403': *27 '404': *6 @@ -34377,7 +34256,7 @@ paths: parameters: - *66 - *62 - - &223 + - &222 name: codespace_name in: path required: true @@ -34387,7 +34266,7 @@ paths: responses: '202': *37 '304': *35 - '500': *105 + '500': *104 '401': *23 '403': *27 '404': *6 @@ -34412,13 +34291,13 @@ paths: parameters: - *66 - *62 - - *223 + - *222 responses: '200': description: Response content: application/json: - schema: *221 + schema: *220 examples: default: &428 value: @@ -34562,7 +34441,7 @@ paths: recent_folders: [] template: '304': *35 - '500': *105 + '500': *104 '401': *23 '403': *27 '404': *6 @@ -34600,7 +34479,7 @@ paths: description: The user's GitHub Copilot seat details, including usage. content: application/json: - schema: *224 + schema: *223 examples: default: value: @@ -34644,7 +34523,7 @@ paths: members_url: https://api.github.com/teams/1/members{/member} repositories_url: https://api.github.com/teams/1/repos parent: - '500': *105 + '500': *104 '401': *23 '403': *27 '404': *6 @@ -34676,7 +34555,7 @@ paths: description: Response content: application/json: - schema: &225 + schema: &224 title: Org Membership description: Org Membership type: object @@ -34745,7 +34624,7 @@ paths: - organization - user examples: - response-if-user-has-an-active-admin-membership-with-organization: &226 + response-if-user-has-an-active-admin-membership-with-organization: &225 summary: Response if user has an active admin membership with organization value: url: https://api.github.com/orgs/octocat/memberships/defunkt @@ -34846,9 +34725,9 @@ paths: description: Response content: application/json: - schema: *225 + schema: *224 examples: - response-if-user-already-had-membership-with-organization: *226 + response-if-user-already-had-membership-with-organization: *225 '422': *15 '403': *27 x-github: @@ -34920,7 +34799,7 @@ paths: application/json: schema: type: array - items: &227 + items: &226 title: Migration description: A migration. type: object @@ -35258,7 +35137,7 @@ paths: description: Response content: application/json: - schema: *227 + schema: *226 examples: default: value: @@ -35437,7 +35316,7 @@ paths: url: https://docs.github.com/rest/migrations/orgs#get-an-organization-migration-status parameters: - *66 - - &228 + - &227 name: migration_id description: The unique identifier of the migration. in: path @@ -35465,7 +35344,7 @@ paths: * `failed`, which means the migration failed. content: application/json: - schema: *227 + schema: *226 examples: default: value: @@ -35635,7 +35514,7 @@ paths: url: https://docs.github.com/rest/migrations/orgs#download-an-organization-migration-archive parameters: - *66 - - *228 + - *227 responses: '302': description: Response @@ -35657,7 +35536,7 @@ paths: url: https://docs.github.com/rest/migrations/orgs#delete-an-organization-migration-archive parameters: - *66 - - *228 + - *227 responses: '204': description: Response @@ -35681,8 +35560,8 @@ paths: url: https://docs.github.com/rest/migrations/orgs#unlock-an-organization-repository parameters: - *66 - - *228 - - &650 + - *227 + - &648 name: repo_name description: repo_name parameter in: path @@ -35710,7 +35589,7 @@ paths: url: https://docs.github.com/rest/migrations/orgs#list-repositories-in-an-organization-migration parameters: - *66 - - *228 + - *227 - *17 - *19 responses: @@ -35720,9 +35599,9 @@ paths: application/json: schema: type: array - items: *145 + items: *144 examples: - default: &239 + default: &238 value: - id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -35875,7 +35754,7 @@ paths: roles: type: array description: The list of organization roles available to the organization. - items: &230 + items: &229 title: Organization Role description: Organization roles type: object @@ -36052,7 +35931,7 @@ paths: parameters: - *66 - *67 - - &229 + - &228 name: role_id description: The unique identifier of the role. in: path @@ -36089,7 +35968,7 @@ paths: parameters: - *66 - *67 - - *229 + - *228 responses: '204': description: Response @@ -36142,7 +36021,7 @@ paths: parameters: - *66 - *62 - - *229 + - *228 responses: '204': description: Response @@ -36174,7 +36053,7 @@ paths: parameters: - *66 - *62 - - *229 + - *228 responses: '204': description: Response @@ -36203,13 +36082,13 @@ paths: url: https://docs.github.com/rest/orgs/organization-roles#get-an-organization-role parameters: - *66 - - *229 + - *228 responses: '200': description: Response content: application/json: - schema: *230 + schema: *229 examples: default: value: @@ -36260,7 +36139,7 @@ paths: url: https://docs.github.com/rest/orgs/organization-roles#list-teams-that-are-assigned-to-an-organization-role parameters: - *66 - - *229 + - *228 - *17 - *19 responses: @@ -36339,7 +36218,7 @@ paths: parent: anyOf: - type: 'null' - - *231 + - *230 type: description: The ownership type of the team type: string @@ -36372,7 +36251,7 @@ paths: - type - parent examples: - default: *232 + default: *231 headers: Link: *57 '404': @@ -36402,7 +36281,7 @@ paths: url: https://docs.github.com/rest/orgs/organization-roles#list-users-that-are-assigned-to-an-organization-role parameters: - *66 - - *229 + - *228 - *17 - *19 responses: @@ -36431,7 +36310,7 @@ paths: inherited_from: description: Team the user has gotten the role through type: array - items: *231 + items: *230 name: type: - string @@ -36741,7 +36620,7 @@ paths: - nuget - container - *66 - - &651 + - &649 name: visibility description: |- The selected visibility of the packages. This parameter is optional and only filters an existing result set. @@ -36777,12 +36656,12 @@ paths: application/json: schema: type: array - items: *233 + items: *232 examples: - default: *234 + default: *233 '403': *27 '401': *23 - '400': &653 + '400': &651 description: The value of `per_page` multiplied by `page` cannot be greater than 10000. x-github: @@ -36804,7 +36683,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-for-an-organization parameters: - - &235 + - &234 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 @@ -36822,7 +36701,7 @@ paths: - docker - nuget - container - - &236 + - &235 name: package_name description: The name of the package. in: path @@ -36835,7 +36714,7 @@ paths: description: Response content: application/json: - schema: *233 + schema: *232 examples: default: value: @@ -36887,8 +36766,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-a-package-for-an-organization parameters: + - *234 - *235 - - *236 - *66 responses: '204': @@ -36921,8 +36800,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-a-package-for-an-organization parameters: + - *234 - *235 - - *236 - *66 - name: token description: package token @@ -36955,8 +36834,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: + - *234 - *235 - - *236 - *66 - *19 - *17 @@ -36977,7 +36856,7 @@ paths: application/json: schema: type: array - items: &237 + items: &236 title: Package Version description: A version of a software package type: object @@ -37112,10 +36991,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-version-for-an-organization parameters: + - *234 - *235 - - *236 - *66 - - &238 + - &237 name: package_version_id description: Unique identifier of the package version. in: path @@ -37127,7 +37006,7 @@ paths: description: Response content: application/json: - schema: *237 + schema: *236 examples: default: value: @@ -37163,10 +37042,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-package-version-for-an-organization parameters: + - *234 - *235 - - *236 - *66 - - *238 + - *237 responses: '204': description: Response @@ -37198,10 +37077,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-package-version-for-an-organization parameters: + - *234 - *235 - - *236 - *66 - - *238 + - *237 responses: '204': description: Response @@ -37231,7 +37110,7 @@ paths: - *66 - *17 - *19 - - &240 + - &239 name: sort description: The property by which to sort the results. in: query @@ -37242,7 +37121,7 @@ paths: - created_at default: created_at - *51 - - &241 + - &240 name: owner description: A list of owner usernames to use to filter the results. in: query @@ -37254,7 +37133,7 @@ paths: type: string examples: - owner[]=octocat1,owner[]=octocat2 - - &242 + - &241 name: repository description: The name of the repository to use to filter the results. in: query @@ -37263,7 +37142,7 @@ paths: type: string examples: - Hello-World - - &243 + - &242 name: permission description: The permission to use to filter the results. in: query @@ -37272,7 +37151,7 @@ paths: type: string examples: - issues_read - - &244 + - &243 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) @@ -37282,7 +37161,7 @@ paths: schema: type: string format: date-time - - &245 + - &244 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) @@ -37292,7 +37171,7 @@ paths: schema: type: string format: date-time - - &246 + - &245 name: token_id description: The ID of the token in: query @@ -37305,7 +37184,7 @@ paths: examples: - token_id[]=1,token_id[]=2 responses: - '500': *105 + '500': *104 '422': *15 '404': *6 '403': *27 @@ -37502,7 +37381,7 @@ paths: action: deny reason: Access is too broad. responses: - '500': *105 + '500': *104 '422': *15 '404': *6 '403': *27 @@ -37564,11 +37443,11 @@ paths: action: deny reason: This request is denied because the access is too broad. responses: - '500': *105 + '500': *104 '422': *15 '404': *6 '403': *27 - '204': *176 + '204': *175 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -37600,7 +37479,7 @@ paths: - *17 - *19 responses: - '500': *105 + '500': *104 '404': *6 '403': *27 '200': @@ -37609,9 +37488,9 @@ paths: application/json: schema: type: array - items: *145 + items: *144 examples: - default: *239 + default: *238 headers: Link: *57 x-github: @@ -37637,16 +37516,16 @@ paths: - *66 - *17 - *19 - - *240 + - *239 - *51 + - *240 - *241 - *242 - *243 - *244 - *245 - - *246 responses: - '500': *105 + '500': *104 '422': *15 '404': *6 '403': *27 @@ -37830,7 +37709,7 @@ paths: - 1296269 - 1296280 responses: - '500': *105 + '500': *104 '404': *6 '202': *37 '403': *27 @@ -37883,9 +37762,9 @@ paths: value: action: revoke responses: - '500': *105 + '500': *104 '404': *6 - '204': *176 + '204': *175 '403': *27 '422': *15 x-github: @@ -37917,7 +37796,7 @@ paths: - *17 - *19 responses: - '500': *105 + '500': *104 '404': *6 '403': *27 '200': @@ -37926,9 +37805,9 @@ paths: application/json: schema: type: array - items: *145 + items: *144 examples: - default: *239 + default: *238 headers: Link: *57 x-github: @@ -37970,7 +37849,7 @@ paths: type: integer configurations: type: array - items: &247 + items: &246 title: Organization private registry description: Private registry configuration for an organization type: object @@ -38266,7 +38145,7 @@ paths: - created_at - updated_at examples: - org-private-registry-with-selected-visibility: &248 + org-private-registry-with-selected-visibility: &247 value: name: MAVEN_REPOSITORY_SECRET registry_type: maven_repository @@ -38358,15 +38237,15 @@ paths: url: https://docs.github.com/rest/private-registries/organization-configurations#get-a-private-registry-for-an-organization parameters: - *66 - - *153 + - *152 responses: '200': description: The specified private registry configuration for the organization content: application/json: - schema: *247 + schema: *246 examples: - default: *248 + default: *247 '404': *6 x-github: githubCloudOnly: false @@ -38388,7 +38267,7 @@ paths: url: https://docs.github.com/rest/private-registries/organization-configurations#update-a-private-registry-for-an-organization parameters: - *66 - - *153 + - *152 requestBody: required: true content: @@ -38494,7 +38373,7 @@ paths: url: https://docs.github.com/rest/private-registries/organization-configurations#delete-a-private-registry-for-an-organization parameters: - *66 - - *153 + - *152 responses: '204': description: Response @@ -38534,7 +38413,7 @@ paths: application/json: schema: type: array - items: &249 + items: &248 title: Projects v2 Project description: A projects v2 project type: object @@ -38608,7 +38487,7 @@ paths: latest_status_update: anyOf: - type: 'null' - - &734 + - &732 title: Projects v2 Status Update description: An status update belonging to a project type: object @@ -38693,7 +38572,7 @@ paths: - deleted_at - deleted_by examples: - default: &250 + default: &249 value: id: 2 node_id: MDc6UHJvamVjdDEwMDI2MDM= @@ -38796,7 +38675,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/projects#get-project-for-organization parameters: - - &251 + - &250 name: project_number description: The project's number. in: path @@ -38809,9 +38688,9 @@ paths: description: Response content: application/json: - schema: *249 + schema: *248 examples: - default: *250 + default: *249 headers: Link: *57 '304': *35 @@ -38834,7 +38713,7 @@ paths: url: https://docs.github.com/rest/projects/drafts#create-draft-item-for-organization-owned-project parameters: - *66 - - *251 + - *250 requestBody: required: true description: Details of the draft item to create in the project. @@ -38868,7 +38747,7 @@ paths: description: Response content: application/json: - schema: &256 + schema: &255 title: Projects v2 Item description: An item belonging to a project type: object @@ -39002,7 +38881,7 @@ paths: milestone: anyOf: - type: 'null' - - *252 + - *251 active_lock_reason: type: - string @@ -39057,7 +38936,7 @@ paths: type: - array - 'null' - items: *180 + items: *179 head: type: object properties: @@ -39101,7 +38980,7 @@ paths: _links: type: object properties: - comments: &253 + comments: &252 title: Link description: Hypermedia Link type: object @@ -39110,13 +38989,13 @@ paths: type: string required: - href - commits: *253 - statuses: *253 - html: *253 - issue: *253 - review_comments: *253 - review_comment: *253 - self: *253 + commits: *252 + statuses: *252 + html: *252 + issue: *252 + review_comments: *252 + review_comment: *252 + self: *252 required: - comments - commits @@ -39127,7 +39006,7 @@ paths: - review_comment - self author_association: *72 - auto_merge: &546 + auto_merge: &544 title: Auto merge description: The status of auto merging a pull request. type: @@ -39229,7 +39108,7 @@ paths: - created_at - updated_at description: The content represented by the item. - content_type: &255 + content_type: &254 title: Projects v2 Item Content Type description: The type of content tracked in a project item type: string @@ -39273,7 +39152,7 @@ paths: - updated_at - archived_at examples: - draft_issue: &257 + draft_issue: &256 value: id: 17 node_id: PVTI_lADOANN5s84ACbL0zgBueEI @@ -39347,7 +39226,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/fields#list-project-fields-for-organization parameters: - - *251 + - *250 - *66 - *17 - *43 @@ -39359,7 +39238,7 @@ paths: application/json: schema: type: array - items: &254 + items: &253 title: Projects v2 Field description: A field inside a projects v2 project type: object @@ -39509,7 +39388,7 @@ paths: - updated_at - project_url examples: - default: &670 + default: &668 value: - id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -39639,7 +39518,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/fields#add-a-field-to-an-organization-owned-project parameters: - - *251 + - *250 - *66 requestBody: required: true @@ -39686,7 +39565,7 @@ paths: description: The options available for single select fields. At least one option must be provided when creating a single select field. - items: &671 + items: &669 type: object properties: name: @@ -39722,7 +39601,7 @@ paths: description: The field's data type. enum: - iteration - iteration_configuration: &672 + iteration_configuration: &670 type: object description: The configuration for iteration fields. properties: @@ -39771,7 +39650,7 @@ paths: value: name: Due date data_type: date - single_select_field: &673 + single_select_field: &671 summary: Create a single select field value: name: Priority @@ -39798,7 +39677,7 @@ paths: description: raw: High priority items html: High priority items - iteration_field: &674 + iteration_field: &672 summary: Create an iteration field value: name: Sprint @@ -39822,9 +39701,9 @@ paths: description: Response for adding a field to an organization-owned project. content: application/json: - schema: *254 + schema: *253 examples: - text_field: &675 + text_field: &673 value: id: 24680 node_id: PVTF_lADOABCD2468024680 @@ -39833,7 +39712,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: &676 + number_field: &674 value: id: 13579 node_id: PVTF_lADOABCD1357913579 @@ -39842,7 +39721,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: &677 + date_field: &675 value: id: 98765 node_id: PVTF_lADOABCD9876598765 @@ -39851,7 +39730,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: &678 + single_select_field: &676 value: id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -39885,7 +39764,7 @@ paths: raw: High priority items created_at: '2022-04-28T12:00:00Z' updated_at: '2022-04-28T12:00:00Z' - iteration_field: &679 + iteration_field: &677 value: id: 11223 node_id: PVTF_lADOABCD1122311223 @@ -39930,8 +39809,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/fields#get-project-field-for-organization parameters: - - *251 - - &680 + - *250 + - &678 name: field_id description: The unique identifier of the field. in: path @@ -39944,9 +39823,9 @@ paths: description: Response content: application/json: - schema: *254 + schema: *253 examples: - default: &681 + default: &679 value: id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -40002,7 +39881,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#list-items-for-an-organization-owned-project parameters: - - *251 + - *250 - *66 - 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) @@ -40035,7 +39914,7 @@ paths: application/json: schema: type: array - items: &258 + items: &257 title: Projects v2 Item description: An item belonging to a project type: object @@ -40052,7 +39931,7 @@ paths: description: The API URL of the project that contains this item. examples: - https://api.github.com/users/monalisa/2/projectsV2/3 - content_type: *255 + content_type: *254 content: type: - object @@ -40102,7 +39981,7 @@ paths: - updated_at - archived_at examples: - default: &259 + default: &258 value: id: 13 node_id: PVTI_lAAFAQ0 @@ -40799,7 +40678,7 @@ paths: url: https://docs.github.com/rest/projects/items#add-item-to-organization-owned-project parameters: - *66 - - *251 + - *250 requestBody: required: true description: Details of the item to add to the project. You can specify either @@ -40869,22 +40748,22 @@ paths: description: Response content: application/json: - schema: *256 + schema: *255 examples: issue_with_id: summary: Response for adding an issue using its unique ID - value: *257 + value: *256 pull_request_with_id: summary: Response for adding a pull request using its unique ID - value: *257 + value: *256 issue_with_nwo: summary: Response for adding an issue using repository owner, name, and issue number - value: *257 + value: *256 pull_request_with_nwo: summary: Response for adding a pull request using repository owner, name, and PR number - value: *257 + value: *256 '304': *35 '403': *27 '401': *23 @@ -40904,9 +40783,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#get-an-item-for-an-organization-owned-project parameters: - - *251 + - *250 - *66 - - &260 + - &259 name: item_id description: The unique identifier of the project item. in: path @@ -40932,9 +40811,9 @@ paths: description: Response content: application/json: - schema: *258 + schema: *257 examples: - default: *259 + default: *258 headers: Link: *57 '304': *35 @@ -40955,9 +40834,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#update-project-item-for-organization parameters: - - *251 + - *250 - *66 - - *260 + - *259 requestBody: required: true description: Field updates to apply to the project item. Only text, number, @@ -41030,13 +40909,13 @@ paths: description: Response content: application/json: - schema: *258 + schema: *257 examples: - text_field: *259 - number_field: *259 - date_field: *259 - single_select_field: *259 - iteration_field: *259 + text_field: *258 + number_field: *258 + date_field: *258 + single_select_field: *258 + iteration_field: *258 '401': *23 '403': *27 '404': *6 @@ -41056,9 +40935,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#delete-project-item-for-organization parameters: - - *251 + - *250 - *66 - - *260 + - *259 responses: '204': description: Response @@ -41081,9 +40960,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#list-items-for-an-organization-project-view parameters: - - *251 + - *250 - *66 - - &682 + - &680 name: view_number description: The number that identifies the project view. in: path @@ -41115,9 +40994,9 @@ paths: application/json: schema: type: array - items: *258 + items: *257 examples: - default: *259 + default: *258 headers: Link: *57 '304': *35 @@ -41150,7 +41029,7 @@ paths: application/json: schema: type: array - items: &261 + items: &260 title: Organization Custom Property description: Custom property defined on an organization type: object @@ -41225,7 +41104,7 @@ paths: - property_name - value_type examples: - default: &262 + default: &261 value: - property_name: environment url: https://api.github.com/orgs/github/properties/schema/environment @@ -41284,7 +41163,7 @@ paths: properties: type: array description: The array of custom properties to create or update. - items: *261 + items: *260 minItems: 1 maxItems: 100 required: @@ -41314,9 +41193,9 @@ paths: application/json: schema: type: array - items: *261 + items: *260 examples: - default: *262 + default: *261 '403': *27 '404': *6 x-github: @@ -41338,7 +41217,7 @@ paths: url: https://docs.github.com/rest/orgs/custom-properties#get-a-custom-property-for-an-organization parameters: - *66 - - &263 + - &262 name: custom_property_name description: The custom property name in: path @@ -41350,9 +41229,9 @@ paths: description: Response content: application/json: - schema: *261 + schema: *260 examples: - default: &264 + default: &263 value: property_name: environment url: https://api.github.com/orgs/github/properties/schema/environment @@ -41387,7 +41266,7 @@ paths: url: https://docs.github.com/rest/orgs/custom-properties#create-or-update-a-custom-property-for-an-organization parameters: - *66 - - *263 + - *262 requestBody: required: true content: @@ -41464,9 +41343,9 @@ paths: description: Response content: application/json: - schema: *261 + schema: *260 examples: - default: *264 + default: *263 '403': *27 '404': *6 x-github: @@ -41490,9 +41369,9 @@ paths: url: https://docs.github.com/rest/orgs/custom-properties#remove-a-custom-property-for-an-organization parameters: - *66 - - *263 + - *262 responses: - '204': *176 + '204': *175 '403': *27 '404': *6 x-github: @@ -41554,7 +41433,28 @@ paths: - octocat/Hello-World properties: type: array - items: *104 + items: &264 + 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 + type: + - 'null' + - string + - array + required: + - property_name + - value description: List of custom property names and associated values required: - repository_id @@ -41623,7 +41523,7 @@ paths: type: array description: List of custom property names and associated values to apply to the repositories. - items: *104 + items: *264 required: - repository_names - properties @@ -41813,9 +41713,9 @@ paths: application/json: schema: type: array - items: *145 + items: *144 examples: - default: *239 + default: *238 headers: Link: *57 x-github: @@ -43118,7 +43018,7 @@ paths: - *66 - *17 - *19 - - &568 + - &566 name: targets description: | A comma-separated list of rule targets to filter by. @@ -43404,7 +43304,7 @@ paths: - object rules: type: array - items: &569 + items: &567 title: Repository Rule type: object description: A repository rule. @@ -43466,7 +43366,7 @@ paths: type: string enum: - required_linear_history - - &567 + - &565 title: merge_queue description: Merges must be performed via a merge queue. type: object @@ -44196,7 +44096,7 @@ paths: created_at: '2023-08-15T08:43:03Z' updated_at: '2023-09-23T16:29:47Z' '404': *6 - '500': *105 + '500': *104 post: summary: Create an organization repository ruleset description: Create a repository ruleset for an organization. @@ -44347,7 +44247,7 @@ paths: created_at: '2023-08-15T08:43:03Z' updated_at: '2023-09-23T16:29:47Z' '404': *6 - '500': *105 + '500': *104 "/orgs/{org}/rulesets/rule-suites": get: summary: List organization rule suites @@ -44362,7 +44262,7 @@ paths: url: https://docs.github.com/rest/orgs/rule-suites#list-organization-rule-suites parameters: - *66 - - &570 + - &568 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 @@ -44377,7 +44277,7 @@ paths: in: query schema: type: string - - &571 + - &569 name: time_period description: |- The time period to filter by. @@ -44393,14 +44293,14 @@ paths: - week - month default: day - - &572 + - &570 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 - - &573 + - &571 name: rule_suite_result description: The rule suite results to filter on. When specified, only suites with this result will be returned. @@ -44420,7 +44320,7 @@ paths: description: Response content: application/json: - schema: &574 + schema: &572 title: Rule Suites description: Response type: array @@ -44476,7 +44376,7 @@ paths: whether rules would pass or fail if all rules in the rule suite were `active`. examples: - default: &575 + default: &573 value: - id: 21 actor_id: 12 @@ -44500,7 +44400,7 @@ paths: result: pass evaluation_result: fail '404': *6 - '500': *105 + '500': *104 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -44520,7 +44420,7 @@ paths: url: https://docs.github.com/rest/orgs/rule-suites#get-an-organization-rule-suite parameters: - *66 - - &576 + - &574 name: rule_suite_id description: |- The unique identifier of the rule suite result. @@ -44536,7 +44436,7 @@ paths: description: Response content: application/json: - schema: &577 + schema: &575 title: Rule Suite description: Response type: object @@ -44643,7 +44543,7 @@ paths: description: The detailed failure message for the rule. Null if the rule passed. examples: - default: &578 + default: &576 value: id: 21 actor_id: 12 @@ -44678,7 +44578,7 @@ paths: result: fail rule_type: commit_message_pattern '404': *6 - '500': *105 + '500': *104 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -44720,7 +44620,7 @@ paths: examples: default: *293 '404': *6 - '500': *105 + '500': *104 put: summary: Update an organization repository ruleset description: Update a ruleset for an organization. @@ -44810,7 +44710,7 @@ paths: examples: default: *293 '404': *6 - '500': *105 + '500': *104 delete: summary: Delete an organization repository ruleset description: Delete a ruleset for an organization. @@ -44837,7 +44737,7 @@ paths: '204': description: Response '404': *6 - '500': *105 + '500': *104 "/orgs/{org}/rulesets/{ruleset_id}/history": get: summary: Get organization ruleset history @@ -44889,7 +44789,7 @@ paths: type: string format: date-time examples: - default: &580 + default: &578 value: - version_id: 3 actor: @@ -44907,7 +44807,7 @@ paths: type: User updated_at: '2024-08-23T16:29:47Z' '404': *6 - '500': *105 + '500': *104 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -44942,7 +44842,7 @@ paths: description: Response content: application/json: - schema: &581 + schema: &579 allOf: - *295 - type: object @@ -44991,7 +44891,7 @@ paths: operator: contains pattern: github '404': *6 - '500': *105 + '500': *104 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -45014,7 +44914,7 @@ paths: url: https://docs.github.com/rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-an-organization parameters: - *66 - - &582 + - &580 name: state in: query description: Set to `open` or `resolved` to only list secret scanning alerts @@ -45025,7 +44925,7 @@ paths: enum: - open - resolved - - &583 + - &581 name: secret_type in: query description: A comma-separated list of secret types to return. All default @@ -45035,7 +44935,7 @@ paths: required: false schema: type: string - - &584 + - &582 name: resolution in: query description: A comma-separated list of resolutions. Only secret scanning alerts @@ -45044,7 +44944,7 @@ paths: required: false schema: type: string - - &585 + - &583 name: assignee in: query description: Filters alerts by assignee. Use `*` to get all assigned alerts, @@ -45063,7 +44963,7 @@ paths: all-unassigned: value: none summary: Filter for all unassigned alerts - - &586 + - &584 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. @@ -45078,7 +44978,7 @@ paths: - *51 - *19 - *17 - - &587 + - &585 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 @@ -45088,7 +44988,7 @@ paths: required: false schema: type: string - - &588 + - &586 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 @@ -45098,7 +44998,7 @@ paths: required: false schema: type: string - - &589 + - &587 name: validity in: query description: A comma-separated list of validities that, when present, will @@ -45107,7 +45007,7 @@ paths: required: false schema: type: string - - &590 + - &588 name: is_publicly_leaked in: query description: A boolean value representing whether or not to filter alerts @@ -45116,7 +45016,7 @@ paths: schema: type: boolean default: false - - &591 + - &589 name: is_multi_repo in: query description: A boolean value representing whether or not to filter alerts @@ -45125,7 +45025,7 @@ paths: schema: type: boolean default: false - - &592 + - &590 name: hide_secret in: query description: A boolean value representing whether or not to hide literal secrets @@ -45144,27 +45044,27 @@ paths: items: type: object properties: - number: *163 - created_at: *164 + number: *162 + created_at: *163 updated_at: anyOf: - type: 'null' - - *165 - url: *166 - html_url: *167 + - *164 + url: *165 + html_url: *166 locations_url: type: string format: uri description: The REST API URL of the code locations for this alert. - state: &593 + state: &591 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: &594 + resolution: &592 type: - string - 'null' @@ -45271,14 +45171,14 @@ paths: first_location_detected: anyOf: - type: 'null' - - &595 + - &593 description: 'Details on the location where the token was initially detected. This can be a commit, wiki commit, issue, discussion, pull request. ' oneOf: - - &597 + - &595 description: Represents a 'commit' secret scanning location type. This location type shows that a secret was detected inside a commit to a repository. @@ -45335,7 +45235,7 @@ paths: - blob_url - commit_sha - commit_url - - &598 + - &596 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. @@ -45396,7 +45296,7 @@ paths: - page_url - commit_sha - commit_url - - &599 + - &597 description: Represents an 'issue_title' secret scanning location type. This location type shows that a secret was detected in the title of an issue. @@ -45411,7 +45311,7 @@ paths: - https://api.github.com/repos/octocat/Hello-World/issues/1347 required: - issue_title_url - - &600 + - &598 description: Represents an 'issue_body' secret scanning location type. This location type shows that a secret was detected in the body of an issue. @@ -45426,7 +45326,7 @@ paths: - https://api.github.com/repos/octocat/Hello-World/issues/1347 required: - issue_body_url - - &601 + - &599 description: Represents an 'issue_comment' secret scanning location type. This location type shows that a secret was detected in a comment on an issue. @@ -45441,7 +45341,7 @@ paths: - https://api.github.com/repos/octocat/Hello-World/issues/comments/1081119451 required: - issue_comment_url - - &602 + - &600 description: Represents a 'discussion_title' secret scanning location type. This location type shows that a secret was detected in the title of a discussion. @@ -45456,7 +45356,7 @@ paths: - https://github.com/community/community/discussions/39082 required: - discussion_title_url - - &603 + - &601 description: Represents a 'discussion_body' secret scanning location type. This location type shows that a secret was detected in the body of a discussion. @@ -45471,7 +45371,7 @@ paths: - https://github.com/community/community/discussions/39082#discussion-4566270 required: - discussion_body_url - - &604 + - &602 description: Represents a 'discussion_comment' secret scanning location type. This location type shows that a secret was detected in a comment on a discussion. @@ -45486,7 +45386,7 @@ paths: - https://github.com/community/community/discussions/39082#discussioncomment-4158232 required: - discussion_comment_url - - &605 + - &603 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. @@ -45501,7 +45401,7 @@ paths: - https://api.github.com/repos/octocat/Hello-World/pulls/2846 required: - pull_request_title_url - - &606 + - &604 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. @@ -45516,7 +45416,7 @@ paths: - https://api.github.com/repos/octocat/Hello-World/pulls/2846 required: - pull_request_body_url - - &607 + - &605 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. @@ -45531,7 +45431,7 @@ paths: - https://api.github.com/repos/octocat/Hello-World/issues/comments/1081119451 required: - pull_request_comment_url - - &608 + - &606 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. @@ -45546,7 +45446,7 @@ paths: - https://api.github.com/repos/octocat/Hello-World/pulls/2846/reviews/80 required: - pull_request_review_url - - &609 + - &607 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 @@ -45749,7 +45649,7 @@ paths: headers: Link: *57 '404': *6 - '503': *106 + '503': *105 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -46046,7 +45946,7 @@ paths: application/json: schema: type: array - items: &613 + items: &611 description: A repository security advisory. type: object properties: @@ -46327,7 +46227,7 @@ paths: - array - 'null' description: A list of teams that collaborate on the advisory. - items: *180 + items: *179 private_fork: readOnly: true description: A temporary private fork of the advisory's repository @@ -46365,7 +46265,7 @@ paths: - private_fork additionalProperties: false examples: - default: &614 + default: &612 value: - ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -46752,9 +46652,9 @@ paths: application/json: schema: type: array - items: *231 + items: *230 examples: - default: *232 + default: *231 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -46957,9 +46857,9 @@ paths: type: integer repositories: type: array - items: *145 + items: *144 examples: - default: *157 + default: *156 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -47028,7 +46928,7 @@ paths: url: https://docs.github.com/rest/orgs/orgs#enable-a-selected-repository-for-immutable-releases-in-an-organization parameters: - *66 - - *134 + - *133 responses: '204': description: Response @@ -47051,7 +46951,7 @@ paths: url: https://docs.github.com/rest/orgs/orgs#disable-a-selected-repository-for-immutable-releases-in-an-organization parameters: - *66 - - *134 + - *133 responses: '204': description: Response @@ -47507,7 +47407,7 @@ paths: items: *302 examples: default: *303 - '500': *105 + '500': *104 '403': *27 '404': *6 '422': *304 @@ -47538,9 +47438,9 @@ paths: application/json: schema: type: array - items: *180 + items: *179 examples: - default: *232 + default: *231 headers: Link: *57 '403': *27 @@ -47708,7 +47608,7 @@ paths: parent: anyOf: - type: 'null' - - *231 + - *230 members_count: type: integer examples: @@ -48267,9 +48167,9 @@ paths: application/json: schema: type: array - items: *213 + items: *212 examples: - default: *214 + default: *213 headers: Link: *57 x-github: @@ -48381,7 +48281,7 @@ paths: - state - url examples: - response-if-user-is-a-team-maintainer: &631 + response-if-user-is-a-team-maintainer: &629 summary: Response if user is a team maintainer value: url: https://api.github.com/teams/1/memberships/octocat @@ -48446,7 +48346,7 @@ paths: application/json: schema: *307 examples: - response-if-users-membership-with-team-is-now-pending: &632 + response-if-users-membership-with-team-is-now-pending: &630 summary: Response if user's membership with team is now pending value: url: https://api.github.com/teams/1/memberships/octocat @@ -48520,9 +48420,9 @@ paths: application/json: schema: type: array - items: *145 + items: *144 examples: - default: *239 + default: *238 headers: Link: *57 x-github: @@ -48560,7 +48460,7 @@ paths: description: Alternative response with repository permissions content: application/json: - schema: &633 + schema: &631 title: Team Repository description: A team's access to a repository. type: object @@ -49287,9 +49187,9 @@ paths: application/json: schema: type: array - items: *180 + items: *179 examples: - response-if-child-teams-exist: &634 + response-if-child-teams-exist: &632 value: - id: 2 node_id: MDQ6VGVhbTI= @@ -51525,7 +51425,7 @@ paths: description: Response content: application/json: - schema: *154 + schema: *153 examples: default: value: @@ -51635,7 +51535,7 @@ paths: description: Empty response content: application/json: - schema: *154 + schema: *153 examples: default: value: @@ -51836,9 +51736,9 @@ paths: enabled: &326 type: boolean description: Whether GitHub Actions is enabled on the repository. - allowed_actions: *130 + allowed_actions: *129 selected_actions_url: *325 - sha_pinning_required: *131 + sha_pinning_required: *130 required: - enabled examples: @@ -51879,8 +51779,8 @@ paths: type: object properties: enabled: *326 - allowed_actions: *130 - sha_pinning_required: *131 + allowed_actions: *129 + sha_pinning_required: *130 required: - enabled examples: @@ -52063,7 +51963,7 @@ paths: description: Response content: application/json: - schema: *132 + schema: *131 examples: default: *331 '404': *6 @@ -52095,7 +51995,7 @@ paths: required: true content: application/json: - schema: *132 + schema: *131 examples: default: summary: Set approval policy to first time contributors @@ -52128,7 +52028,7 @@ paths: application/json: schema: *332 examples: - default: *133 + default: *132 '403': *27 '404': *6 x-github: @@ -52156,7 +52056,7 @@ paths: application/json: schema: *333 examples: - default: *133 + default: *132 responses: '204': description: Empty response for successful settings update @@ -52187,9 +52087,9 @@ paths: description: Response content: application/json: - schema: *135 + schema: *134 examples: - default: *136 + default: *135 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -52217,9 +52117,9 @@ paths: required: false content: application/json: - schema: *135 + schema: *134 examples: - selected_actions: *136 + selected_actions: *135 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -52250,7 +52150,7 @@ paths: application/json: schema: *334 examples: - default: *140 + default: *139 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -52285,7 +52185,7 @@ paths: application/json: schema: *335 examples: - default: *140 + default: *139 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -52331,9 +52231,9 @@ paths: type: integer runners: type: array - items: *147 + items: *146 examples: - default: *148 + default: *147 headers: Link: *57 x-github: @@ -52472,7 +52372,7 @@ paths: description: Response content: application/json: - schema: *149 + schema: *148 examples: default: *339 x-github: @@ -52509,7 +52409,7 @@ paths: description: Response content: application/json: - schema: *149 + schema: *148 examples: default: *340 x-github: @@ -52535,13 +52435,13 @@ paths: parameters: - *308 - *309 - - *146 + - *145 responses: '200': description: Response content: application/json: - schema: *147 + schema: *146 examples: default: *341 x-github: @@ -52566,7 +52466,7 @@ paths: parameters: - *308 - *309 - - *146 + - *145 responses: '204': description: Response @@ -52594,9 +52494,9 @@ paths: parameters: - *308 - *309 - - *146 + - *145 responses: - '200': *151 + '200': *150 '404': *6 x-github: githubCloudOnly: false @@ -52620,7 +52520,7 @@ paths: parameters: - *308 - *309 - - *146 + - *145 requestBody: required: true content: @@ -52644,7 +52544,7 @@ paths: - gpu - accelerated responses: - '200': *151 + '200': *150 '404': *6 '422': *7 x-github: @@ -52670,7 +52570,7 @@ paths: parameters: - *308 - *309 - - *146 + - *145 requestBody: required: true content: @@ -52695,7 +52595,7 @@ paths: - gpu - accelerated responses: - '200': *151 + '200': *150 '404': *6 '422': *7 x-github: @@ -52721,7 +52621,7 @@ paths: parameters: - *308 - *309 - - *146 + - *145 responses: '200': *342 '404': *6 @@ -52752,10 +52652,10 @@ paths: parameters: - *308 - *309 - - *146 + - *145 - *343 responses: - '200': *151 + '200': *150 '404': *6 '422': *7 x-github: @@ -53134,8 +53034,8 @@ paths: - timestamp - author - committer - repository: *145 - head_repository: *145 + repository: *144 + head_repository: *144 head_repository_id: type: integer examples: @@ -53832,7 +53732,7 @@ paths: description: Response content: application/json: - schema: *154 + schema: *153 examples: default: value: @@ -54122,7 +54022,7 @@ paths: description: Response content: application/json: - schema: *154 + schema: *153 examples: default: value: @@ -54226,7 +54126,7 @@ paths: description: Response content: application/json: - schema: *154 + schema: *153 examples: default: value: @@ -54348,7 +54248,7 @@ paths: '204': description: Response '403': *27 - '500': *105 + '500': *104 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -54452,7 +54352,7 @@ paths: reviewer: anyOf: - *4 - - *180 + - *179 required: - environment - wait_timer @@ -54771,7 +54671,7 @@ paths: description: Response content: application/json: - schema: *154 + schema: *153 examples: default: value: @@ -54818,7 +54718,7 @@ paths: description: Response content: application/json: - schema: *154 + schema: *153 examples: default: value: @@ -55068,7 +54968,7 @@ paths: parameters: - *308 - *309 - - *153 + - *152 responses: '200': description: Response @@ -55104,7 +55004,7 @@ paths: parameters: - *308 - *309 - - *153 + - *152 requestBody: required: true content: @@ -55135,7 +55035,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *154 + schema: *153 examples: default: value: @@ -55163,7 +55063,7 @@ paths: parameters: - *308 - *309 - - *153 + - *152 responses: '204': description: Response @@ -55260,7 +55160,7 @@ paths: description: Response content: application/json: - schema: *154 + schema: *153 examples: default: value: @@ -55287,7 +55187,7 @@ paths: parameters: - *308 - *309 - - *156 + - *155 responses: '200': description: Response @@ -55323,7 +55223,7 @@ paths: parameters: - *308 - *309 - - *156 + - *155 requestBody: required: true content: @@ -55367,7 +55267,7 @@ paths: parameters: - *308 - *309 - - *156 + - *155 responses: '204': description: Response @@ -56666,7 +56566,7 @@ paths: description: The list of teams with review dismissal access. type: array - items: *180 + items: *179 apps: description: The list of apps with review dismissal access. @@ -56698,7 +56598,7 @@ paths: description: The list of teams allowed to bypass pull request requirements. type: array - items: *180 + items: *179 apps: description: The list of apps allowed to bypass pull request requirements. @@ -56791,7 +56691,7 @@ paths: type: string teams: type: array - items: *180 + items: *179 apps: type: array items: @@ -57165,14 +57065,14 @@ paths: author: oneOf: - *4 - - *154 + - *153 type: - 'null' - object committer: oneOf: - *4 - - *154 + - *153 type: - 'null' - object @@ -57981,7 +57881,7 @@ paths: items: *4 teams: type: array - items: *180 + items: *179 apps: type: array items: *5 @@ -57999,7 +57899,7 @@ paths: items: *4 teams: type: array - items: *180 + items: *179 apps: type: array items: *5 @@ -59388,9 +59288,9 @@ paths: application/json: schema: type: array - items: *180 + items: *179 examples: - default: *232 + default: *231 '404': *6 x-github: githubCloudOnly: false @@ -59448,9 +59348,9 @@ paths: application/json: schema: type: array - items: *180 + items: *179 examples: - default: *232 + default: *231 '422': *15 x-github: githubCloudOnly: false @@ -59509,9 +59409,9 @@ paths: application/json: schema: type: array - items: *180 + items: *179 examples: - default: *232 + default: *231 '422': *15 x-github: githubCloudOnly: false @@ -59569,9 +59469,9 @@ paths: application/json: schema: type: array - items: *180 + items: *179 examples: - default: *232 + default: *231 '422': *15 x-github: githubCloudOnly: false @@ -60367,7 +60267,7 @@ paths: check. type: array items: *75 - deployment: &695 + deployment: &693 title: Deployment description: A deployment created as the result of an Actions check run from a workflow that references an environment @@ -61154,7 +61054,7 @@ paths: description: Response content: application/json: - schema: *154 + schema: *153 examples: default: value: @@ -61302,7 +61202,7 @@ paths: anyOf: - type: 'null' - *5 - repository: *145 + repository: *144 created_at: type: - string @@ -61715,7 +61615,7 @@ paths: required: - app_id - setting - repository: *145 + repository: *144 examples: default: value: @@ -62163,7 +62063,7 @@ paths: description: Response content: application/json: - schema: *154 + schema: *153 examples: default: value: @@ -62254,19 +62154,19 @@ paths: items: type: object properties: - number: *163 - created_at: *164 - updated_at: *165 - url: *166 - html_url: *167 + number: *162 + created_at: *163 + updated_at: *164 + url: *165 + html_url: *166 instances_url: *398 - state: *172 - fixed_at: *168 + state: *171 + fixed_at: *167 dismissed_by: anyOf: - type: 'null' - *4 - dismissed_at: *169 + dismissed_at: *168 dismissed_reason: *399 dismissed_comment: *400 rule: *401 @@ -62401,7 +62301,7 @@ paths: application/json: schema: *3 '404': *6 - '503': *106 + '503': *105 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -62431,7 +62331,7 @@ paths: field in the response from the `GET /repos/{owner}/{repo}/code-scanning/alerts` operation. required: true - schema: *163 + schema: *162 responses: '200': description: Response @@ -62440,19 +62340,19 @@ paths: schema: &406 type: object properties: - number: *163 - created_at: *164 - updated_at: *165 - url: *166 - html_url: *167 + number: *162 + created_at: *163 + updated_at: *164 + url: *165 + html_url: *166 instances_url: *398 - state: *172 - fixed_at: *168 + state: *171 + fixed_at: *167 dismissed_by: anyOf: - type: 'null' - *4 - dismissed_at: *169 + dismissed_at: *168 dismissed_reason: *399 dismissed_comment: *400 rule: @@ -62615,7 +62515,7 @@ paths: '304': *35 '403': *404 '404': *6 - '503': *106 + '503': *105 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -62762,7 +62662,7 @@ paths: application/json: schema: *3 '404': *6 - '503': *106 + '503': *105 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -62836,7 +62736,7 @@ paths: status: '400' '403': *404 '404': *6 - '503': *106 + '503': *105 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -62891,7 +62791,7 @@ paths: '404': *6 '422': description: Unprocessable Entity - '503': *106 + '503': *105 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -62966,7 +62866,7 @@ paths: '404': *6 '422': description: Unprocessable Entity - '503': *106 + '503': *105 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -63072,7 +62972,7 @@ paths: - source '403': *404 '404': *6 - '503': *106 + '503': *105 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -63250,7 +63150,7 @@ paths: warning: '' '403': *404 '404': *6 - '503': *106 + '503': *105 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -63359,7 +63259,7 @@ paths: content: application/json: schema: *3 - '503': *106 + '503': *105 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -63498,7 +63398,7 @@ paths: '400': *14 '403': *410 '404': *6 - '503': *106 + '503': *105 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -63641,7 +63541,7 @@ paths: commit_oid: 1927de39fefa25a9d0e64e3f540ff824a72f538c '403': *404 '404': *6 - '503': *106 + '503': *105 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -63717,7 +63617,7 @@ paths: description: Found '403': *404 '404': *6 - '503': *106 + '503': *105 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -63750,7 +63650,7 @@ paths: description: Response '403': *410 '404': *6 - '503': *106 + '503': *105 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -64209,7 +64109,7 @@ paths: content: application/json: schema: *3 - '503': *106 + '503': *105 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -64247,7 +64147,7 @@ paths: examples: default: *424 '404': *6 - '503': *106 + '503': *105 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -64407,7 +64307,7 @@ paths: source_location_prefix: "/" artifact_url: https://example.com '404': *6 - '503': *106 + '503': *105 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -64524,7 +64424,7 @@ paths: schedule: weekly '403': *404 '404': *6 - '503': *106 + '503': *105 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -64613,7 +64513,7 @@ paths: description: Response content: application/json: - schema: *154 + schema: *153 examples: default: value: @@ -64652,7 +64552,7 @@ paths: content: application/json: schema: *3 - '503': *106 + '503': *105 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -64796,7 +64696,7 @@ paths: '404': *6 '413': description: Payload Too Large if the sarif field is too large - '503': *106 + '503': *105 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -64867,7 +64767,7 @@ paths: '403': *404 '404': description: Not Found if the sarif id does not match any upload - '503': *106 + '503': *105 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -64946,7 +64846,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': *176 + '204': *175 '304': *35 '403': *27 '404': *6 @@ -65117,7 +65017,7 @@ paths: type: integer codespaces: type: array - items: *221 + items: *220 examples: default: value: @@ -65393,7 +65293,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': *105 + '500': *104 '401': *23 '403': *27 '404': *6 @@ -65480,7 +65380,7 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *221 + schema: *220 examples: default: *428 '202': @@ -65488,14 +65388,14 @@ paths: being retried in the background content: application/json: - schema: *221 + schema: *220 examples: default: *428 '400': *14 '401': *23 '403': *27 '404': *6 - '503': *106 + '503': *105 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -65560,7 +65460,7 @@ paths: - path: ".devcontainer.json" display_name: Default project configuration total_count: 3 - '500': *105 + '500': *104 '400': *14 '401': *23 '403': *27 @@ -65624,7 +65524,7 @@ paths: type: array items: *429 examples: - default: &641 + default: &639 value: total_count: 2 machines: @@ -65641,7 +65541,7 @@ paths: memory_in_bytes: 34359738368 cpus: 8 '304': *35 - '500': *105 + '500': *104 '401': *23 '403': *27 '404': *6 @@ -65801,7 +65701,7 @@ paths: '403': *27 '404': *6 '422': *15 - '503': *106 + '503': *105 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -65916,7 +65816,7 @@ paths: parameters: - *308 - *309 - - *153 + - *152 responses: '200': description: Response @@ -65946,7 +65846,7 @@ paths: parameters: - *308 - *309 - - *153 + - *152 requestBody: required: true content: @@ -65974,7 +65874,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *154 + schema: *153 examples: default: value: @@ -66000,7 +65900,7 @@ paths: parameters: - *308 - *309 - - *153 + - *152 responses: '204': description: Response @@ -66348,7 +66248,7 @@ paths: format: int64 examples: - 42 - repository: *145 + repository: *144 invitee: anyOf: - type: 'null' @@ -66524,7 +66424,7 @@ paths: - an Enterprise Managed User (EMU) account was invited to a repository in an enterprise with personal user accounts content: application/json: - schema: *114 + schema: *113 '403': *27 x-github: triggersNotification: true @@ -67289,7 +67189,7 @@ paths: type: array items: *439 examples: - default: &553 + default: &551 value: - url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -67360,7 +67260,7 @@ paths: sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e headers: Link: *57 - '500': *105 + '500': *104 '400': *14 '404': *6 '409': *50 @@ -67580,7 +67480,7 @@ paths: type: array items: *443 examples: - default: &545 + default: &543 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -68224,8 +68124,8 @@ paths: ..... '422': *15 '404': *6 - '500': *105 - '503': *106 + '500': *104 + '503': *105 '409': *50 x-github: githubCloudOnly: false @@ -68617,7 +68517,7 @@ paths: type: string total_count: type: integer - repository: *145 + repository: *144 commit_url: type: string format: uri @@ -68760,7 +68660,7 @@ paths: application/json: schema: type: array - items: &618 + items: &616 title: Status description: The status of a commit. type: object @@ -69388,8 +69288,8 @@ paths: patch: "@@ -132,7 +132,7 @@ module Test @@ -1000,7 +1000,7 @@ module Test" '404': *6 - '500': *105 - '503': *106 + '500': *104 + '503': *105 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -69722,7 +69622,7 @@ paths: - size - type - url - - &558 + - &556 title: Content File description: Content File type: object @@ -70359,7 +70259,7 @@ paths: items: type: object properties: - placeholder_id: &610 + placeholder_id: &608 description: The ID of the push protection bypass placeholder. This value is returned on any push protected routes. @@ -70488,7 +70388,7 @@ paths: '422': *15 '404': *6 '409': *50 - '503': *106 + '503': *105 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -70635,20 +70535,20 @@ paths: parameters: - *308 - *309 + - *180 - *181 - *182 - *183 - - *184 - 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 - - *185 + - *184 - *454 + - *185 - *186 - - *187 - *51 - name: per_page description: The number of results per page (max 100). For more information, @@ -70671,7 +70571,7 @@ paths: type: object description: A Dependabot alert. properties: - number: *163 + number: *162 state: type: string description: The state of the Dependabot alert. @@ -70719,11 +70619,11 @@ paths: - security_advisory: *455 security_vulnerability: *55 - url: *166 - html_url: *167 - created_at: *164 - updated_at: *165 - dismissed_at: *169 + url: *165 + html_url: *166 + created_at: *163 + updated_at: *164 + dismissed_at: *168 dismissed_by: anyOf: - type: 'null' @@ -70747,7 +70647,7 @@ paths: description: An optional comment associated with the alert's dismissal. maxLength: 280 - fixed_at: *168 + fixed_at: *167 auto_dismissed_at: *456 dismissal_request: *457 required: @@ -70990,7 +70890,7 @@ paths: or in `number` fields in the response from the `GET /repos/{owner}/{repo}/dependabot/alerts` operation. required: true - schema: *163 + schema: *162 responses: '200': description: Response @@ -71389,7 +71289,7 @@ paths: parameters: - *308 - *309 - - *153 + - *152 responses: '200': description: Response @@ -71423,7 +71323,7 @@ paths: parameters: - *308 - *309 - - *153 + - *152 requestBody: required: true content: @@ -71451,7 +71351,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *154 + schema: *153 examples: default: value: @@ -71477,7 +71377,7 @@ paths: parameters: - *308 - *309 - - *153 + - *152 responses: '204': description: Response @@ -73110,7 +73010,7 @@ paths: reviewer: anyOf: - *4 - - *180 + - *179 required: - id - node_id @@ -74165,7 +74065,7 @@ paths: - *308 - *309 - *471 - - *153 + - *152 responses: '200': description: Response @@ -74198,7 +74098,7 @@ paths: - *308 - *309 - *471 - - *153 + - *152 requestBody: required: true content: @@ -74229,7 +74129,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *154 + schema: *153 examples: default: value: @@ -74258,7 +74158,7 @@ paths: - *308 - *309 - *471 - - *153 + - *152 responses: '204': description: Default response @@ -74357,7 +74257,7 @@ paths: description: Response content: application/json: - schema: *154 + schema: *153 examples: default: value: @@ -74385,7 +74285,7 @@ paths: - *308 - *309 - *471 - - *156 + - *155 responses: '200': description: Response @@ -74416,7 +74316,7 @@ paths: parameters: - *308 - *309 - - *156 + - *155 - *471 requestBody: required: true @@ -74461,7 +74361,7 @@ paths: parameters: - *308 - *309 - - *156 + - *155 - *471 responses: '204': @@ -74576,7 +74476,7 @@ paths: application/json: schema: type: array - items: *145 + items: *144 examples: default: value: @@ -74830,7 +74730,7 @@ paths: application/json: schema: oneOf: - - *114 + - *113 - *484 x-github: githubCloudOnly: false @@ -76237,7 +76137,7 @@ paths: format: uri examples: - https://api.github.com/repos/octocat/Hello-World/hooks/1/deliveries - last_response: &726 + last_response: &724 title: Hook Response type: object properties: @@ -76420,7 +76320,7 @@ paths: parameters: - *308 - *309 - - *193 + - *192 responses: '200': description: Response @@ -76450,7 +76350,7 @@ paths: parameters: - *308 - *309 - - *193 + - *192 requestBody: required: true content: @@ -76520,7 +76420,7 @@ paths: parameters: - *308 - *309 - - *193 + - *192 responses: '204': description: Response @@ -76546,7 +76446,7 @@ paths: parameters: - *308 - *309 - - *193 + - *192 responses: '200': description: Response @@ -76575,7 +76475,7 @@ paths: parameters: - *308 - *309 - - *193 + - *192 requestBody: required: false content: @@ -76621,9 +76521,9 @@ paths: parameters: - *308 - *309 - - *193 + - *192 - *17 - - *194 + - *193 responses: '200': description: Response @@ -76631,9 +76531,9 @@ paths: application/json: schema: type: array - items: *195 + items: *194 examples: - default: *196 + default: *195 '400': *14 '422': *15 x-github: @@ -76654,16 +76554,16 @@ paths: parameters: - *308 - *309 - - *193 + - *192 - *16 responses: '200': description: Response content: application/json: - schema: *197 + schema: *196 examples: - default: *198 + default: *197 '400': *14 '422': *15 x-github: @@ -76684,7 +76584,7 @@ paths: parameters: - *308 - *309 - - *193 + - *192 - *16 responses: '202': *37 @@ -76709,7 +76609,7 @@ paths: parameters: - *308 - *309 - - *193 + - *192 responses: '204': description: Response @@ -76736,7 +76636,7 @@ paths: parameters: - *308 - *309 - - *193 + - *192 responses: '204': description: Response @@ -76811,7 +76711,7 @@ paths: - *308 - *309 responses: - '204': *176 + '204': *175 '409': *50 x-github: githubCloudOnly: false @@ -76832,7 +76732,7 @@ paths: - *308 - *309 responses: - '204': *176 + '204': *175 '409': *50 x-github: githubCloudOnly: false @@ -77305,7 +77205,7 @@ paths: parameters: - *308 - *309 - - &662 + - &660 name: since description: A user ID. Only return users with an ID greater than this ID. in: query @@ -77630,7 +77530,7 @@ paths: application/json: schema: anyOf: - - *211 + - *210 - type: object properties: {} additionalProperties: false @@ -77678,7 +77578,7 @@ paths: description: Response content: application/json: - schema: *211 + schema: *210 examples: default: *501 '409': @@ -77739,7 +77639,7 @@ paths: type: array items: *502 examples: - default: &655 + default: &653 value: - id: 1 repository: @@ -77872,7 +77772,7 @@ paths: parameters: - *308 - *309 - - *215 + - *214 requestBody: required: false content: @@ -78034,7 +77934,7 @@ paths: parameters: - *308 - *309 - - *215 + - *214 responses: '204': description: Response @@ -78114,7 +78014,7 @@ paths: required: false schema: type: string - - *219 + - *218 - name: sort description: What to sort results by. in: query @@ -78563,7 +78463,7 @@ paths: '400': *14 '403': *27 '422': *15 - '503': *106 + '503': *105 '404': *6 '410': *503 x-github: @@ -79035,7 +78935,7 @@ paths: anyOf: - type: 'null' - *4 - requested_team: *180 + requested_team: *179 dismissed_review: title: Issue Event Dismissed Review type: object @@ -79701,7 +79601,7 @@ paths: examples: default: *509 '422': *15 - '503': *106 + '503': *105 '403': *27 '301': *312 '404': *6 @@ -80530,7 +80430,7 @@ paths: - type: 'null' - *5 review_requester: *4 - requested_team: *180 + requested_team: *179 requested_reviewer: *4 required: - review_requester @@ -80572,7 +80472,7 @@ paths: - type: 'null' - *5 review_requester: *4 - requested_team: *180 + requested_team: *179 requested_reviewer: *4 required: - review_requester @@ -81734,7 +81634,7 @@ paths: '403': *27 '404': *6 '422': *7 - '503': *106 + '503': *105 x-github: triggersNotification: true githubCloudOnly: false @@ -82110,7 +82010,7 @@ paths: type: string comments: type: array - items: &547 + items: &545 title: Pull Request Review Comment description: Pull Request Review Comments are comments on a portion of the Pull Request's diff. @@ -83439,7 +83339,7 @@ paths: application/json: schema: type: array - items: *252 + items: *251 examples: default: value: @@ -83536,7 +83436,7 @@ paths: description: Response content: application/json: - schema: *252 + schema: *251 examples: default: &532 value: @@ -83611,7 +83511,7 @@ paths: description: Response content: application/json: - schema: *252 + schema: *251 examples: default: *532 '404': *6 @@ -83670,7 +83570,7 @@ paths: description: Response content: application/json: - schema: *252 + schema: *251 examples: default: *532 x-github: @@ -84660,7 +84560,7 @@ paths: - *309 - *542 responses: - '204': *176 + '204': *175 '404': *6 x-github: githubCloudOnly: false @@ -84954,7 +84854,7 @@ paths: description: Empty response content: application/json: - schema: *154 + schema: *153 examples: default: value: @@ -85022,7 +84922,7 @@ paths: - *308 - *309 responses: - '204': *176 + '204': *175 '422': *14 x-github: githubCloudOnly: false @@ -85044,7 +84944,7 @@ paths: - *308 - *309 responses: - '204': *176 + '204': *175 '422': *14 x-github: githubCloudOnly: false @@ -85073,9 +84973,16 @@ paths: application/json: schema: type: array - items: *104 + items: *264 examples: - default: *543 + default: + value: + - property_name: environment + value: production + - property_name: service + value: web + - property_name: team + value: octocat '403': *27 '404': *6 x-github: @@ -85110,11 +85017,19 @@ paths: type: array description: A list of custom property names and associated values to apply to the repositories. - items: *104 + items: *264 required: - properties examples: - default: *544 + 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 @@ -85215,7 +85130,7 @@ paths: type: array items: *443 examples: - default: *545 + default: *543 headers: Link: *57 '304': *35 @@ -85315,7 +85230,7 @@ paths: description: Response content: application/json: - schema: &549 + schema: &547 type: object title: Pull Request description: Pull requests let you tell others about changes you've @@ -85444,7 +85359,7 @@ paths: milestone: anyOf: - type: 'null' - - *252 + - *251 active_lock_reason: type: - string @@ -85499,7 +85414,7 @@ paths: type: - array - 'null' - items: *231 + items: *230 head: type: object properties: @@ -85537,14 +85452,14 @@ paths: _links: type: object properties: - comments: *253 - commits: *253 - statuses: *253 - html: *253 - issue: *253 - review_comments: *253 - review_comment: *253 - self: *253 + comments: *252 + commits: *252 + statuses: *252 + html: *252 + issue: *252 + review_comments: *252 + review_comment: *252 + self: *252 required: - comments - commits @@ -85555,7 +85470,7 @@ paths: - review_comment - self author_association: *72 - auto_merge: *546 + auto_merge: *544 draft: description: Indicates whether or not the pull request is a draft. type: boolean @@ -85657,7 +85572,7 @@ paths: - merged_by - review_comments examples: - default: &550 + default: &548 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -86214,9 +86129,9 @@ paths: application/json: schema: type: array - items: *547 + items: *545 examples: - default: &552 + default: &550 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -86301,9 +86216,9 @@ paths: description: Response content: application/json: - schema: *547 + schema: *545 examples: - default: &548 + default: &546 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -86402,9 +86317,9 @@ paths: description: Response content: application/json: - schema: *547 + schema: *545 examples: - default: *548 + default: *546 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -86607,7 +86522,7 @@ paths: parameters: - *308 - *309 - - &551 + - &549 name: pull_number description: The number that identifies the pull request. in: path @@ -86620,9 +86535,9 @@ paths: to fetch diff and patch formats. content: application/json: - schema: *549 + schema: *547 examples: - default: *550 + default: *548 '304': *35 '404': *6 '406': @@ -86630,8 +86545,8 @@ paths: content: application/json: schema: *3 - '500': *105 - '503': *106 + '500': *104 + '503': *105 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -86659,7 +86574,7 @@ paths: parameters: - *308 - *309 - - *551 + - *549 requestBody: required: false content: @@ -86701,9 +86616,9 @@ paths: description: Response content: application/json: - schema: *549 + schema: *547 examples: - default: *550 + default: *548 '422': *15 '403': *27 x-github: @@ -86727,7 +86642,7 @@ paths: parameters: - *308 - *309 - - *551 + - *549 requestBody: required: true content: @@ -86788,7 +86703,7 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *221 + schema: *220 examples: default: *428 '202': @@ -86796,13 +86711,13 @@ paths: being retried in the background content: application/json: - schema: *221 + schema: *220 examples: default: *428 '401': *23 '403': *27 '404': *6 - '503': *106 + '503': *105 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -86830,7 +86745,7 @@ paths: parameters: - *308 - *309 - - *551 + - *549 - *94 - name: direction description: The direction to sort results. Ignored without `sort` parameter. @@ -86851,9 +86766,9 @@ paths: application/json: schema: type: array - items: *547 + items: *545 examples: - default: *552 + default: *550 headers: Link: *57 x-github: @@ -86888,7 +86803,7 @@ paths: parameters: - *308 - *309 - - *551 + - *549 requestBody: required: true content: @@ -86994,7 +86909,7 @@ paths: description: Response content: application/json: - schema: *547 + schema: *545 examples: example-for-a-multi-line-comment: value: @@ -87084,7 +86999,7 @@ paths: parameters: - *308 - *309 - - *551 + - *549 - *86 requestBody: required: true @@ -87107,7 +87022,7 @@ paths: description: Response content: application/json: - schema: *547 + schema: *545 examples: default: value: @@ -87195,7 +87110,7 @@ paths: parameters: - *308 - *309 - - *551 + - *549 - *17 - *19 responses: @@ -87207,7 +87122,7 @@ paths: type: array items: *439 examples: - default: *553 + default: *551 headers: Link: *57 x-github: @@ -87239,7 +87154,7 @@ paths: parameters: - *308 - *309 - - *551 + - *549 - *17 - *19 responses: @@ -87267,8 +87182,8 @@ paths: headers: Link: *57 '422': *15 - '500': *105 - '503': *106 + '500': *104 + '503': *105 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -87289,7 +87204,7 @@ paths: parameters: - *308 - *309 - - *551 + - *549 responses: '204': description: Response if pull request has been merged @@ -87314,7 +87229,7 @@ paths: parameters: - *308 - *309 - - *551 + - *549 requestBody: required: false content: @@ -87428,7 +87343,7 @@ paths: parameters: - *308 - *309 - - *551 + - *549 responses: '200': description: Response @@ -87444,7 +87359,7 @@ paths: items: *4 teams: type: array - items: *180 + items: *179 required: - users - teams @@ -87505,7 +87420,7 @@ paths: parameters: - *308 - *309 - - *551 + - *549 requestBody: required: false content: @@ -88080,7 +87995,7 @@ paths: parameters: - *308 - *309 - - *551 + - *549 requestBody: required: true content: @@ -88621,7 +88536,7 @@ paths: parameters: - *308 - *309 - - *551 + - *549 - *17 - *19 responses: @@ -88631,7 +88546,7 @@ paths: application/json: schema: type: array - items: &554 + items: &552 title: Pull Request Review description: Pull Request Reviews are reviews on pull requests. type: object @@ -88789,7 +88704,7 @@ paths: parameters: - *308 - *309 - - *551 + - *549 requestBody: required: false content: @@ -88879,9 +88794,9 @@ paths: description: Response content: application/json: - schema: *554 + schema: *552 examples: - default: &556 + default: &554 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -88946,8 +88861,8 @@ paths: parameters: - *308 - *309 - - *551 - - &555 + - *549 + - &553 name: review_id description: The unique identifier of the review. in: path @@ -88959,9 +88874,9 @@ paths: description: Response content: application/json: - schema: *554 + schema: *552 examples: - default: &557 + default: &555 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -89022,8 +88937,8 @@ paths: parameters: - *308 - *309 - - *551 - - *555 + - *549 + - *553 requestBody: required: true content: @@ -89046,7 +88961,7 @@ paths: description: Response content: application/json: - schema: *554 + schema: *552 examples: default: value: @@ -89110,16 +89025,16 @@ paths: parameters: - *308 - *309 - - *551 - - *555 + - *549 + - *553 responses: '200': description: Response content: application/json: - schema: *554 + schema: *552 examples: - default: *556 + default: *554 '422': *7 '404': *6 x-github: @@ -89148,8 +89063,8 @@ paths: parameters: - *308 - *309 - - *551 - - *555 + - *549 + - *553 - *17 - *19 responses: @@ -89247,9 +89162,9 @@ paths: _links: type: object properties: - self: *253 - html: *253 - pull_request: *253 + self: *252 + html: *252 + pull_request: *252 required: - self - html @@ -89409,8 +89324,8 @@ paths: parameters: - *308 - *309 - - *551 - - *555 + - *549 + - *553 requestBody: required: true content: @@ -89439,7 +89354,7 @@ paths: description: Response content: application/json: - schema: *554 + schema: *552 examples: default: value: @@ -89504,8 +89419,8 @@ paths: parameters: - *308 - *309 - - *551 - - *555 + - *549 + - *553 requestBody: required: true content: @@ -89540,9 +89455,9 @@ paths: description: Response content: application/json: - schema: *554 + schema: *552 examples: - default: *557 + default: *555 '404': *6 '422': *7 '403': *27 @@ -89566,7 +89481,7 @@ paths: parameters: - *308 - *309 - - *551 + - *549 requestBody: required: false content: @@ -89644,9 +89559,9 @@ paths: description: Response content: application/json: - schema: *558 + schema: *556 examples: - default: &559 + default: &557 value: type: file encoding: base64 @@ -89709,9 +89624,9 @@ paths: description: Response content: application/json: - schema: *558 + schema: *556 examples: - default: *559 + default: *557 '404': *6 '422': *15 x-github: @@ -89744,7 +89659,7 @@ paths: application/json: schema: type: array - items: *560 + items: *558 examples: default: value: @@ -89915,9 +89830,9 @@ paths: description: Response content: application/json: - schema: *560 + schema: *558 examples: - default: &564 + default: &562 value: url: https://api.github.com/repos/octocat/Hello-World/releases/1 html_url: https://github.com/octocat/Hello-World/releases/v1.0.0 @@ -90024,7 +89939,7 @@ paths: parameters: - *308 - *309 - - &562 + - &560 name: asset_id description: The unique identifier of the asset. in: path @@ -90036,9 +89951,9 @@ paths: description: Response content: application/json: - schema: *561 + schema: *559 examples: - default: &563 + default: &561 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 @@ -90091,7 +90006,7 @@ paths: parameters: - *308 - *309 - - *562 + - *560 requestBody: required: false content: @@ -90120,9 +90035,9 @@ paths: description: Response content: application/json: - schema: *561 + schema: *559 examples: - default: *563 + default: *561 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -90140,7 +90055,7 @@ paths: parameters: - *308 - *309 - - *562 + - *560 responses: '204': description: Response @@ -90258,9 +90173,9 @@ paths: description: Response content: application/json: - schema: *560 + schema: *558 examples: - default: *564 + default: *562 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -90291,9 +90206,9 @@ paths: description: Response content: application/json: - schema: *560 + schema: *558 examples: - default: *564 + default: *562 '404': *6 x-github: githubCloudOnly: false @@ -90317,7 +90232,7 @@ paths: parameters: - *308 - *309 - - &565 + - &563 name: release_id description: The unique identifier of the release. in: path @@ -90331,9 +90246,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: *560 + schema: *558 examples: - default: *564 + default: *562 '401': description: Unauthorized x-github: @@ -90353,7 +90268,7 @@ paths: parameters: - *308 - *309 - - *565 + - *563 requestBody: required: false content: @@ -90417,9 +90332,9 @@ paths: description: Response content: application/json: - schema: *560 + schema: *558 examples: - default: *564 + default: *562 '404': description: Not Found if the discussion category name is invalid content: @@ -90442,7 +90357,7 @@ paths: parameters: - *308 - *309 - - *565 + - *563 responses: '204': description: Response @@ -90464,7 +90379,7 @@ paths: parameters: - *308 - *309 - - *565 + - *563 - *17 - *19 responses: @@ -90474,7 +90389,7 @@ paths: application/json: schema: type: array - items: *561 + items: *559 examples: default: value: @@ -90557,7 +90472,7 @@ paths: parameters: - *308 - *309 - - *565 + - *563 - name: name in: query required: true @@ -90583,7 +90498,7 @@ paths: description: Response for successful upload content: application/json: - schema: *561 + schema: *559 examples: response-for-successful-upload: value: @@ -90640,7 +90555,7 @@ paths: parameters: - *308 - *309 - - *565 + - *563 - 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. @@ -90689,7 +90604,7 @@ paths: parameters: - *308 - *309 - - *565 + - *563 requestBody: required: true content: @@ -90752,7 +90667,7 @@ paths: parameters: - *308 - *309 - - *565 + - *563 - *507 responses: '204': @@ -90796,7 +90711,7 @@ paths: oneOf: - allOf: - *271 - - &566 + - &564 title: repository ruleset data for rule description: User-defined metadata to store domain-specific information limited to 8 keys with scalar values. @@ -90817,67 +90732,67 @@ paths: description: The ID of the ruleset that includes this rule. - allOf: - *272 - - *566 + - *564 - allOf: - *273 - - *566 + - *564 - allOf: - *274 - - *566 + - *564 - allOf: - - *567 - - *566 + - *565 + - *564 - allOf: - *275 - - *566 + - *564 - allOf: - *276 - - *566 + - *564 - allOf: - *277 - - *566 + - *564 - allOf: - *278 - - *566 + - *564 - allOf: - *279 - - *566 + - *564 - allOf: - *280 - - *566 + - *564 - allOf: - *281 - - *566 + - *564 - allOf: - *282 - - *566 + - *564 - allOf: - *283 - - *566 + - *564 - allOf: - *284 - - *566 + - *564 - allOf: - *285 - - *566 + - *564 - allOf: - *286 - - *566 + - *564 - allOf: - *287 - - *566 + - *564 - allOf: - *288 - - *566 + - *564 - allOf: - *289 - - *566 + - *564 - allOf: - *290 - - *566 + - *564 - allOf: - *291 - - *566 + - *564 examples: default: value: @@ -90928,7 +90843,7 @@ paths: schema: type: boolean default: true - - *568 + - *566 responses: '200': description: Response @@ -90967,7 +90882,7 @@ paths: created_at: '2023-08-15T08:43:03Z' updated_at: '2023-09-23T16:29:47Z' '404': *6 - '500': *105 + '500': *104 post: summary: Create a repository ruleset description: Create a ruleset for a repository. @@ -91013,7 +90928,7 @@ paths: rules: type: array description: An array of rules within the ruleset. - items: *569 + items: *567 required: - name - enforcement @@ -91046,7 +90961,7 @@ paths: application/json: schema: *292 examples: - default: &579 + default: &577 value: id: 42 name: super cool ruleset @@ -91079,7 +90994,7 @@ paths: created_at: '2023-07-15T08:43:03Z' updated_at: '2023-08-23T16:29:47Z' '404': *6 - '500': *105 + '500': *104 "/repos/{owner}/{repo}/rulesets/rule-suites": get: summary: List repository rule suites @@ -91095,10 +91010,10 @@ paths: parameters: - *308 - *309 + - *568 + - *569 - *570 - *571 - - *572 - - *573 - *17 - *19 responses: @@ -91106,11 +91021,11 @@ paths: description: Response content: application/json: - schema: *574 + schema: *572 examples: - default: *575 + default: *573 '404': *6 - '500': *105 + '500': *104 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -91131,17 +91046,17 @@ paths: parameters: - *308 - *309 - - *576 + - *574 responses: '200': description: Response content: application/json: - schema: *577 + schema: *575 examples: - default: *578 + default: *576 '404': *6 - '500': *105 + '500': *104 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -91190,9 +91105,9 @@ paths: application/json: schema: *292 examples: - default: *579 + default: *577 '404': *6 - '500': *105 + '500': *104 put: summary: Update a repository ruleset description: Update a ruleset for a repository. @@ -91243,7 +91158,7 @@ paths: rules: description: An array of rules within the ruleset. type: array - items: *569 + items: *567 examples: default: value: @@ -91273,9 +91188,9 @@ paths: application/json: schema: *292 examples: - default: *579 + default: *577 '404': *6 - '500': *105 + '500': *104 delete: summary: Delete a repository ruleset description: Delete a ruleset for a repository. @@ -91303,7 +91218,7 @@ paths: '204': description: Response '404': *6 - '500': *105 + '500': *104 "/repos/{owner}/{repo}/rulesets/{ruleset_id}/history": get: summary: Get repository ruleset history @@ -91334,9 +91249,9 @@ paths: type: array items: *295 examples: - default: *580 + default: *578 '404': *6 - '500': *105 + '500': *104 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -91372,7 +91287,7 @@ paths: description: Response content: application/json: - schema: *581 + schema: *579 examples: default: value: @@ -91405,7 +91320,7 @@ paths: operator: contains pattern: github '404': *6 - '500': *105 + '500': *104 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -91429,20 +91344,20 @@ paths: parameters: - *308 - *309 + - *580 + - *581 - *582 - *583 - *584 - - *585 - - *586 - *51 - *19 - *17 + - *585 + - *586 - *587 - *588 - *589 - *590 - - *591 - - *592 responses: '200': description: Response @@ -91450,24 +91365,24 @@ paths: application/json: schema: type: array - items: &596 + items: &594 type: object properties: - number: *163 - created_at: *164 + number: *162 + created_at: *163 updated_at: anyOf: - type: 'null' - - *165 - url: *166 - html_url: *167 + - *164 + url: *165 + html_url: *166 locations_url: type: string format: uri description: The REST API URL of the code locations for this alert. - state: *593 - resolution: *594 + state: *591 + resolution: *592 resolved_at: type: - string @@ -91561,7 +91476,7 @@ paths: first_location_detected: anyOf: - type: 'null' - - *595 + - *593 has_more_locations: type: boolean description: A boolean value representing whether or not the @@ -91684,7 +91599,7 @@ paths: '404': description: Repository is public or secret scanning is disabled for the repository - '503': *106 + '503': *105 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -91709,13 +91624,13 @@ paths: - *308 - *309 - *405 - - *592 + - *590 responses: '200': description: Response content: application/json: - schema: *596 + schema: *594 examples: default: value: @@ -91746,7 +91661,7 @@ paths: '404': description: Repository is public, or secret scanning is disabled for the repository, or the resource is not found - '503': *106 + '503': *105 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -91779,8 +91694,8 @@ paths: schema: type: object properties: - state: *593 - resolution: *594 + state: *591 + resolution: *592 resolution_comment: description: An optional comment when closing or reopening an alert. Cannot be updated or deleted. @@ -91816,7 +91731,7 @@ paths: description: Response content: application/json: - schema: *596 + schema: *594 examples: default: value: @@ -91889,7 +91804,7 @@ paths: '422': description: State does not match the resolution or resolution comment, or assignee does not have write access to the repository - '503': *106 + '503': *105 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -91924,7 +91839,7 @@ paths: schema: type: array description: List of locations where the secret was detected - items: &746 + items: &744 type: object properties: type: @@ -91951,6 +91866,8 @@ paths: - commit details: oneOf: + - *595 + - *596 - *597 - *598 - *599 @@ -91962,8 +91879,6 @@ paths: - *605 - *606 - *607 - - *608 - - *609 examples: default: value: @@ -92027,7 +91942,7 @@ paths: '404': description: Repository is public, or secret scanning is disabled for the repository, or the resource is not found - '503': *106 + '503': *105 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -92058,14 +91973,14 @@ paths: schema: type: object properties: - reason: &611 + reason: &609 description: The reason for bypassing push protection. type: string enum: - false_positive - used_in_tests - will_fix_later - placeholder_id: *610 + placeholder_id: *608 required: - reason - placeholder_id @@ -92082,7 +91997,7 @@ paths: schema: type: object properties: - reason: *611 + reason: *609 expire_at: type: - string @@ -92106,7 +92021,7 @@ paths: this repository. '422': description: Bad request, input data missing or incorrect. - '503': *106 + '503': *105 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -92135,7 +92050,7 @@ paths: '404': description: Repository does not have GitHub Advanced Security or secret scanning enabled - '503': *106 + '503': *105 '200': description: Response content: @@ -92145,7 +92060,7 @@ paths: properties: incremental_scans: type: array - items: &612 + items: &610 description: Information on a single scan performed by secret scanning on the repository type: object @@ -92173,15 +92088,15 @@ paths: the scan is pending pattern_update_scans: type: array - items: *612 + items: *610 backfill_scans: type: array - items: *612 + items: *610 custom_pattern_backfill_scans: type: array items: allOf: - - *612 + - *610 - type: object properties: pattern_name: @@ -92296,9 +92211,9 @@ paths: application/json: schema: type: array - items: *613 + items: *611 examples: - default: *614 + default: *612 '400': *14 '404': *6 x-github: @@ -92492,9 +92407,9 @@ paths: description: Response content: application/json: - schema: *613 + schema: *611 examples: - default: &616 + default: &614 value: ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -92841,7 +92756,7 @@ paths: description: Response content: application/json: - schema: *613 + schema: *611 examples: default: value: @@ -92990,15 +92905,15 @@ paths: parameters: - *308 - *309 - - *615 + - *613 responses: '200': description: Response content: application/json: - schema: *613 + schema: *611 examples: - default: *616 + default: *614 '403': *27 '404': *6 x-github: @@ -93024,7 +92939,7 @@ paths: parameters: - *308 - *309 - - *615 + - *613 requestBody: required: true content: @@ -93195,17 +93110,17 @@ paths: description: Response content: application/json: - schema: *613 + schema: *611 examples: - default: *616 - add_credit: *616 + default: *614 + add_credit: *614 '403': *27 '404': *6 '422': description: Validation failed, or the endpoint has been spammed. content: application/json: - schema: *114 + schema: *113 examples: invalid_state_transition: value: @@ -93238,7 +93153,7 @@ paths: parameters: - *308 - *309 - - *615 + - *613 responses: '202': *37 '400': *14 @@ -93267,7 +93182,7 @@ paths: parameters: - *308 - *309 - - *615 + - *613 responses: '202': description: Response @@ -93408,7 +93323,7 @@ paths: application/json: schema: type: array - items: &617 + items: &615 title: Code Frequency Stat description: Code Frequency Stat type: array @@ -93421,7 +93336,7 @@ paths: - 1124 - -435 '202': *37 - '204': *176 + '204': *175 '422': description: Repository contains more than 10,000 commits x-github: @@ -93493,7 +93408,7 @@ paths: total: 89 week: 1336280400 '202': *37 - '204': *176 + '204': *175 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -93593,7 +93508,7 @@ paths: d: 77 c: 10 '202': *37 - '204': *176 + '204': *175 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -93781,7 +93696,7 @@ paths: application/json: schema: type: array - items: *617 + items: *615 examples: default: value: @@ -93794,7 +93709,7 @@ paths: - - 0 - 2 - 21 - '204': *176 + '204': *175 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -93871,7 +93786,7 @@ paths: description: Response content: application/json: - schema: *618 + schema: *616 examples: default: value: @@ -93965,7 +93880,7 @@ paths: description: if you subscribe to the repository content: application/json: - schema: &619 + schema: &617 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -94065,7 +93980,7 @@ paths: description: Response content: application/json: - schema: *619 + schema: *617 examples: default: value: @@ -94205,7 +94120,7 @@ paths: application/json: schema: type: array - items: &620 + items: &618 title: Tag protection description: Tag protection type: object @@ -94286,7 +94201,7 @@ paths: description: Response content: application/json: - schema: *620 + schema: *618 examples: default: value: @@ -94403,9 +94318,9 @@ paths: application/json: schema: type: array - items: *180 + items: *179 examples: - default: *232 + default: *231 headers: Link: *57 '404': *6 @@ -94434,7 +94349,7 @@ paths: description: Response content: application/json: - schema: &621 + schema: &619 title: Topic description: A topic aggregates entities that are related to a subject. type: object @@ -94446,7 +94361,7 @@ paths: required: - names examples: - default: &622 + default: &620 value: names: - octocat @@ -94501,9 +94416,9 @@ paths: description: Response content: application/json: - schema: *621 + schema: *619 examples: - default: *622 + default: *620 '404': *6 '422': *7 x-github: @@ -94526,7 +94441,7 @@ paths: parameters: - *308 - *309 - - &623 + - &621 name: per description: The time frame to display results for. in: query @@ -94557,7 +94472,7 @@ paths: - 128 clones: type: array - items: &624 + items: &622 title: Traffic type: object properties: @@ -94805,7 +94720,7 @@ paths: parameters: - *308 - *309 - - *623 + - *621 responses: '200': description: Response @@ -94826,7 +94741,7 @@ paths: - 3782 views: type: array - items: *624 + items: *622 required: - uniques - count @@ -94940,7 +94855,7 @@ paths: description: Response content: application/json: - schema: *145 + schema: *144 examples: default: value: @@ -95388,7 +95303,7 @@ paths: application/json: schema: type: array - items: *145 + items: *144 examples: default: value: @@ -95577,7 +95492,7 @@ paths: html_url: type: string format: uri - repository: *145 + repository: *144 score: type: number file_size: @@ -95596,7 +95511,7 @@ paths: examples: - 73..77 - 77..78 - text_matches: &625 + text_matches: &623 title: Search Result Text Matches type: array items: @@ -95711,7 +95626,7 @@ paths: releases_url: http://api.github.com/repos/octocat/Hello-World/releases{/id} score: 1 '304': *35 - '503': *106 + '503': *105 '422': *15 '403': *27 x-github: @@ -95759,7 +95674,7 @@ paths: enum: - author-date - committer-date - - &626 + - &624 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 @@ -95874,12 +95789,12 @@ paths: type: string sha: type: string - repository: *145 + repository: *144 score: type: number node_id: type: string - text_matches: *625 + text_matches: *623 required: - sha - node_id @@ -96071,7 +95986,7 @@ paths: - interactions - created - updated - - *626 + - *624 - *17 - *19 - name: advanced_search @@ -96168,11 +96083,11 @@ paths: type: - string - 'null' - sub_issues_summary: *627 - issue_dependencies_summary: *628 + sub_issues_summary: *625 + issue_dependencies_summary: *626 issue_field_values: type: array - items: *629 + items: *627 state: type: string state_reason: @@ -96186,7 +96101,7 @@ paths: milestone: anyOf: - type: 'null' - - *252 + - *251 comments: type: integer created_at: @@ -96200,7 +96115,7 @@ paths: - string - 'null' format: date-time - text_matches: *625 + text_matches: *623 pull_request: type: object properties: @@ -96249,7 +96164,7 @@ paths: timeline_url: type: string format: uri - type: *216 + type: *215 performed_via_github_app: anyOf: - type: 'null' @@ -96370,7 +96285,7 @@ paths: locked: true author_association: COLLABORATOR state_reason: completed - '503': *106 + '503': *105 '422': *15 '304': *35 '403': *27 @@ -96423,7 +96338,7 @@ paths: enum: - created - updated - - *626 + - *624 - *17 - *19 responses: @@ -96468,7 +96383,7 @@ paths: - 'null' score: type: number - text_matches: *625 + text_matches: *623 required: - id - node_id @@ -96553,7 +96468,7 @@ paths: - forks - help-wanted-issues - updated - - *626 + - *624 - *17 - *19 responses: @@ -96790,7 +96705,7 @@ paths: - admin - pull - push - text_matches: *625 + text_matches: *623 temp_clone_token: type: string allow_merge_commit: @@ -96993,7 +96908,7 @@ paths: spdx_id: MIT node_id: MDc6TGljZW5zZW1pdA== html_url: https://api.github.com/licenses/mit - '503': *106 + '503': *105 '422': *15 '304': *35 x-github: @@ -97098,7 +97013,7 @@ paths: - string - 'null' format: uri - text_matches: *625 + text_matches: *623 related: type: - array @@ -97291,7 +97206,7 @@ paths: - followers - repositories - joined - - *626 + - *624 - *17 - *19 responses: @@ -97401,7 +97316,7 @@ paths: type: - boolean - 'null' - text_matches: *625 + text_matches: *623 blog: type: - string @@ -97463,7 +97378,7 @@ paths: events_url: https://api.github.com/users/mojombo/events{/privacy} site_admin: true '304': *35 - '503': *106 + '503': *105 '422': *15 x-github: githubCloudOnly: false @@ -97483,7 +97398,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#get-a-team-legacy parameters: - - &630 + - &628 name: team_id description: The unique identifier of the team. in: path @@ -97524,7 +97439,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#update-a-team-legacy parameters: - - *630 + - *628 requestBody: required: true content: @@ -97625,7 +97540,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#delete-a-team-legacy parameters: - - *630 + - *628 responses: '204': description: Response @@ -97654,7 +97569,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#list-pending-team-invitations-legacy parameters: - - *630 + - *628 - *17 - *19 responses: @@ -97664,9 +97579,9 @@ paths: application/json: schema: type: array - items: *213 + items: *212 examples: - default: *214 + default: *213 headers: Link: *57 x-github: @@ -97692,7 +97607,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#list-team-members-legacy parameters: - - *630 + - *628 - name: role description: Filters members returned by their role in the team. in: query @@ -97743,7 +97658,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#get-team-member-legacy parameters: - - *630 + - *628 - *62 responses: '204': @@ -97780,7 +97695,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#add-team-member-legacy parameters: - - *630 + - *628 - *62 responses: '204': @@ -97820,7 +97735,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#remove-team-member-legacy parameters: - - *630 + - *628 - *62 responses: '204': @@ -97857,7 +97772,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#get-team-membership-for-a-user-legacy parameters: - - *630 + - *628 - *62 responses: '200': @@ -97866,7 +97781,7 @@ paths: application/json: schema: *307 examples: - response-if-user-is-a-team-maintainer: *631 + response-if-user-is-a-team-maintainer: *629 '404': *6 x-github: githubCloudOnly: false @@ -97899,7 +97814,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#add-or-update-team-membership-for-a-user-legacy parameters: - - *630 + - *628 - *62 requestBody: required: false @@ -97927,7 +97842,7 @@ paths: application/json: schema: *307 examples: - response-if-users-membership-with-team-is-now-pending: *632 + response-if-users-membership-with-team-is-now-pending: *630 '403': description: Forbidden if team synchronization is set up '422': @@ -97961,7 +97876,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#remove-team-membership-for-a-user-legacy parameters: - - *630 + - *628 - *62 responses: '204': @@ -97989,7 +97904,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#list-team-repositories-legacy parameters: - - *630 + - *628 - *17 - *19 responses: @@ -97999,9 +97914,9 @@ paths: application/json: schema: type: array - items: *145 + items: *144 examples: - default: *239 + default: *238 headers: Link: *57 '404': *6 @@ -98031,7 +97946,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#check-team-permissions-for-a-repository-legacy parameters: - - *630 + - *628 - *308 - *309 responses: @@ -98039,7 +97954,7 @@ paths: description: Alternative response with extra repository information content: application/json: - schema: *633 + schema: *631 examples: alternative-response-with-extra-repository-information: value: @@ -98190,7 +98105,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#add-or-update-team-repository-permissions-legacy parameters: - - *630 + - *628 - *308 - *309 requestBody: @@ -98242,7 +98157,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#remove-a-repository-from-a-team-legacy parameters: - - *630 + - *628 - *308 - *309 responses: @@ -98269,7 +98184,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#list-child-teams-legacy parameters: - - *630 + - *628 - *17 - *19 responses: @@ -98279,9 +98194,9 @@ paths: application/json: schema: type: array - items: *180 + items: *179 examples: - response-if-child-teams-exist: *634 + response-if-child-teams-exist: *632 headers: Link: *57 '404': *6 @@ -98314,7 +98229,7 @@ paths: application/json: schema: oneOf: - - &636 + - &634 title: Private User description: Private User type: object @@ -98564,7 +98479,7 @@ paths: - private_gists - total_private_repos - two_factor_authentication - - *635 + - *633 examples: response-with-public-and-private-profile-information: summary: Response with public and private profile information @@ -98724,7 +98639,7 @@ paths: description: Response content: application/json: - schema: *636 + schema: *634 examples: default: value: @@ -98927,11 +98842,11 @@ paths: type: integer codespaces: type: array - items: *221 + items: *220 examples: - default: *222 + default: *221 '304': *35 - '500': *105 + '500': *104 '401': *23 '403': *27 '404': *6 @@ -99068,7 +98983,7 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *221 + schema: *220 examples: default: *428 '202': @@ -99076,13 +98991,13 @@ paths: being retried in the background content: application/json: - schema: *221 + schema: *220 examples: default: *428 '401': *23 '403': *27 '404': *6 - '503': *106 + '503': *105 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -99122,7 +99037,7 @@ paths: type: integer secrets: type: array - items: &637 + items: &635 title: Codespaces Secret description: Secrets for a GitHub Codespace. type: object @@ -99236,13 +99151,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/secrets#get-a-secret-for-the-authenticated-user parameters: - - *153 + - *152 responses: '200': description: Response content: application/json: - schema: *637 + schema: *635 examples: default: value: @@ -99272,7 +99187,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/secrets#create-or-update-a-secret-for-the-authenticated-user parameters: - - *153 + - *152 requestBody: required: true content: @@ -99317,7 +99232,7 @@ paths: description: Response after successfully creating a secret content: application/json: - schema: *154 + schema: *153 examples: default: value: @@ -99345,7 +99260,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/secrets#delete-a-secret-for-the-authenticated-user parameters: - - *153 + - *152 responses: '204': description: Response @@ -99370,7 +99285,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/secrets#list-selected-repositories-for-a-user-secret parameters: - - *153 + - *152 responses: '200': description: Response @@ -99386,13 +99301,13 @@ paths: type: integer repositories: type: array - items: *145 + items: *144 examples: - default: *638 + default: *636 '401': *23 '403': *27 '404': *6 - '500': *105 + '500': *104 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -99413,7 +99328,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/secrets#set-selected-repositories-for-a-user-secret parameters: - - *153 + - *152 requestBody: required: true content: @@ -99445,7 +99360,7 @@ paths: '401': *23 '403': *27 '404': *6 - '500': *105 + '500': *104 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -99467,7 +99382,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/secrets#add-a-selected-repository-to-a-user-secret parameters: - - *153 + - *152 - name: repository_id in: path required: true @@ -99479,7 +99394,7 @@ paths: '401': *23 '403': *27 '404': *6 - '500': *105 + '500': *104 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -99500,7 +99415,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/secrets#remove-a-selected-repository-from-a-user-secret parameters: - - *153 + - *152 - name: repository_id in: path required: true @@ -99512,7 +99427,7 @@ paths: '401': *23 '403': *27 '404': *6 - '500': *105 + '500': *104 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -99532,17 +99447,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#get-a-codespace-for-the-authenticated-user parameters: - - *223 + - *222 responses: '200': description: Response content: application/json: - schema: *221 + schema: *220 examples: default: *428 '304': *35 - '500': *105 + '500': *104 '401': *23 '403': *27 '404': *6 @@ -99566,7 +99481,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#update-a-codespace-for-the-authenticated-user parameters: - - *223 + - *222 requestBody: required: false content: @@ -99596,7 +99511,7 @@ paths: description: Response content: application/json: - schema: *221 + schema: *220 examples: default: *428 '401': *23 @@ -99620,11 +99535,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#delete-a-codespace-for-the-authenticated-user parameters: - - *223 + - *222 responses: '202': *37 '304': *35 - '500': *105 + '500': *104 '401': *23 '403': *27 '404': *6 @@ -99649,13 +99564,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#export-a-codespace-for-the-authenticated-user parameters: - - *223 + - *222 responses: '202': description: Response content: application/json: - schema: &639 + schema: &637 type: object title: Fetches information about an export of a codespace. description: An export of a codespace. Also, latest export details @@ -99708,7 +99623,7 @@ paths: examples: - https://github.com/octocat/hello-world/tree/:branch examples: - default: &640 + default: &638 value: state: succeeded completed_at: '2022-01-01T14:59:22Z' @@ -99716,7 +99631,7 @@ paths: sha: fd95a81ca01e48ede9f39c799ecbcef817b8a3b2 id: latest export_url: https://api.github.com/user/codespaces/:name/exports/latest - '500': *105 + '500': *104 '401': *23 '403': *27 '404': *6 @@ -99740,7 +99655,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#get-details-about-a-codespace-export parameters: - - *223 + - *222 - name: export_id in: path required: true @@ -99753,9 +99668,9 @@ paths: description: Response content: application/json: - schema: *639 + schema: *637 examples: - default: *640 + default: *638 '404': *6 x-github: githubCloudOnly: false @@ -99776,7 +99691,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/machines#list-machine-types-for-a-codespace parameters: - - *223 + - *222 responses: '200': description: Response @@ -99794,9 +99709,9 @@ paths: type: array items: *429 examples: - default: *641 + default: *639 '304': *35 - '500': *105 + '500': *104 '401': *23 '403': *27 '404': *6 @@ -99823,7 +99738,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#create-a-repository-from-an-unpublished-codespace parameters: - - *223 + - *222 requestBody: required: true content: @@ -100680,17 +100595,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#start-a-codespace-for-the-authenticated-user parameters: - - *223 + - *222 responses: '200': description: Response content: application/json: - schema: *221 + schema: *220 examples: default: *428 '304': *35 - '500': *105 + '500': *104 '400': *14 '401': *23 '402': @@ -100720,16 +100635,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#stop-a-codespace-for-the-authenticated-user parameters: - - *223 + - *222 responses: '200': description: Response content: application/json: - schema: *221 + schema: *220 examples: default: *428 - '500': *105 + '500': *104 '401': *23 '403': *27 '404': *6 @@ -100758,9 +100673,9 @@ paths: application/json: schema: type: array - items: *233 + items: *232 examples: - default: &652 + default: &650 value: - id: 197 name: hello_docker @@ -100861,7 +100776,7 @@ paths: application/json: schema: type: array - items: &642 + items: &640 title: Email description: Email type: object @@ -100931,9 +100846,9 @@ paths: application/json: schema: type: array - items: *642 + items: *640 examples: - default: &654 + default: &652 value: - email: octocat@github.com verified: true @@ -101010,7 +100925,7 @@ paths: application/json: schema: type: array - items: *642 + items: *640 examples: default: value: @@ -101268,7 +101183,7 @@ paths: application/json: schema: type: array - items: &643 + items: &641 title: GPG Key description: A unique encryption key type: object @@ -101413,7 +101328,7 @@ paths: - subkeys - revoked examples: - default: &668 + default: &666 value: - id: 3 name: Octocat's GPG Key @@ -101498,9 +101413,9 @@ paths: description: Response content: application/json: - schema: *643 + schema: *641 examples: - default: &644 + default: &642 value: id: 3 name: Octocat's GPG Key @@ -101557,7 +101472,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/gpg-keys#get-a-gpg-key-for-the-authenticated-user parameters: - - &645 + - &643 name: gpg_key_id description: The unique identifier of the GPG key. in: path @@ -101569,9 +101484,9 @@ paths: description: Response content: application/json: - schema: *643 + schema: *641 examples: - default: *644 + default: *642 '404': *6 '304': *35 '403': *27 @@ -101594,7 +101509,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/gpg-keys#delete-a-gpg-key-for-the-authenticated-user parameters: - - *645 + - *643 responses: '204': description: Response @@ -101785,7 +101700,7 @@ paths: type: array items: *69 examples: - default: *137 + default: *136 headers: Link: *57 '404': *6 @@ -101810,7 +101725,7 @@ paths: url: https://docs.github.com/rest/apps/installations#add-a-repository-to-an-app-installation parameters: - *21 - - *134 + - *133 responses: '204': description: Response @@ -101836,7 +101751,7 @@ paths: url: https://docs.github.com/rest/apps/installations#remove-a-repository-from-an-app-installation parameters: - *21 - - *134 + - *133 responses: '204': description: Response @@ -101870,12 +101785,12 @@ paths: application/json: schema: anyOf: - - *211 + - *210 - type: object properties: {} additionalProperties: false examples: - default: *212 + default: *211 '204': description: Response when there are no restrictions x-github: @@ -101910,7 +101825,7 @@ paths: description: Response content: application/json: - schema: *211 + schema: *210 examples: default: value: @@ -101991,7 +101906,7 @@ paths: - closed - all default: open - - *219 + - *218 - name: sort description: What to sort results by. in: query @@ -102016,7 +101931,7 @@ paths: type: array items: *71 examples: - default: *220 + default: *219 headers: Link: *57 '404': *6 @@ -102049,7 +101964,7 @@ paths: application/json: schema: type: array - items: &646 + items: &644 title: Key description: Key type: object @@ -102152,9 +102067,9 @@ paths: description: Response content: application/json: - schema: *646 + schema: *644 examples: - default: &647 + default: &645 value: key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -102193,9 +102108,9 @@ paths: description: Response content: application/json: - schema: *646 + schema: *644 examples: - default: *647 + default: *645 '404': *6 '304': *35 '403': *27 @@ -102251,7 +102166,7 @@ paths: application/json: schema: type: array - items: &648 + items: &646 title: User Marketplace Purchase description: User Marketplace Purchase type: object @@ -102330,7 +102245,7 @@ paths: - account - plan examples: - default: &649 + default: &647 value: - billing_cycle: monthly next_billing_date: '2017-11-11T00:00:00Z' @@ -102392,9 +102307,9 @@ paths: application/json: schema: type: array - items: *648 + items: *646 examples: - default: *649 + default: *647 headers: Link: *57 '304': *35 @@ -102434,7 +102349,7 @@ paths: application/json: schema: type: array - items: *225 + items: *224 examples: default: value: @@ -102548,7 +102463,7 @@ paths: description: Response content: application/json: - schema: *225 + schema: *224 examples: default: value: @@ -102635,7 +102550,7 @@ paths: description: Response content: application/json: - schema: *225 + schema: *224 examples: default: value: @@ -102707,7 +102622,7 @@ paths: application/json: schema: type: array - items: *227 + items: *226 examples: default: value: @@ -102969,7 +102884,7 @@ paths: description: Response content: application/json: - schema: *227 + schema: *226 examples: default: value: @@ -103149,7 +103064,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#get-a-user-migration-status parameters: - - *228 + - *227 - name: exclude in: query required: false @@ -103162,7 +103077,7 @@ paths: description: Response content: application/json: - schema: *227 + schema: *226 examples: default: value: @@ -103356,7 +103271,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#download-a-user-migration-archive parameters: - - *228 + - *227 responses: '302': description: Response @@ -103382,7 +103297,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#delete-a-user-migration-archive parameters: - - *228 + - *227 responses: '204': description: Response @@ -103411,8 +103326,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#unlock-a-user-repository parameters: - - *228 - - *650 + - *227 + - *648 responses: '204': description: Response @@ -103436,7 +103351,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#list-repositories-for-a-user-migration parameters: - - *228 + - *227 - *17 - *19 responses: @@ -103446,9 +103361,9 @@ paths: application/json: schema: type: array - items: *145 + items: *144 examples: - default: *239 + default: *238 headers: Link: *57 '404': *6 @@ -103527,7 +103442,7 @@ paths: - docker - nuget - container - - *651 + - *649 - *19 - *17 responses: @@ -103537,10 +103452,10 @@ paths: application/json: schema: type: array - items: *233 + items: *232 examples: - default: *652 - '400': *653 + default: *650 + '400': *651 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -103560,16 +103475,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-for-the-authenticated-user parameters: + - *234 - *235 - - *236 responses: '200': description: Response content: application/json: - schema: *233 + schema: *232 examples: - default: &669 + default: &667 value: id: 40201 name: octo-name @@ -103682,8 +103597,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-a-package-for-the-authenticated-user parameters: + - *234 - *235 - - *236 responses: '204': description: Response @@ -103713,8 +103628,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-a-package-for-the-authenticated-user parameters: + - *234 - *235 - - *236 - name: token description: package token schema: @@ -103746,8 +103661,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: + - *234 - *235 - - *236 - *19 - *17 - name: state @@ -103767,7 +103682,7 @@ paths: application/json: schema: type: array - items: *237 + items: *236 examples: default: value: @@ -103816,15 +103731,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-version-for-the-authenticated-user parameters: + - *234 - *235 - - *236 - - *238 + - *237 responses: '200': description: Response content: application/json: - schema: *237 + schema: *236 examples: default: value: @@ -103860,9 +103775,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-a-package-version-for-the-authenticated-user parameters: + - *234 - *235 - - *236 - - *238 + - *237 responses: '204': description: Response @@ -103892,9 +103807,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-a-package-version-for-the-authenticated-user parameters: + - *234 - *235 - - *236 - - *238 + - *237 responses: '204': description: Response @@ -103931,9 +103846,9 @@ paths: application/json: schema: type: array - items: *642 + items: *640 examples: - default: *654 + default: *652 headers: Link: *57 '304': *35 @@ -104046,7 +103961,7 @@ paths: type: array items: *69 examples: - default: &661 + default: &659 summary: Default response value: - id: 1296269 @@ -104406,7 +104321,7 @@ paths: type: array items: *502 examples: - default: *655 + default: *653 headers: Link: *57 '304': *35 @@ -104429,7 +104344,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#accept-a-repository-invitation parameters: - - *215 + - *214 responses: '204': description: Response @@ -104452,7 +104367,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#decline-a-repository-invitation parameters: - - *215 + - *214 responses: '204': description: Response @@ -104485,7 +104400,7 @@ paths: application/json: schema: type: array - items: &656 + items: &654 title: Social account description: Social media account type: object @@ -104502,7 +104417,7 @@ paths: - provider - url examples: - default: &657 + default: &655 value: - provider: twitter url: https://twitter.com/github @@ -104565,9 +104480,9 @@ paths: application/json: schema: type: array - items: *656 + items: *654 examples: - default: *657 + default: *655 '422': *15 '304': *35 '404': *6 @@ -104655,7 +104570,7 @@ paths: application/json: schema: type: array - items: &658 + items: &656 title: SSH Signing Key description: A public SSH key used to sign Git commits type: object @@ -104675,7 +104590,7 @@ paths: - title - created_at examples: - default: &687 + default: &685 value: - id: 2 key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -104740,9 +104655,9 @@ paths: description: Response content: application/json: - schema: *658 + schema: *656 examples: - default: &659 + default: &657 value: id: 2 key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -104772,7 +104687,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: - - &660 + - &658 name: ssh_signing_key_id description: The unique identifier of the SSH signing key. in: path @@ -104784,9 +104699,9 @@ paths: description: Response content: application/json: - schema: *658 + schema: *656 examples: - default: *659 + default: *657 '404': *6 '304': *35 '403': *27 @@ -104809,7 +104724,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: - - *660 + - *658 responses: '204': description: Response @@ -104838,7 +104753,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#list-repositories-starred-by-the-authenticated-user parameters: - - &688 + - &686 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 @@ -104863,11 +104778,11 @@ paths: type: array items: *69 examples: - default-response: *661 + default-response: *659 application/vnd.github.v3.star+json: schema: type: array - items: &689 + items: &687 title: Starred Repository description: Starred Repository type: object @@ -105111,9 +105026,9 @@ paths: application/json: schema: type: array - items: *145 + items: *144 examples: - default: *239 + default: *238 headers: Link: *57 '304': *35 @@ -105236,10 +105151,10 @@ paths: application/json: schema: oneOf: - - *636 - - *635 + - *634 + - *633 examples: - default-response: &663 + default-response: &661 summary: Default response value: login: octocat @@ -105274,7 +105189,7 @@ paths: following: 0 created_at: '2008-01-14T04:33:35Z' updated_at: '2008-01-14T04:33:35Z' - response-with-git-hub-plan-information: &664 + response-with-git-hub-plan-information: &662 summary: Response with GitHub plan information value: login: octocat @@ -105337,7 +105252,7 @@ paths: required: true schema: type: string - - *251 + - *250 requestBody: required: true description: Details of the draft item to create in the project. @@ -105371,9 +105286,9 @@ paths: description: Response content: application/json: - schema: *256 + schema: *255 examples: - draft_issue: *257 + draft_issue: *256 '304': *35 '403': *27 '401': *23 @@ -105396,7 +105311,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/users#list-users parameters: - - *662 + - *660 - *17 responses: '200': @@ -105445,11 +105360,11 @@ paths: application/json: schema: oneOf: - - *636 - - *635 + - *634 + - *633 examples: - default-response: *663 - response-with-git-hub-plan-information: *664 + default-response: *661 + response-with-git-hub-plan-information: *662 '404': *6 x-github: githubCloudOnly: false @@ -105499,8 +105414,8 @@ paths: required: - subject_digests examples: - default: *665 - withPredicateType: *666 + default: *663 + withPredicateType: *664 responses: '200': description: Response @@ -105554,7 +105469,7 @@ paths: description: The cursor to the previous page. description: Information about the current page. examples: - default: *667 + default: *665 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -105764,7 +105679,7 @@ paths: description: Response content: application/json: - schema: *154 + schema: *153 examples: default: value: @@ -105798,9 +105713,9 @@ paths: application/json: schema: type: array - items: *233 + items: *232 examples: - default: *652 + default: *650 '403': *27 '401': *23 x-github: @@ -106184,9 +106099,9 @@ paths: application/json: schema: type: array - items: *643 + items: *641 examples: - default: *668 + default: *666 headers: Link: *57 x-github: @@ -106415,7 +106330,7 @@ paths: - docker - nuget - container - - *651 + - *649 - *62 - *19 - *17 @@ -106426,12 +106341,12 @@ paths: application/json: schema: type: array - items: *233 + items: *232 examples: - default: *652 + default: *650 '403': *27 '401': *23 - '400': *653 + '400': *651 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -106451,17 +106366,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-for-a-user parameters: + - *234 - *235 - - *236 - *62 responses: '200': description: Response content: application/json: - schema: *233 + schema: *232 examples: - default: *669 + default: *667 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -106482,8 +106397,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-a-package-for-a-user parameters: + - *234 - *235 - - *236 - *62 responses: '204': @@ -106516,8 +106431,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-a-package-for-a-user parameters: + - *234 - *235 - - *236 - *62 - name: token description: package token @@ -106550,8 +106465,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: + - *234 - *235 - - *236 - *62 responses: '200': @@ -106560,7 +106475,7 @@ paths: application/json: schema: type: array - items: *237 + items: *236 examples: default: value: @@ -106618,16 +106533,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-version-for-a-user parameters: + - *234 - *235 - - *236 - - *238 + - *237 - *62 responses: '200': description: Response content: application/json: - schema: *237 + schema: *236 examples: default: value: @@ -106662,10 +106577,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-package-version-for-a-user parameters: + - *234 - *235 - - *236 - *62 - - *238 + - *237 responses: '204': description: Response @@ -106697,10 +106612,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-package-version-for-a-user parameters: + - *234 - *235 - - *236 - *62 - - *238 + - *237 responses: '204': description: Response @@ -106741,9 +106656,9 @@ paths: application/json: schema: type: array - items: *249 + items: *248 examples: - default: *250 + default: *249 headers: Link: *57 '304': *35 @@ -106765,16 +106680,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/projects#get-project-for-user parameters: - - *251 + - *250 - *62 responses: '200': description: Response content: application/json: - schema: *249 + schema: *248 examples: - default: *250 + default: *249 headers: Link: *57 '304': *35 @@ -106796,7 +106711,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/fields#list-project-fields-for-user parameters: - - *251 + - *250 - *62 - *17 - *43 @@ -106808,9 +106723,9 @@ paths: application/json: schema: type: array - items: *254 + items: *253 examples: - default: *670 + default: *668 headers: Link: *57 '304': *35 @@ -106832,7 +106747,7 @@ paths: url: https://docs.github.com/rest/projects/fields#add-field-to-user-owned-project parameters: - *62 - - *251 + - *250 requestBody: required: true content: @@ -106870,7 +106785,7 @@ paths: description: The options available for single select fields. At least one option must be provided when creating a single select field. - items: *671 + items: *669 required: - name - data_type @@ -106886,7 +106801,7 @@ paths: description: The field's data type. enum: - iteration - iteration_configuration: *672 + iteration_configuration: *670 required: - name - data_type @@ -106908,20 +106823,20 @@ paths: value: name: Due date data_type: date - single_select_field: *673 - iteration_field: *674 + single_select_field: *671 + iteration_field: *672 responses: '201': description: Response content: application/json: - schema: *254 + schema: *253 examples: - text_field: *675 - number_field: *676 - date_field: *677 - single_select_field: *678 - iteration_field: *679 + text_field: *673 + number_field: *674 + date_field: *675 + single_select_field: *676 + iteration_field: *677 '304': *35 '403': *27 '401': *23 @@ -106942,17 +106857,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/fields#get-project-field-for-user parameters: - - *251 - - *680 + - *250 + - *678 - *62 responses: '200': description: Response content: application/json: - schema: *254 + schema: *253 examples: - default: *681 + default: *679 headers: Link: *57 '304': *35 @@ -106975,7 +106890,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#list-items-for-a-user-owned-project parameters: - - *251 + - *250 - *62 - *43 - *44 @@ -107008,9 +106923,9 @@ paths: application/json: schema: type: array - items: *258 + items: *257 examples: - default: *259 + default: *258 headers: Link: *57 '304': *35 @@ -107032,7 +106947,7 @@ paths: url: https://docs.github.com/rest/projects/items#add-item-to-user-owned-project parameters: - *62 - - *251 + - *250 requestBody: required: true description: Details of the item to add to the project. You can specify either @@ -107102,22 +107017,22 @@ paths: description: Response content: application/json: - schema: *256 + schema: *255 examples: issue_with_id: summary: Response for adding an issue using its unique ID - value: *257 + value: *256 pull_request_with_id: summary: Response for adding a pull request using its unique ID - value: *257 + value: *256 issue_with_nwo: summary: Response for adding an issue using repository owner, name, and issue number - value: *257 + value: *256 pull_request_with_nwo: summary: Response for adding a pull request using repository owner, name, and PR number - value: *257 + value: *256 '304': *35 '403': *27 '401': *23 @@ -107137,9 +107052,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#get-an-item-for-a-user-owned-project parameters: - - *251 + - *250 - *62 - - *260 + - *259 - name: fields description: |- Limit results to specific fields, by their IDs. If not specified, the title field will be returned. @@ -107159,9 +107074,9 @@ paths: description: Response content: application/json: - schema: *258 + schema: *257 examples: - default: *259 + default: *258 headers: Link: *57 '304': *35 @@ -107182,9 +107097,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#update-project-item-for-user parameters: - - *251 + - *250 - *62 - - *260 + - *259 requestBody: required: true description: Field updates to apply to the project item. Only text, number, @@ -107257,13 +107172,13 @@ paths: description: Response content: application/json: - schema: *258 + schema: *257 examples: - text_field: *259 - number_field: *259 - date_field: *259 - single_select_field: *259 - iteration_field: *259 + text_field: *258 + number_field: *258 + date_field: *258 + single_select_field: *258 + iteration_field: *258 '401': *23 '403': *27 '404': *6 @@ -107283,9 +107198,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#delete-project-item-for-user parameters: - - *251 + - *250 - *62 - - *260 + - *259 responses: '204': description: Response @@ -107307,9 +107222,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#list-items-for-a-user-project-view parameters: - - *251 + - *250 - *62 - - *682 + - *680 - name: fields description: |- Limit results to specific fields, by their IDs. If not specified, the @@ -107335,9 +107250,9 @@ paths: application/json: schema: type: array - items: *258 + items: *257 examples: - default: *259 + default: *258 headers: Link: *57 '304': *35 @@ -107556,9 +107471,9 @@ paths: application/json: schema: type: array - items: *145 + items: *144 examples: - default: *239 + default: *238 headers: Link: *57 x-github: @@ -107581,11 +107496,11 @@ paths: url: https://docs.github.com/rest/billing/usage#get-billing-premium-request-usage-report-for-a-user parameters: - *62 + - *107 + - *109 - *108 + - *681 - *110 - - *109 - - *683 - - *111 responses: '200': description: Response when getting a billing premium request usage report @@ -107692,8 +107607,8 @@ paths: '400': *14 '403': *27 '404': *6 - '500': *105 - '503': *106 + '500': *104 + '503': *105 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -107714,9 +107629,9 @@ paths: url: https://docs.github.com/rest/billing/usage#get-billing-usage-report-for-a-user parameters: - *62 + - *107 + - *682 - *108 - - *684 - - *109 responses: '200': description: Response when getting a billing usage report @@ -107786,8 +107701,8 @@ paths: repositoryName: user/example '400': *14 '403': *27 - '500': *105 - '503': *106 + '500': *104 + '503': *105 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -107811,12 +107726,12 @@ paths: url: https://docs.github.com/rest/billing/usage#get-billing-usage-summary-for-a-user parameters: - *62 + - *107 + - *109 - *108 + - *683 - *110 - - *109 - - *685 - - *111 - - *686 + - *684 responses: '200': description: Response when getting a billing usage summary @@ -107921,8 +107836,8 @@ paths: '400': *14 '403': *27 '404': *6 - '500': *105 - '503': *106 + '500': *104 + '503': *105 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -107950,9 +107865,9 @@ paths: application/json: schema: type: array - items: *656 + items: *654 examples: - default: *657 + default: *655 headers: Link: *57 x-github: @@ -107982,9 +107897,9 @@ paths: application/json: schema: type: array - items: *658 + items: *656 examples: - default: *687 + default: *685 headers: Link: *57 x-github: @@ -108009,7 +107924,7 @@ paths: url: https://docs.github.com/rest/activity/starring#list-repositories-starred-by-a-user parameters: - *62 - - *688 + - *686 - *51 - *17 - *19 @@ -108021,11 +107936,11 @@ paths: schema: anyOf: - type: array - items: *689 + items: *687 - type: array items: *69 examples: - default-response: *661 + default-response: *659 headers: Link: *57 x-github: @@ -108054,9 +107969,9 @@ paths: application/json: schema: type: array - items: *145 + items: *144 examples: - default: *239 + default: *238 headers: Link: *57 x-github: @@ -108185,7 +108100,7 @@ webhooks: type: string enum: - disabled - enterprise: &690 + enterprise: &688 title: Enterprise description: |- An enterprise on GitHub. Webhook payloads contain the `enterprise` property when the webhook is configured @@ -108254,7 +108169,7 @@ webhooks: - created_at - updated_at - avatar_url - installation: &691 + installation: &689 title: Simple Installation description: |- The GitHub App installation. Webhook payloads contain the `installation` property when the event is configured @@ -108275,7 +108190,7 @@ webhooks: required: - id - node_id - organization: &692 + organization: &690 title: Organization Simple description: |- A GitHub organization. Webhook payloads contain the `organization` property when the webhook is configured for an @@ -108348,7 +108263,7 @@ webhooks: - public_members_url - avatar_url - description - repository: &693 + repository: &691 title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property @@ -109261,10 +109176,10 @@ webhooks: type: string enum: - enabled - enterprise: *690 - installation: *691 - organization: *692 - repository: *693 + enterprise: *688 + installation: *689 + organization: *690 + repository: *691 sender: *4 required: - action @@ -109340,11 +109255,11 @@ webhooks: type: string enum: - created - enterprise: *690 - installation: *691 - organization: *692 - repository: *693 - rule: &694 + enterprise: *688 + installation: *689 + organization: *690 + repository: *691 + rule: &692 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) @@ -109567,11 +109482,11 @@ webhooks: type: string enum: - deleted - enterprise: *690 - installation: *691 - organization: *692 - repository: *693 - rule: *694 + enterprise: *688 + installation: *689 + organization: *690 + repository: *691 + rule: *692 sender: *4 required: - action @@ -109759,11 +109674,11 @@ webhooks: - everyone required: - from - enterprise: *690 - installation: *691 - organization: *692 - repository: *693 - rule: *694 + enterprise: *688 + installation: *689 + organization: *690 + repository: *691 + rule: *692 sender: *4 required: - action @@ -109847,7 +109762,7 @@ webhooks: type: string enum: - completed - check_run: &696 + check_run: &694 title: CheckRun description: A check performed on the code of a given code change type: object @@ -109913,7 +109828,7 @@ webhooks: pull_requests: type: array items: *75 - repository: *145 + repository: *144 status: type: string enum: @@ -109957,7 +109872,7 @@ webhooks: - examples: - neutral - deployment: *695 + deployment: *693 details_url: type: string examples: @@ -110055,10 +109970,10 @@ webhooks: - output - app - pull_requests - installation: *691 - enterprise: *690 - organization: *692 - repository: *693 + installation: *689 + enterprise: *688 + organization: *690 + repository: *691 sender: *4 required: - check_run @@ -110451,11 +110366,11 @@ webhooks: type: string enum: - created - check_run: *696 - installation: *691 - enterprise: *690 - organization: *692 - repository: *693 + check_run: *694 + installation: *689 + enterprise: *688 + organization: *690 + repository: *691 sender: *4 required: - check_run @@ -110851,11 +110766,11 @@ webhooks: type: string enum: - requested_action - check_run: *696 - installation: *691 - enterprise: *690 - organization: *692 - repository: *693 + check_run: *694 + installation: *689 + enterprise: *688 + organization: *690 + repository: *691 requested_action: description: The action requested by the user. type: object @@ -111260,11 +111175,11 @@ webhooks: type: string enum: - rerequested - check_run: *696 - installation: *691 - enterprise: *690 - organization: *692 - repository: *693 + check_run: *694 + installation: *689 + enterprise: *688 + organization: *690 + repository: *691 sender: *4 required: - check_run @@ -112256,10 +112171,10 @@ webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *690 - installation: *691 - organization: *692 - repository: *693 + enterprise: *688 + installation: *689 + organization: *690 + repository: *691 sender: *4 required: - action @@ -112968,10 +112883,10 @@ webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *690 - installation: *691 - organization: *692 - repository: *693 + enterprise: *688 + installation: *689 + organization: *690 + repository: *691 sender: *4 required: - action @@ -113674,10 +113589,10 @@ webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *690 - installation: *691 - organization: *692 - repository: *693 + enterprise: *688 + installation: *689 + organization: *690 + repository: *691 sender: *4 required: - action @@ -113998,20 +113913,20 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: &697 + commit_oid: &695 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: *690 - installation: *691 - organization: *692 - ref: &698 + enterprise: *688 + installation: *689 + organization: *690 + ref: &696 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: *693 + repository: *691 sender: *4 required: - action @@ -114419,12 +114334,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *697 - enterprise: *690 - installation: *691 - organization: *692 - ref: *698 - repository: *693 + commit_oid: *695 + enterprise: *688 + installation: *689 + organization: *690 + ref: *696 + repository: *691 sender: *4 required: - action @@ -114707,12 +114622,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *697 - enterprise: *690 - installation: *691 - organization: *692 - ref: *698 - repository: *693 + commit_oid: *695 + enterprise: *688 + installation: *689 + organization: *690 + ref: *696 + repository: *691 sender: *4 required: - action @@ -115058,12 +114973,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *697 - enterprise: *690 - installation: *691 - organization: *692 - ref: *698 - repository: *693 + commit_oid: *695 + enterprise: *688 + installation: *689 + organization: *690 + ref: *696 + repository: *691 sender: *4 required: - action @@ -115353,9 +115268,9 @@ webhooks: type: - string - 'null' - enterprise: *690 - installation: *691 - organization: *692 + enterprise: *688 + installation: *689 + organization: *690 ref: description: The Git reference of the code scanning alert. When the action is `reopened_by_user` or `closed_by_user`, the event @@ -115363,7 +115278,7 @@ webhooks: type: - string - 'null' - repository: *693 + repository: *691 sender: *4 required: - action @@ -115609,12 +115524,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *697 - enterprise: *690 - installation: *691 - organization: *692 - ref: *698 - repository: *693 + commit_oid: *695 + enterprise: *688 + installation: *689 + organization: *690 + ref: *696 + repository: *691 sender: *4 required: - action @@ -115935,10 +115850,10 @@ webhooks: - dismissed_reason - rule - tool - enterprise: *690 - installation: *691 - organization: *692 - repository: *693 + enterprise: *688 + installation: *689 + organization: *690 + repository: *691 sender: *4 required: - action @@ -116198,10 +116113,10 @@ webhooks: - updated_at - author_association - body - enterprise: *690 - installation: *691 - organization: *692 - repository: *693 + enterprise: *688 + installation: *689 + organization: *690 + repository: *691 sender: *4 required: - action @@ -116282,18 +116197,18 @@ webhooks: type: - string - 'null' - enterprise: *690 - installation: *691 + enterprise: *688 + installation: *689 master_branch: description: The name of the repository's default branch (usually `main`). type: string - organization: *692 - pusher_type: &699 + organization: *690 + pusher_type: &697 description: The pusher type for the event. Can be either `user` or a deploy key. type: string - ref: &700 + ref: &698 description: The [`git ref`](https://docs.github.com/rest/git/refs#get-a-reference) resource. type: string @@ -116303,7 +116218,7 @@ webhooks: enum: - tag - branch - repository: *693 + repository: *691 sender: *4 required: - ref @@ -116385,10 +116300,10 @@ webhooks: type: string enum: - created - definition: *261 - enterprise: *690 - installation: *691 - organization: *692 + definition: *260 + enterprise: *688 + installation: *689 + organization: *690 sender: *4 required: - action @@ -116473,9 +116388,9 @@ webhooks: description: The name of the property that was deleted. required: - property_name - enterprise: *690 - installation: *691 - organization: *692 + enterprise: *688 + installation: *689 + organization: *690 sender: *4 required: - action @@ -116552,10 +116467,10 @@ webhooks: type: string enum: - promote_to_enterprise - definition: *261 - enterprise: *690 - installation: *691 - organization: *692 + definition: *260 + enterprise: *688 + installation: *689 + organization: *690 sender: *4 required: - action @@ -116632,10 +116547,10 @@ webhooks: type: string enum: - updated - definition: *261 - enterprise: *690 - installation: *691 - organization: *692 + definition: *260 + enterprise: *688 + installation: *689 + organization: *690 sender: *4 required: - action @@ -116712,19 +116627,19 @@ webhooks: type: string enum: - updated - enterprise: *690 - installation: *691 - repository: *693 - organization: *692 + enterprise: *688 + installation: *689 + repository: *691 + organization: *690 sender: *4 new_property_values: type: array description: The new custom property values for the repository. - items: *104 + items: *264 old_property_values: type: array description: The old custom property values for the repository. - items: *104 + items: *264 required: - action - repository @@ -116800,18 +116715,18 @@ webhooks: title: delete event type: object properties: - enterprise: *690 - installation: *691 - organization: *692 - pusher_type: *699 - ref: *700 + enterprise: *688 + installation: *689 + organization: *690 + pusher_type: *697 + ref: *698 ref_type: description: The type of Git ref object deleted in the repository. type: string enum: - tag - branch - repository: *693 + repository: *691 sender: *4 required: - ref @@ -116896,10 +116811,10 @@ webhooks: enum: - auto_dismissed alert: *458 - installation: *691 - organization: *692 - enterprise: *690 - repository: *693 + installation: *689 + organization: *690 + enterprise: *688 + repository: *691 sender: *4 required: - action @@ -116984,10 +116899,10 @@ webhooks: enum: - auto_reopened alert: *458 - installation: *691 - organization: *692 - enterprise: *690 - repository: *693 + installation: *689 + organization: *690 + enterprise: *688 + repository: *691 sender: *4 required: - action @@ -117072,10 +116987,10 @@ webhooks: enum: - created alert: *458 - installation: *691 - organization: *692 - enterprise: *690 - repository: *693 + installation: *689 + organization: *690 + enterprise: *688 + repository: *691 sender: *4 required: - action @@ -117158,10 +117073,10 @@ webhooks: enum: - dismissed alert: *458 - installation: *691 - organization: *692 - enterprise: *690 - repository: *693 + installation: *689 + organization: *690 + enterprise: *688 + repository: *691 sender: *4 required: - action @@ -117244,10 +117159,10 @@ webhooks: enum: - fixed alert: *458 - installation: *691 - organization: *692 - enterprise: *690 - repository: *693 + installation: *689 + organization: *690 + enterprise: *688 + repository: *691 sender: *4 required: - action @@ -117331,10 +117246,10 @@ webhooks: enum: - reintroduced alert: *458 - installation: *691 - organization: *692 - enterprise: *690 - repository: *693 + installation: *689 + organization: *690 + enterprise: *688 + repository: *691 sender: *4 required: - action @@ -117417,10 +117332,10 @@ webhooks: enum: - reopened alert: *458 - installation: *691 - organization: *692 - enterprise: *690 - repository: *693 + installation: *689 + organization: *690 + enterprise: *688 + repository: *691 sender: *4 required: - action @@ -117497,9 +117412,9 @@ webhooks: type: string enum: - created - enterprise: *690 - installation: *691 - key: &701 + enterprise: *688 + installation: *689 + key: &699 description: The [`deploy key`](https://docs.github.com/rest/deploy-keys/deploy-keys#get-a-deploy-key) resource. type: object @@ -117537,8 +117452,8 @@ webhooks: - verified - created_at - read_only - organization: *692 - repository: *693 + organization: *690 + repository: *691 sender: *4 required: - action @@ -117615,11 +117530,11 @@ webhooks: type: string enum: - deleted - enterprise: *690 - installation: *691 - key: *701 - organization: *692 - repository: *693 + enterprise: *688 + installation: *689 + key: *699 + organization: *690 + repository: *691 sender: *4 required: - action @@ -118191,12 +118106,12 @@ webhooks: - updated_at - statuses_url - repository_url - enterprise: *690 - installation: *691 - organization: *692 - repository: *693 + enterprise: *688 + installation: *689 + organization: *690 + repository: *691 sender: *4 - workflow: &705 + workflow: &703 title: Workflow type: - object @@ -118937,10 +118852,10 @@ webhooks: deployment: *464 pull_requests: type: array - items: *549 - repository: *693 - organization: *692 - installation: *691 + items: *547 + repository: *691 + organization: *690 + installation: *689 sender: *4 responses: '200': @@ -119011,7 +118926,7 @@ webhooks: type: string enum: - approved - approver: &702 + approver: &700 type: object properties: avatar_url: @@ -119054,11 +118969,11 @@ webhooks: type: string comment: type: string - enterprise: *690 - installation: *691 - organization: *692 - repository: *693 - reviewers: &703 + enterprise: *688 + installation: *689 + organization: *690 + repository: *691 + reviewers: &701 type: array items: type: object @@ -119139,7 +119054,7 @@ webhooks: sender: *4 since: type: string - workflow_job_run: &704 + workflow_job_run: &702 type: object properties: conclusion: @@ -119885,18 +119800,18 @@ webhooks: type: string enum: - rejected - approver: *702 + approver: *700 comment: type: string - enterprise: *690 - installation: *691 - organization: *692 - repository: *693 - reviewers: *703 + enterprise: *688 + installation: *689 + organization: *690 + repository: *691 + reviewers: *701 sender: *4 since: type: string - workflow_job_run: *704 + workflow_job_run: *702 workflow_job_runs: type: array items: @@ -120613,13 +120528,13 @@ webhooks: type: string enum: - requested - enterprise: *690 + enterprise: *688 environment: type: string - installation: *691 - organization: *692 - repository: *693 - requestor: &710 + installation: *689 + organization: *690 + repository: *691 + requestor: &708 title: User type: - object @@ -122562,12 +122477,12 @@ webhooks: - updated_at - deployment_url - repository_url - enterprise: *690 - installation: *691 - organization: *692 - repository: *693 + enterprise: *688 + installation: *689 + organization: *690 + repository: *691 sender: *4 - workflow: *705 + workflow: *703 workflow_run: title: Deployment Workflow Run type: @@ -123258,7 +123173,7 @@ webhooks: type: string enum: - answered - answer: &708 + answer: &706 type: object properties: author_association: @@ -123418,11 +123333,11 @@ webhooks: - created_at - updated_at - body - discussion: *706 - enterprise: *690 - installation: *691 - organization: *692 - repository: *693 + discussion: *704 + enterprise: *688 + installation: *689 + organization: *690 + repository: *691 sender: *4 required: - action @@ -123549,11 +123464,11 @@ webhooks: - from required: - category - discussion: *706 - enterprise: *690 - installation: *691 - organization: *692 - repository: *693 + discussion: *704 + enterprise: *688 + installation: *689 + organization: *690 + repository: *691 sender: *4 required: - action @@ -123636,11 +123551,11 @@ webhooks: type: string enum: - closed - discussion: *706 - enterprise: *690 - installation: *691 - organization: *692 - repository: *693 + discussion: *704 + enterprise: *688 + installation: *689 + organization: *690 + repository: *691 sender: *4 required: - action @@ -123722,7 +123637,7 @@ webhooks: type: string enum: - created - comment: &707 + comment: &705 type: object properties: author_association: @@ -123882,11 +123797,11 @@ webhooks: - updated_at - body - reactions - discussion: *706 - enterprise: *690 - installation: *691 - organization: *692 - repository: *693 + discussion: *704 + enterprise: *688 + installation: *689 + organization: *690 + repository: *691 sender: *4 required: - action @@ -123969,12 +123884,12 @@ webhooks: type: string enum: - deleted - comment: *707 - discussion: *706 - enterprise: *690 - installation: *691 - organization: *692 - repository: *693 + comment: *705 + discussion: *704 + enterprise: *688 + installation: *689 + organization: *690 + repository: *691 sender: *4 required: - action @@ -124069,12 +123984,12 @@ webhooks: - from required: - body - comment: *707 - discussion: *706 - enterprise: *690 - installation: *691 - organization: *692 - repository: *693 + comment: *705 + discussion: *704 + enterprise: *688 + installation: *689 + organization: *690 + repository: *691 sender: *4 required: - action @@ -124158,11 +124073,11 @@ webhooks: type: string enum: - created - discussion: *706 - enterprise: *690 - installation: *691 - organization: *692 - repository: *693 + discussion: *704 + enterprise: *688 + installation: *689 + organization: *690 + repository: *691 sender: *4 required: - action @@ -124244,11 +124159,11 @@ webhooks: type: string enum: - deleted - discussion: *706 - enterprise: *690 - installation: *691 - organization: *692 - repository: *693 + discussion: *704 + enterprise: *688 + installation: *689 + organization: *690 + repository: *691 sender: *4 required: - action @@ -124348,11 +124263,11 @@ webhooks: type: string required: - from - discussion: *706 - enterprise: *690 - installation: *691 - organization: *692 - repository: *693 + discussion: *704 + enterprise: *688 + installation: *689 + organization: *690 + repository: *691 sender: *4 required: - action @@ -124434,10 +124349,10 @@ webhooks: type: string enum: - labeled - discussion: *706 - enterprise: *690 - installation: *691 - label: &709 + discussion: *704 + enterprise: *688 + installation: *689 + label: &707 title: Label type: object properties: @@ -124470,8 +124385,8 @@ webhooks: - color - default - description - organization: *692 - repository: *693 + organization: *690 + repository: *691 sender: *4 required: - action @@ -124554,11 +124469,11 @@ webhooks: type: string enum: - locked - discussion: *706 - enterprise: *690 - installation: *691 - organization: *692 - repository: *693 + discussion: *704 + enterprise: *688 + installation: *689 + organization: *690 + repository: *691 sender: *4 required: - action @@ -124640,11 +124555,11 @@ webhooks: type: string enum: - pinned - discussion: *706 - enterprise: *690 - installation: *691 - organization: *692 - repository: *693 + discussion: *704 + enterprise: *688 + installation: *689 + organization: *690 + repository: *691 sender: *4 required: - action @@ -124726,11 +124641,11 @@ webhooks: type: string enum: - reopened - discussion: *706 - enterprise: *690 - installation: *691 - organization: *692 - repository: *693 + discussion: *704 + enterprise: *688 + installation: *689 + organization: *690 + repository: *691 sender: *4 required: - action @@ -124815,16 +124730,16 @@ webhooks: changes: type: object properties: - new_discussion: *706 - new_repository: *693 + new_discussion: *704 + new_repository: *691 required: - new_discussion - new_repository - discussion: *706 - enterprise: *690 - installation: *691 - organization: *692 - repository: *693 + discussion: *704 + enterprise: *688 + installation: *689 + organization: *690 + repository: *691 sender: *4 required: - action @@ -124907,10 +124822,10 @@ webhooks: type: string enum: - unanswered - discussion: *706 - old_answer: *708 - organization: *692 - repository: *693 + discussion: *704 + old_answer: *706 + organization: *690 + repository: *691 sender: *4 required: - action @@ -124992,12 +124907,12 @@ webhooks: type: string enum: - unlabeled - discussion: *706 - enterprise: *690 - installation: *691 - label: *709 - organization: *692 - repository: *693 + discussion: *704 + enterprise: *688 + installation: *689 + label: *707 + organization: *690 + repository: *691 sender: *4 required: - action @@ -125080,11 +124995,11 @@ webhooks: type: string enum: - unlocked - discussion: *706 - enterprise: *690 - installation: *691 - organization: *692 - repository: *693 + discussion: *704 + enterprise: *688 + installation: *689 + organization: *690 + repository: *691 sender: *4 required: - action @@ -125166,11 +125081,11 @@ webhooks: type: string enum: - unpinned - discussion: *706 - enterprise: *690 - installation: *691 - organization: *692 - repository: *693 + discussion: *704 + enterprise: *688 + installation: *689 + organization: *690 + repository: *691 sender: *4 required: - action @@ -125243,7 +125158,7 @@ webhooks: description: A user forks a repository. type: object properties: - enterprise: *690 + enterprise: *688 forkee: description: The created [`repository`](https://docs.github.com/rest/repos/repos#get-a-repository) resource. @@ -125921,9 +125836,9 @@ webhooks: type: integer watchers_count: type: integer - installation: *691 - organization: *692 - repository: *693 + installation: *689 + organization: *690 + repository: *691 sender: *4 required: - forkee @@ -126069,9 +125984,9 @@ webhooks: title: gollum event type: object properties: - enterprise: *690 - installation: *691 - organization: *692 + enterprise: *688 + installation: *689 + organization: *690 pages: description: The pages that were updated. type: array @@ -126109,7 +126024,7 @@ webhooks: - action - sha - html_url - repository: *693 + repository: *691 sender: *4 required: - pages @@ -126185,10 +126100,10 @@ webhooks: type: string enum: - created - enterprise: *690 + enterprise: *688 installation: *20 - organization: *692 - repositories: &711 + organization: *690 + repositories: &709 description: An array of repository objects that the installation can access. type: array @@ -126214,8 +126129,8 @@ webhooks: - name - full_name - private - repository: *693 - requester: *710 + repository: *691 + requester: *708 sender: *4 required: - action @@ -126290,11 +126205,11 @@ webhooks: type: string enum: - deleted - enterprise: *690 + enterprise: *688 installation: *20 - organization: *692 - repositories: *711 - repository: *693 + organization: *690 + repositories: *709 + repository: *691 requester: type: - 'null' @@ -126371,11 +126286,11 @@ webhooks: type: string enum: - new_permissions_accepted - enterprise: *690 + enterprise: *688 installation: *20 - organization: *692 - repositories: *711 - repository: *693 + organization: *690 + repositories: *709 + repository: *691 requester: type: - 'null' @@ -126452,10 +126367,10 @@ webhooks: type: string enum: - added - enterprise: *690 + enterprise: *688 installation: *20 - organization: *692 - repositories_added: &712 + organization: *690 + repositories_added: &710 description: An array of repository objects, which were added to the installation. type: array @@ -126501,15 +126416,15 @@ webhooks: private: description: Whether the repository is private or public. type: boolean - repository: *693 - repository_selection: &713 + repository: *691 + repository_selection: &711 description: Describe whether all repositories have been selected or there's a selection involved type: string enum: - all - selected - requester: *710 + requester: *708 sender: *4 required: - action @@ -126588,10 +126503,10 @@ webhooks: type: string enum: - removed - enterprise: *690 + enterprise: *688 installation: *20 - organization: *692 - repositories_added: *712 + organization: *690 + repositories_added: *710 repositories_removed: description: An array of repository objects, which were removed from the installation. @@ -126618,9 +126533,9 @@ webhooks: - name - full_name - private - repository: *693 - repository_selection: *713 - requester: *710 + repository: *691 + repository_selection: *711 + requester: *708 sender: *4 required: - action @@ -126699,11 +126614,11 @@ webhooks: type: string enum: - suspend - enterprise: *690 + enterprise: *688 installation: *20 - organization: *692 - repositories: *711 - repository: *693 + organization: *690 + repositories: *709 + repository: *691 requester: type: - 'null' @@ -126885,10 +126800,10 @@ webhooks: type: string required: - from - enterprise: *690 - installation: *691 - organization: *692 - repository: *693 + enterprise: *688 + installation: *689 + organization: *690 + repository: *691 sender: *4 target_type: type: string @@ -126967,11 +126882,11 @@ webhooks: type: string enum: - unsuspend - enterprise: *690 + enterprise: *688 installation: *20 - organization: *692 - repositories: *711 - repository: *693 + organization: *690 + repositories: *709 + repository: *691 requester: type: - 'null' @@ -127219,8 +127134,8 @@ webhooks: - performed_via_github_app - body - reactions - enterprise: *690 - installation: *691 + enterprise: *688 + installation: *689 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -128037,8 +127952,8 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *627 - issue_dependencies_summary: *628 + sub_issues_summary: *625 + issue_dependencies_summary: *626 state: description: State of the issue; either 'open' or 'closed' type: string @@ -128055,7 +127970,7 @@ webhooks: title: description: Title of the issue type: string - type: *216 + type: *215 updated_at: type: string format: date-time @@ -128399,8 +128314,8 @@ webhooks: - state - locked - assignee - organization: *692 - repository: *693 + organization: *690 + repository: *691 sender: *4 required: - action @@ -128480,7 +128395,7 @@ webhooks: type: string enum: - deleted - comment: &714 + comment: &712 title: issue comment description: The [comment](https://docs.github.com/rest/issues/comments#get-an-issue-comment) itself. @@ -128647,8 +128562,8 @@ webhooks: - performed_via_github_app - body - reactions - enterprise: *690 - installation: *691 + enterprise: *688 + installation: *689 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -129461,8 +129376,8 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *627 - issue_dependencies_summary: *628 + sub_issues_summary: *625 + issue_dependencies_summary: *626 state: description: State of the issue; either 'open' or 'closed' type: string @@ -129479,7 +129394,7 @@ webhooks: title: description: Title of the issue type: string - type: *216 + type: *215 updated_at: type: string format: date-time @@ -129825,8 +129740,8 @@ webhooks: - state - locked - assignee - organization: *692 - repository: *693 + organization: *690 + repository: *691 sender: *4 required: - action @@ -129906,7 +129821,7 @@ webhooks: type: string enum: - edited - changes: &738 + changes: &736 description: The changes to the comment. type: object properties: @@ -129918,9 +129833,9 @@ webhooks: type: string required: - from - comment: *714 - enterprise: *690 - installation: *691 + comment: *712 + enterprise: *688 + installation: *689 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -130736,8 +130651,8 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *627 - issue_dependencies_summary: *628 + sub_issues_summary: *625 + issue_dependencies_summary: *626 state: description: State of the issue; either 'open' or 'closed' type: string @@ -130754,7 +130669,7 @@ webhooks: title: description: Title of the issue type: string - type: *216 + type: *215 updated_at: type: string format: date-time @@ -131098,8 +131013,8 @@ webhooks: - state - locked - assignee - organization: *692 - repository: *693 + organization: *690 + repository: *691 sender: *4 required: - action @@ -131189,9 +131104,9 @@ webhooks: type: number blocking_issue: *71 blocking_issue_repo: *69 - installation: *691 - organization: *692 - repository: *693 + installation: *689 + organization: *690 + repository: *691 sender: *4 required: - action @@ -131280,9 +131195,9 @@ webhooks: type: number blocking_issue: *71 blocking_issue_repo: *69 - installation: *691 - organization: *692 - repository: *693 + installation: *689 + organization: *690 + repository: *691 sender: *4 required: - action @@ -131370,9 +131285,9 @@ webhooks: description: The ID of the blocking issue. type: number blocking_issue: *71 - installation: *691 - organization: *692 - repository: *693 + installation: *689 + organization: *690 + repository: *691 sender: *4 required: - action @@ -131461,9 +131376,9 @@ webhooks: description: The ID of the blocking issue. type: number blocking_issue: *71 - installation: *691 - organization: *692 - repository: *693 + installation: *689 + organization: *690 + repository: *691 sender: *4 required: - action @@ -131543,10 +131458,10 @@ webhooks: type: string enum: - assigned - assignee: *710 - enterprise: *690 - installation: *691 - issue: &717 + assignee: *708 + enterprise: *688 + installation: *689 + issue: &715 title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -132358,11 +132273,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *627 - issue_dependencies_summary: *628 + sub_issues_summary: *625 + issue_dependencies_summary: *626 issue_field_values: type: array - items: *629 + items: *627 state: description: State of the issue; either 'open' or 'closed' type: string @@ -132379,7 +132294,7 @@ webhooks: title: description: Title of the issue type: string - type: *216 + type: *215 updated_at: type: string format: date-time @@ -132482,8 +132397,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *692 - repository: *693 + organization: *690 + repository: *691 sender: *4 required: - action @@ -132563,8 +132478,8 @@ webhooks: type: string enum: - closed - enterprise: *690 - installation: *691 + enterprise: *688 + installation: *689 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -133381,11 +133296,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *627 - issue_dependencies_summary: *628 + sub_issues_summary: *625 + issue_dependencies_summary: *626 issue_field_values: type: array - items: *629 + items: *627 state: description: State of the issue; either 'open' or 'closed' type: string @@ -133402,7 +133317,7 @@ webhooks: title: description: Title of the issue type: string - type: *216 + type: *215 updated_at: type: string format: date-time @@ -133648,8 +133563,8 @@ webhooks: required: - state - closed_at - organization: *692 - repository: *693 + organization: *690 + repository: *691 sender: *4 required: - action @@ -133728,8 +133643,8 @@ webhooks: type: string enum: - deleted - enterprise: *690 - installation: *691 + enterprise: *688 + installation: *689 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -134537,11 +134452,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *627 - issue_dependencies_summary: *628 + sub_issues_summary: *625 + issue_dependencies_summary: *626 issue_field_values: type: array - items: *629 + items: *627 state: description: State of the issue; either 'open' or 'closed' type: string @@ -134558,7 +134473,7 @@ webhooks: title: description: Title of the issue type: string - type: *216 + type: *215 updated_at: type: string format: date-time @@ -134660,8 +134575,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *692 - repository: *693 + organization: *690 + repository: *691 sender: *4 required: - action @@ -134740,8 +134655,8 @@ webhooks: type: string enum: - demilestoned - enterprise: *690 - installation: *691 + enterprise: *688 + installation: *689 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -135572,11 +135487,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *627 - issue_dependencies_summary: *628 + sub_issues_summary: *625 + issue_dependencies_summary: *626 issue_field_values: type: array - items: *629 + items: *627 state: description: State of the issue; either 'open' or 'closed' type: string @@ -135593,7 +135508,7 @@ webhooks: title: description: Title of the issue type: string - type: *216 + type: *215 updated_at: type: string format: date-time @@ -135674,7 +135589,7 @@ webhooks: format: uri user_view_type: type: string - milestone: &715 + milestone: &713 title: Milestone description: A collection of related issues and pull requests. type: object @@ -135817,8 +135732,8 @@ webhooks: - updated_at - due_on - closed_at - organization: *692 - repository: *693 + organization: *690 + repository: *691 sender: *4 required: - action @@ -135917,8 +135832,8 @@ webhooks: type: string required: - from - enterprise: *690 - installation: *691 + enterprise: *688 + installation: *689 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -136730,11 +136645,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *627 - issue_dependencies_summary: *628 + sub_issues_summary: *625 + issue_dependencies_summary: *626 issue_field_values: type: array - items: *629 + items: *627 state: description: State of the issue; either 'open' or 'closed' type: string @@ -136748,7 +136663,7 @@ webhooks: timeline_url: type: string format: uri - type: *216 + type: *215 title: description: Title of the issue type: string @@ -136854,9 +136769,9 @@ webhooks: - active_lock_reason - body - reactions - label: *709 - organization: *692 - repository: *693 + label: *707 + organization: *690 + repository: *691 sender: *4 required: - action @@ -136936,8 +136851,8 @@ webhooks: type: string enum: - labeled - enterprise: *690 - installation: *691 + enterprise: *688 + installation: *689 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -137748,11 +137663,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *627 - issue_dependencies_summary: *628 + sub_issues_summary: *625 + issue_dependencies_summary: *626 issue_field_values: type: array - items: *629 + items: *627 state: description: State of the issue; either 'open' or 'closed' type: string @@ -137766,7 +137681,7 @@ webhooks: timeline_url: type: string format: uri - type: *216 + type: *215 title: description: Title of the issue type: string @@ -137872,9 +137787,9 @@ webhooks: - active_lock_reason - body - reactions - label: *709 - organization: *692 - repository: *693 + label: *707 + organization: *690 + repository: *691 sender: *4 required: - action @@ -137954,8 +137869,8 @@ webhooks: type: string enum: - locked - enterprise: *690 - installation: *691 + enterprise: *688 + installation: *689 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -138791,11 +138706,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *627 - issue_dependencies_summary: *628 + sub_issues_summary: *625 + issue_dependencies_summary: *626 issue_field_values: type: array - items: *629 + items: *627 state: description: State of the issue; either 'open' or 'closed' type: string @@ -138809,7 +138724,7 @@ webhooks: timeline_url: type: string format: uri - type: *216 + type: *215 title: description: Title of the issue type: string @@ -138892,8 +138807,8 @@ webhooks: format: uri user_view_type: type: string - organization: *692 - repository: *693 + organization: *690 + repository: *691 sender: *4 required: - action @@ -138972,8 +138887,8 @@ webhooks: type: string enum: - milestoned - enterprise: *690 - installation: *691 + enterprise: *688 + installation: *689 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -139803,11 +139718,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *627 - issue_dependencies_summary: *628 + sub_issues_summary: *625 + issue_dependencies_summary: *626 issue_field_values: type: array - items: *629 + items: *627 state: description: State of the issue; either 'open' or 'closed' type: string @@ -139824,7 +139739,7 @@ webhooks: title: description: Title of the issue type: string - type: *216 + type: *215 updated_at: type: string format: date-time @@ -139904,9 +139819,9 @@ webhooks: format: uri user_view_type: type: string - milestone: *715 - organization: *692 - repository: *693 + milestone: *713 + organization: *690 + repository: *691 sender: *4 required: - action @@ -140798,11 +140713,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *627 - issue_dependencies_summary: *628 + sub_issues_summary: *625 + issue_dependencies_summary: *626 issue_field_values: type: array - items: *629 + items: *627 state: description: State of the issue; either 'open' or 'closed' type: string @@ -140898,7 +140813,7 @@ webhooks: required: - login - id - type: *216 + type: *215 required: - id - number @@ -141379,8 +141294,8 @@ webhooks: required: - old_issue - old_repository - enterprise: *690 - installation: *691 + enterprise: *688 + installation: *689 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -142192,11 +142107,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *627 - issue_dependencies_summary: *628 + sub_issues_summary: *625 + issue_dependencies_summary: *626 issue_field_values: type: array - items: *629 + items: *627 state: description: State of the issue; either 'open' or 'closed' type: string @@ -142213,7 +142128,7 @@ webhooks: title: description: Title of the issue type: string - type: *216 + type: *215 updated_at: type: string format: date-time @@ -142315,8 +142230,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *692 - repository: *693 + organization: *690 + repository: *691 sender: *4 required: - action @@ -142396,9 +142311,9 @@ webhooks: type: string enum: - pinned - enterprise: *690 - installation: *691 - issue: &716 + enterprise: *688 + installation: *689 + issue: &714 title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -143204,11 +143119,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *627 - issue_dependencies_summary: *628 + sub_issues_summary: *625 + issue_dependencies_summary: *626 issue_field_values: type: array - items: *629 + items: *627 state: description: State of the issue; either 'open' or 'closed' type: string @@ -143225,7 +143140,7 @@ webhooks: title: description: Title of the issue type: string - type: *216 + type: *215 updated_at: type: string format: date-time @@ -143327,8 +143242,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *692 - repository: *693 + organization: *690 + repository: *691 sender: *4 required: - action @@ -143407,8 +143322,8 @@ webhooks: type: string enum: - reopened - enterprise: *690 - installation: *691 + enterprise: *688 + installation: *689 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -144242,11 +144157,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *627 - issue_dependencies_summary: *628 + sub_issues_summary: *625 + issue_dependencies_summary: *626 issue_field_values: type: array - items: *629 + items: *627 state: description: State of the issue; either 'open' or 'closed' type: string @@ -144343,9 +144258,9 @@ webhooks: format: uri user_view_type: type: string - type: *216 - organization: *692 - repository: *693 + type: *215 + organization: *690 + repository: *691 sender: *4 required: - action @@ -145234,11 +145149,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *627 - issue_dependencies_summary: *628 + sub_issues_summary: *625 + issue_dependencies_summary: *626 issue_field_values: type: array - items: *629 + items: *627 state: description: State of the issue; either 'open' or 'closed' type: string @@ -145255,7 +145170,7 @@ webhooks: title: description: Title of the issue type: string - type: *216 + type: *215 updated_at: type: string format: date-time @@ -145837,11 +145752,11 @@ webhooks: required: - new_issue - new_repository - enterprise: *690 - installation: *691 - issue: *716 - organization: *692 - repository: *693 + enterprise: *688 + installation: *689 + issue: *714 + organization: *690 + repository: *691 sender: *4 required: - action @@ -145921,12 +145836,12 @@ webhooks: type: string enum: - typed - enterprise: *690 - installation: *691 - issue: *717 - type: *216 - organization: *692 - repository: *693 + enterprise: *688 + installation: *689 + issue: *715 + type: *215 + organization: *690 + repository: *691 sender: *4 required: - action @@ -146007,7 +145922,7 @@ webhooks: type: string enum: - unassigned - assignee: &741 + assignee: &739 title: User type: - object @@ -146079,11 +145994,11 @@ webhooks: required: - login - id - enterprise: *690 - installation: *691 - issue: *717 - organization: *692 - repository: *693 + enterprise: *688 + installation: *689 + issue: *715 + organization: *690 + repository: *691 sender: *4 required: - action @@ -146162,12 +146077,12 @@ webhooks: type: string enum: - unlabeled - enterprise: *690 - installation: *691 - issue: *717 - label: *709 - organization: *692 - repository: *693 + enterprise: *688 + installation: *689 + issue: *715 + label: *707 + organization: *690 + repository: *691 sender: *4 required: - action @@ -146247,8 +146162,8 @@ webhooks: type: string enum: - unlocked - enterprise: *690 - installation: *691 + enterprise: *688 + installation: *689 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -147082,11 +146997,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *627 - issue_dependencies_summary: *628 + sub_issues_summary: *625 + issue_dependencies_summary: *626 issue_field_values: type: array - items: *629 + items: *627 state: description: State of the issue; either 'open' or 'closed' type: string @@ -147103,7 +147018,7 @@ webhooks: title: description: Title of the issue type: string - type: *216 + type: *215 updated_at: type: string format: date-time @@ -147183,8 +147098,8 @@ webhooks: format: uri user_view_type: type: string - organization: *692 - repository: *693 + organization: *690 + repository: *691 sender: *4 required: - action @@ -147264,11 +147179,11 @@ webhooks: type: string enum: - unpinned - enterprise: *690 - installation: *691 - issue: *716 - organization: *692 - repository: *693 + enterprise: *688 + installation: *689 + issue: *714 + organization: *690 + repository: *691 sender: *4 required: - action @@ -147347,12 +147262,12 @@ webhooks: type: string enum: - untyped - enterprise: *690 - installation: *691 - issue: *717 - type: *216 - organization: *692 - repository: *693 + enterprise: *688 + installation: *689 + issue: *715 + type: *215 + organization: *690 + repository: *691 sender: *4 required: - action @@ -147432,11 +147347,11 @@ webhooks: type: string enum: - created - enterprise: *690 - installation: *691 - label: *709 - organization: *692 - repository: *693 + enterprise: *688 + installation: *689 + label: *707 + organization: *690 + repository: *691 sender: *4 required: - action @@ -147514,11 +147429,11 @@ webhooks: type: string enum: - deleted - enterprise: *690 - installation: *691 - label: *709 - organization: *692 - repository: *693 + enterprise: *688 + installation: *689 + label: *707 + organization: *690 + repository: *691 sender: *4 required: - action @@ -147628,11 +147543,11 @@ webhooks: type: string required: - from - enterprise: *690 - installation: *691 - label: *709 - organization: *692 - repository: *693 + enterprise: *688 + installation: *689 + label: *707 + organization: *690 + repository: *691 sender: *4 required: - action @@ -147714,9 +147629,9 @@ webhooks: - cancelled effective_date: type: string - enterprise: *690 - installation: *691 - marketplace_purchase: &718 + enterprise: *688 + installation: *689 + marketplace_purchase: &716 title: Marketplace Purchase type: object required: @@ -147804,8 +147719,8 @@ webhooks: type: integer unit_count: type: integer - organization: *692 - previous_marketplace_purchase: &719 + organization: *690 + previous_marketplace_purchase: &717 title: Marketplace Purchase type: object properties: @@ -147889,7 +147804,7 @@ webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *693 + repository: *691 sender: *4 required: - action @@ -147969,10 +147884,10 @@ webhooks: - changed effective_date: type: string - enterprise: *690 - installation: *691 - marketplace_purchase: *718 - organization: *692 + enterprise: *688 + installation: *689 + marketplace_purchase: *716 + organization: *690 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -148060,7 +147975,7 @@ webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *693 + repository: *691 sender: *4 required: - action @@ -148142,10 +148057,10 @@ webhooks: - pending_change effective_date: type: string - enterprise: *690 - installation: *691 - marketplace_purchase: *718 - organization: *692 + enterprise: *688 + installation: *689 + marketplace_purchase: *716 + organization: *690 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -148231,7 +148146,7 @@ webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *693 + repository: *691 sender: *4 required: - action @@ -148312,8 +148227,8 @@ webhooks: - pending_change_cancelled effective_date: type: string - enterprise: *690 - installation: *691 + enterprise: *688 + installation: *689 marketplace_purchase: title: Marketplace Purchase type: object @@ -148399,9 +148314,9 @@ webhooks: type: integer unit_count: type: integer - organization: *692 - previous_marketplace_purchase: *719 - repository: *693 + organization: *690 + previous_marketplace_purchase: *717 + repository: *691 sender: *4 required: - action @@ -148481,12 +148396,12 @@ webhooks: - purchased effective_date: type: string - enterprise: *690 - installation: *691 - marketplace_purchase: *718 - organization: *692 - previous_marketplace_purchase: *719 - repository: *693 + enterprise: *688 + installation: *689 + marketplace_purchase: *716 + organization: *690 + previous_marketplace_purchase: *717 + repository: *691 sender: *4 required: - action @@ -148588,11 +148503,11 @@ webhooks: type: string required: - to - enterprise: *690 - installation: *691 - member: *710 - organization: *692 - repository: *693 + enterprise: *688 + installation: *689 + member: *708 + organization: *690 + repository: *691 sender: *4 required: - action @@ -148694,11 +148609,11 @@ webhooks: type: - string - 'null' - enterprise: *690 - installation: *691 - member: *710 - organization: *692 - repository: *693 + enterprise: *688 + installation: *689 + member: *708 + organization: *690 + repository: *691 sender: *4 required: - action @@ -148777,11 +148692,11 @@ webhooks: type: string enum: - removed - enterprise: *690 - installation: *691 - member: *710 - organization: *692 - repository: *693 + enterprise: *688 + installation: *689 + member: *708 + organization: *690 + repository: *691 sender: *4 required: - action @@ -148859,11 +148774,11 @@ webhooks: type: string enum: - added - enterprise: *690 - installation: *691 - member: *710 - organization: *692 - repository: *693 + enterprise: *688 + installation: *689 + member: *708 + organization: *690 + repository: *691 scope: description: The scope of the membership. Currently, can only be `team`. @@ -148941,7 +148856,7 @@ webhooks: required: - login - id - team: &720 + team: &718 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -149171,11 +149086,11 @@ webhooks: type: string enum: - removed - enterprise: *690 - installation: *691 - member: *710 - organization: *692 - repository: *693 + enterprise: *688 + installation: *689 + member: *708 + organization: *690 + repository: *691 scope: description: The scope of the membership. Currently, can only be `team`. @@ -149254,7 +149169,7 @@ webhooks: required: - login - id - team: *720 + team: *718 required: - action - scope @@ -149336,8 +149251,8 @@ webhooks: type: string enum: - checks_requested - installation: *691 - merge_group: &721 + installation: *689 + merge_group: &719 type: object title: Merge Group description: A group of pull requests that the merge queue has grouped @@ -149363,8 +149278,8 @@ webhooks: - base_sha - base_ref - head_commit - organization: *692 - repository: *693 + organization: *690 + repository: *691 sender: *4 required: - action @@ -149450,10 +149365,10 @@ webhooks: - merged - invalidated - dequeued - installation: *691 - merge_group: *721 - organization: *692 - repository: *693 + installation: *689 + merge_group: *719 + organization: *690 + repository: *691 sender: *4 required: - action @@ -149526,7 +149441,7 @@ webhooks: type: string enum: - deleted - enterprise: *690 + enterprise: *688 hook: description: 'The deleted webhook. This will contain different keys based on the type of webhook it is: repository, organization, @@ -149635,12 +149550,12 @@ webhooks: hook_id: description: The id of the modified webhook. type: integer - installation: *691 - organization: *692 + installation: *689 + organization: *690 repository: anyOf: - type: 'null' - - *693 + - *691 sender: *4 required: - action @@ -149720,11 +149635,11 @@ webhooks: type: string enum: - closed - enterprise: *690 - installation: *691 - milestone: *715 - organization: *692 - repository: *693 + enterprise: *688 + installation: *689 + milestone: *713 + organization: *690 + repository: *691 sender: *4 required: - action @@ -149803,9 +149718,9 @@ webhooks: type: string enum: - created - enterprise: *690 - installation: *691 - milestone: &722 + enterprise: *688 + installation: *689 + milestone: &720 title: Milestone description: A collection of related issues and pull requests. type: object @@ -149947,8 +149862,8 @@ webhooks: - updated_at - due_on - closed_at - organization: *692 - repository: *693 + organization: *690 + repository: *691 sender: *4 required: - action @@ -150027,11 +149942,11 @@ webhooks: type: string enum: - deleted - enterprise: *690 - installation: *691 - milestone: *715 - organization: *692 - repository: *693 + enterprise: *688 + installation: *689 + milestone: *713 + organization: *690 + repository: *691 sender: *4 required: - action @@ -150141,11 +150056,11 @@ webhooks: type: string required: - from - enterprise: *690 - installation: *691 - milestone: *715 - organization: *692 - repository: *693 + enterprise: *688 + installation: *689 + milestone: *713 + organization: *690 + repository: *691 sender: *4 required: - action @@ -150225,11 +150140,11 @@ webhooks: type: string enum: - opened - enterprise: *690 - installation: *691 - milestone: *722 - organization: *692 - repository: *693 + enterprise: *688 + installation: *689 + milestone: *720 + organization: *690 + repository: *691 sender: *4 required: - action @@ -150308,11 +150223,11 @@ webhooks: type: string enum: - blocked - blocked_user: *710 - enterprise: *690 - installation: *691 - organization: *692 - repository: *693 + blocked_user: *708 + enterprise: *688 + installation: *689 + organization: *690 + repository: *691 sender: *4 required: - action @@ -150391,11 +150306,11 @@ webhooks: type: string enum: - unblocked - blocked_user: *710 - enterprise: *690 - installation: *691 - organization: *692 - repository: *693 + blocked_user: *708 + enterprise: *688 + installation: *689 + organization: *690 + repository: *691 sender: *4 required: - action @@ -150474,9 +150389,9 @@ webhooks: type: string enum: - deleted - enterprise: *690 - installation: *691 - membership: &723 + enterprise: *688 + installation: *689 + membership: &721 title: Membership description: The membership between the user and the organization. Not present when the action is `member_invited`. @@ -150586,8 +150501,8 @@ webhooks: - role - organization_url - user - organization: *692 - repository: *693 + organization: *690 + repository: *691 sender: *4 required: - action @@ -150665,11 +150580,11 @@ webhooks: type: string enum: - member_added - enterprise: *690 - installation: *691 - membership: *723 - organization: *692 - repository: *693 + enterprise: *688 + installation: *689 + membership: *721 + organization: *690 + repository: *691 sender: *4 required: - action @@ -150748,8 +150663,8 @@ webhooks: type: string enum: - member_invited - enterprise: *690 - installation: *691 + enterprise: *688 + installation: *689 invitation: description: The invitation for the user or email if the action is `member_invited`. @@ -150871,10 +150786,10 @@ webhooks: - inviter - team_count - invitation_teams_url - organization: *692 - repository: *693 + organization: *690 + repository: *691 sender: *4 - user: *710 + user: *708 required: - action - invitation @@ -150952,11 +150867,11 @@ webhooks: type: string enum: - member_removed - enterprise: *690 - installation: *691 - membership: *723 - organization: *692 - repository: *693 + enterprise: *688 + installation: *689 + membership: *721 + organization: *690 + repository: *691 sender: *4 required: - action @@ -151043,11 +150958,11 @@ webhooks: properties: from: type: string - enterprise: *690 - installation: *691 - membership: *723 - organization: *692 - repository: *693 + enterprise: *688 + installation: *689 + membership: *721 + organization: *690 + repository: *691 sender: *4 required: - action @@ -151123,9 +151038,9 @@ webhooks: type: string enum: - published - enterprise: *690 - installation: *691 - organization: *692 + enterprise: *688 + installation: *689 + organization: *690 package: description: Information about the package. type: object @@ -151648,7 +151563,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: &724 + items: &722 title: Ruby Gems metadata type: object properties: @@ -151745,7 +151660,7 @@ webhooks: - owner - package_version - registry - repository: *693 + repository: *691 sender: *4 required: - action @@ -151821,9 +151736,9 @@ webhooks: type: string enum: - updated - enterprise: *690 - installation: *691 - organization: *692 + enterprise: *688 + installation: *689 + organization: *690 package: description: Information about the package. type: object @@ -152185,7 +152100,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: *724 + items: *722 source_url: type: string format: uri @@ -152256,7 +152171,7 @@ webhooks: - owner - package_version - registry - repository: *693 + repository: *691 sender: *4 required: - action @@ -152437,12 +152352,12 @@ webhooks: - duration - created_at - updated_at - enterprise: *690 + enterprise: *688 id: type: integer - installation: *691 - organization: *692 - repository: *693 + installation: *689 + organization: *690 + repository: *691 sender: *4 required: - id @@ -152519,7 +152434,7 @@ webhooks: type: string enum: - approved - personal_access_token_request: &725 + personal_access_token_request: &723 title: Personal Access Token Request description: Details of a Personal Access Token Request. type: object @@ -152669,10 +152584,10 @@ webhooks: - token_expired - token_expires_at - token_last_used_at - enterprise: *690 - organization: *692 + enterprise: *688 + organization: *690 sender: *4 - installation: *691 + installation: *689 required: - action - personal_access_token_request @@ -152749,11 +152664,11 @@ webhooks: type: string enum: - cancelled - personal_access_token_request: *725 - enterprise: *690 - organization: *692 + personal_access_token_request: *723 + enterprise: *688 + organization: *690 sender: *4 - installation: *691 + installation: *689 required: - action - personal_access_token_request @@ -152829,11 +152744,11 @@ webhooks: type: string enum: - created - personal_access_token_request: *725 - enterprise: *690 - organization: *692 + personal_access_token_request: *723 + enterprise: *688 + organization: *690 sender: *4 - installation: *691 + installation: *689 required: - action - personal_access_token_request @@ -152908,11 +152823,11 @@ webhooks: type: string enum: - denied - personal_access_token_request: *725 - organization: *692 - enterprise: *690 + personal_access_token_request: *723 + organization: *690 + enterprise: *688 sender: *4 - installation: *691 + installation: *689 required: - action - personal_access_token_request @@ -153017,7 +152932,7 @@ webhooks: id: description: Unique identifier of the webhook. type: integer - last_response: *726 + last_response: *724 name: description: The type of webhook. The only valid value is 'web'. type: string @@ -153049,8 +152964,8 @@ webhooks: hook_id: description: The ID of the webhook that triggered the ping. type: integer - organization: *692 - repository: *693 + organization: *690 + repository: *691 sender: *4 zen: description: Random string of GitHub zen. @@ -153295,10 +153210,10 @@ webhooks: - from required: - note - enterprise: *690 - installation: *691 - organization: *692 - project_card: &727 + enterprise: *688 + installation: *689 + organization: *690 + project_card: &725 title: Project Card type: object properties: @@ -153421,7 +153336,7 @@ webhooks: - creator - created_at - updated_at - repository: *693 + repository: *691 sender: *4 required: - action @@ -153502,11 +153417,11 @@ webhooks: type: string enum: - created - enterprise: *690 - installation: *691 - organization: *692 - project_card: *727 - repository: *693 + enterprise: *688 + installation: *689 + organization: *690 + project_card: *725 + repository: *691 sender: *4 required: - action @@ -153586,9 +153501,9 @@ webhooks: type: string enum: - deleted - enterprise: *690 - installation: *691 - organization: *692 + enterprise: *688 + installation: *689 + organization: *690 project_card: title: Project Card type: object @@ -153718,7 +153633,7 @@ webhooks: repository: anyOf: - type: 'null' - - *693 + - *691 sender: *4 required: - action @@ -153812,11 +153727,11 @@ webhooks: - from required: - note - enterprise: *690 - installation: *691 - organization: *692 - project_card: *727 - repository: *693 + enterprise: *688 + installation: *689 + organization: *690 + project_card: *725 + repository: *691 sender: *4 required: - action @@ -153910,9 +153825,9 @@ webhooks: - from required: - column_id - enterprise: *690 - installation: *691 - organization: *692 + enterprise: *688 + installation: *689 + organization: *690 project_card: allOf: - title: Project Card @@ -154109,7 +154024,7 @@ webhooks: type: string required: - after_id - repository: *693 + repository: *691 sender: *4 required: - action @@ -154189,10 +154104,10 @@ webhooks: type: string enum: - closed - enterprise: *690 - installation: *691 - organization: *692 - project: &729 + enterprise: *688 + installation: *689 + organization: *690 + project: &727 title: Project type: object properties: @@ -154319,7 +154234,7 @@ webhooks: - creator - created_at - updated_at - repository: *693 + repository: *691 sender: *4 required: - action @@ -154399,10 +154314,10 @@ webhooks: type: string enum: - created - enterprise: *690 - installation: *691 - organization: *692 - project_column: &728 + enterprise: *688 + installation: *689 + organization: *690 + project_column: &726 title: Project Column type: object properties: @@ -154442,7 +154357,7 @@ webhooks: - name - created_at - updated_at - repository: *693 + repository: *691 sender: *4 required: - action @@ -154521,14 +154436,14 @@ webhooks: type: string enum: - deleted - enterprise: *690 - installation: *691 - organization: *692 - project_column: *728 + enterprise: *688 + installation: *689 + organization: *690 + project_column: *726 repository: anyOf: - type: 'null' - - *693 + - *691 sender: *4 required: - action @@ -154617,11 +154532,11 @@ webhooks: type: string required: - from - enterprise: *690 - installation: *691 - organization: *692 - project_column: *728 - repository: *693 + enterprise: *688 + installation: *689 + organization: *690 + project_column: *726 + repository: *691 sender: *4 required: - action @@ -154701,11 +154616,11 @@ webhooks: type: string enum: - moved - enterprise: *690 - installation: *691 - organization: *692 - project_column: *728 - repository: *693 + enterprise: *688 + installation: *689 + organization: *690 + project_column: *726 + repository: *691 sender: *4 required: - action @@ -154785,11 +154700,11 @@ webhooks: type: string enum: - created - enterprise: *690 - installation: *691 - organization: *692 - project: *729 - repository: *693 + enterprise: *688 + installation: *689 + organization: *690 + project: *727 + repository: *691 sender: *4 required: - action @@ -154869,14 +154784,14 @@ webhooks: type: string enum: - deleted - enterprise: *690 - installation: *691 - organization: *692 - project: *729 + enterprise: *688 + installation: *689 + organization: *690 + project: *727 repository: anyOf: - type: 'null' - - *693 + - *691 sender: *4 required: - action @@ -154977,11 +154892,11 @@ webhooks: type: string required: - from - enterprise: *690 - installation: *691 - organization: *692 - project: *729 - repository: *693 + enterprise: *688 + installation: *689 + organization: *690 + project: *727 + repository: *691 sender: *4 required: - action @@ -155060,11 +154975,11 @@ webhooks: type: string enum: - reopened - enterprise: *690 - installation: *691 - organization: *692 - project: *729 - repository: *693 + enterprise: *688 + installation: *689 + organization: *690 + project: *727 + repository: *691 sender: *4 required: - action @@ -155145,9 +155060,9 @@ webhooks: type: string enum: - closed - installation: *691 - organization: *692 - projects_v2: *249 + installation: *689 + organization: *690 + projects_v2: *248 sender: *4 required: - action @@ -155228,9 +155143,9 @@ webhooks: type: string enum: - created - installation: *691 - organization: *692 - projects_v2: *249 + installation: *689 + organization: *690 + projects_v2: *248 sender: *4 required: - action @@ -155311,9 +155226,9 @@ webhooks: type: string enum: - deleted - installation: *691 - organization: *692 - projects_v2: *249 + installation: *689 + organization: *690 + projects_v2: *248 sender: *4 required: - action @@ -155434,9 +155349,9 @@ webhooks: type: string to: type: string - installation: *691 - organization: *692 - projects_v2: *249 + installation: *689 + organization: *690 + projects_v2: *248 sender: *4 required: - action @@ -155519,7 +155434,7 @@ webhooks: type: string enum: - archived - changes: &733 + changes: &731 type: object properties: archived_at: @@ -155535,9 +155450,9 @@ webhooks: - string - 'null' format: date-time - installation: *691 - organization: *692 - projects_v2_item: &730 + installation: *689 + organization: *690 + projects_v2_item: &728 title: Projects v2 Item description: An item belonging to a project type: object @@ -155555,7 +155470,7 @@ webhooks: type: string description: The node ID of the content represented by this item. - content_type: *255 + content_type: *254 creator: *4 created_at: type: string @@ -155677,9 +155592,9 @@ webhooks: - 'null' to: type: string - installation: *691 - organization: *692 - projects_v2_item: *730 + installation: *689 + organization: *690 + projects_v2_item: *728 sender: *4 required: - action @@ -155761,9 +155676,9 @@ webhooks: type: string enum: - created - installation: *691 - organization: *692 - projects_v2_item: *730 + installation: *689 + organization: *690 + projects_v2_item: *728 sender: *4 required: - action @@ -155844,9 +155759,9 @@ webhooks: type: string enum: - deleted - installation: *691 - organization: *692 - projects_v2_item: *730 + installation: *689 + organization: *690 + projects_v2_item: *728 sender: *4 required: - action @@ -155951,7 +155866,7 @@ webhooks: oneOf: - type: string - type: integer - - &731 + - &729 title: Projects v2 Single Select Option description: An option for a single select field type: object @@ -155975,7 +155890,7 @@ webhooks: required: - id - name - - &732 + - &730 title: Projects v2 Iteration Setting description: An iteration setting for an iteration field type: object @@ -156015,8 +155930,8 @@ webhooks: oneOf: - type: string - type: integer - - *731 - - *732 + - *729 + - *730 type: - 'null' - string @@ -156039,9 +155954,9 @@ webhooks: - 'null' required: - body - installation: *691 - organization: *692 - projects_v2_item: *730 + installation: *689 + organization: *690 + projects_v2_item: *728 sender: *4 required: - action @@ -156138,9 +156053,9 @@ webhooks: type: - string - 'null' - installation: *691 - organization: *692 - projects_v2_item: *730 + installation: *689 + organization: *690 + projects_v2_item: *728 sender: *4 required: - action @@ -156223,10 +156138,10 @@ webhooks: type: string enum: - restored - changes: *733 - installation: *691 - organization: *692 - projects_v2_item: *730 + changes: *731 + installation: *689 + organization: *690 + projects_v2_item: *728 sender: *4 required: - action @@ -156308,9 +156223,9 @@ webhooks: type: string enum: - reopened - installation: *691 - organization: *692 - projects_v2: *249 + installation: *689 + organization: *690 + projects_v2: *248 sender: *4 required: - action @@ -156391,9 +156306,9 @@ webhooks: type: string enum: - created - installation: *691 - organization: *692 - projects_v2_status_update: *734 + installation: *689 + organization: *690 + projects_v2_status_update: *732 sender: *4 required: - action @@ -156474,9 +156389,9 @@ webhooks: type: string enum: - deleted - installation: *691 - organization: *692 - projects_v2_status_update: *734 + installation: *689 + organization: *690 + projects_v2_status_update: *732 sender: *4 required: - action @@ -156622,9 +156537,9 @@ webhooks: - string - 'null' format: date - installation: *691 - organization: *692 - projects_v2_status_update: *734 + installation: *689 + organization: *690 + projects_v2_status_update: *732 sender: *4 required: - action @@ -156695,10 +156610,10 @@ webhooks: title: public event type: object properties: - enterprise: *690 - installation: *691 - organization: *692 - repository: *693 + enterprise: *688 + installation: *689 + organization: *690 + repository: *691 sender: *4 required: - repository @@ -156775,13 +156690,13 @@ webhooks: type: string enum: - assigned - assignee: *710 - enterprise: *690 - installation: *691 - number: &735 + assignee: *708 + enterprise: *688 + installation: *689 + number: &733 description: The pull request number. type: integer - organization: *692 + organization: *690 pull_request: title: Pull Request type: object @@ -159130,7 +159045,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *693 + repository: *691 sender: *4 required: - action @@ -159212,11 +159127,11 @@ webhooks: type: string enum: - auto_merge_disabled - enterprise: *690 - installation: *691 + enterprise: *688 + installation: *689 number: type: integer - organization: *692 + organization: *690 pull_request: title: Pull Request type: object @@ -161558,7 +161473,7 @@ webhooks: - draft reason: type: string - repository: *693 + repository: *691 sender: *4 required: - action @@ -161640,11 +161555,11 @@ webhooks: type: string enum: - auto_merge_enabled - enterprise: *690 - installation: *691 + enterprise: *688 + installation: *689 number: type: integer - organization: *692 + organization: *690 pull_request: title: Pull Request type: object @@ -163986,7 +163901,7 @@ webhooks: - draft reason: type: string - repository: *693 + repository: *691 sender: *4 required: - action @@ -164068,13 +163983,13 @@ webhooks: type: string enum: - closed - enterprise: *690 - installation: *691 - number: *735 - organization: *692 - pull_request: &736 + enterprise: *688 + installation: *689 + number: *733 + organization: *690 + pull_request: &734 allOf: - - *549 + - *547 - type: object properties: allow_auto_merge: @@ -164136,7 +164051,7 @@ webhooks: Please use `squash_merge_commit_title` instead.** type: boolean default: false - repository: *693 + repository: *691 sender: *4 required: - action @@ -164217,12 +164132,12 @@ webhooks: type: string enum: - converted_to_draft - enterprise: *690 - installation: *691 - number: *735 - organization: *692 - pull_request: *736 - repository: *693 + enterprise: *688 + installation: *689 + number: *733 + organization: *690 + pull_request: *734 + repository: *691 sender: *4 required: - action @@ -164302,11 +164217,11 @@ webhooks: type: string enum: - demilestoned - enterprise: *690 - milestone: *252 - number: *735 - organization: *692 - pull_request: &737 + enterprise: *688 + milestone: *251 + number: *733 + organization: *690 + pull_request: &735 title: Pull Request type: object properties: @@ -166633,7 +166548,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *693 + repository: *691 sender: *4 required: - action @@ -166712,11 +166627,11 @@ webhooks: type: string enum: - dequeued - enterprise: *690 - installation: *691 + enterprise: *688 + installation: *689 number: type: integer - organization: *692 + organization: *690 pull_request: title: Pull Request type: object @@ -169062,7 +168977,7 @@ webhooks: - BRANCH_PROTECTIONS - GIT_TREE_INVALID - INVALID_MERGE_COMMIT - repository: *693 + repository: *691 sender: *4 required: - action @@ -169186,12 +169101,12 @@ webhooks: type: string required: - from - enterprise: *690 - installation: *691 - number: *735 - organization: *692 - pull_request: *736 - repository: *693 + enterprise: *688 + installation: *689 + number: *733 + organization: *690 + pull_request: *734 + repository: *691 sender: *4 required: - action @@ -169271,11 +169186,11 @@ webhooks: type: string enum: - enqueued - enterprise: *690 - installation: *691 + enterprise: *688 + installation: *689 number: type: integer - organization: *692 + organization: *690 pull_request: title: Pull Request type: object @@ -171606,7 +171521,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *693 + repository: *691 sender: *4 required: - action @@ -171686,11 +171601,11 @@ webhooks: type: string enum: - labeled - enterprise: *690 - installation: *691 - label: *709 - number: *735 - organization: *692 + enterprise: *688 + installation: *689 + label: *707 + number: *733 + organization: *690 pull_request: title: Pull Request type: object @@ -174038,7 +173953,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *693 + repository: *691 sender: *4 required: - action @@ -174119,10 +174034,10 @@ webhooks: type: string enum: - locked - enterprise: *690 - installation: *691 - number: *735 - organization: *692 + enterprise: *688 + installation: *689 + number: *733 + organization: *690 pull_request: title: Pull Request type: object @@ -176468,7 +176383,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *693 + repository: *691 sender: *4 required: - action @@ -176548,12 +176463,12 @@ webhooks: type: string enum: - milestoned - enterprise: *690 - milestone: *252 - number: *735 - organization: *692 - pull_request: *737 - repository: *693 + enterprise: *688 + milestone: *251 + number: *733 + organization: *690 + pull_request: *735 + repository: *691 sender: *4 required: - action @@ -176632,12 +176547,12 @@ webhooks: type: string enum: - opened - enterprise: *690 - installation: *691 - number: *735 - organization: *692 - pull_request: *736 - repository: *693 + enterprise: *688 + installation: *689 + number: *733 + organization: *690 + pull_request: *734 + repository: *691 sender: *4 required: - action @@ -176718,12 +176633,12 @@ webhooks: type: string enum: - ready_for_review - enterprise: *690 - installation: *691 - number: *735 - organization: *692 - pull_request: *736 - repository: *693 + enterprise: *688 + installation: *689 + number: *733 + organization: *690 + pull_request: *734 + repository: *691 sender: *4 required: - action @@ -176803,12 +176718,12 @@ webhooks: type: string enum: - reopened - enterprise: *690 - installation: *691 - number: *735 - organization: *692 - pull_request: *736 - repository: *693 + enterprise: *688 + installation: *689 + number: *733 + organization: *690 + pull_request: *734 + repository: *691 sender: *4 required: - action @@ -177183,9 +177098,9 @@ webhooks: - start_side - side - reactions - enterprise: *690 - installation: *691 - organization: *692 + enterprise: *688 + installation: *689 + organization: *690 pull_request: type: object properties: @@ -179415,7 +179330,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *693 + repository: *691 sender: *4 required: - action @@ -179495,7 +179410,7 @@ webhooks: type: string enum: - deleted - comment: &739 + comment: &737 title: Pull Request Review Comment description: The [comment](https://docs.github.com/rest/pulls/comments#get-a-review-comment-for-a-pull-request) itself. @@ -179788,9 +179703,9 @@ webhooks: - start_side - side - reactions - enterprise: *690 - installation: *691 - organization: *692 + enterprise: *688 + installation: *689 + organization: *690 pull_request: type: object properties: @@ -182008,7 +181923,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *693 + repository: *691 sender: *4 required: - action @@ -182088,11 +182003,11 @@ webhooks: type: string enum: - edited - changes: *738 - comment: *739 - enterprise: *690 - installation: *691 - organization: *692 + changes: *736 + comment: *737 + enterprise: *688 + installation: *689 + organization: *690 pull_request: type: object properties: @@ -184313,7 +184228,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *693 + repository: *691 sender: *4 required: - action @@ -184394,9 +184309,9 @@ webhooks: type: string enum: - dismissed - enterprise: *690 - installation: *691 - organization: *692 + enterprise: *688 + installation: *689 + organization: *690 pull_request: title: Simple Pull Request type: object @@ -186629,7 +186544,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *693 + repository: *691 review: description: The review that was affected. type: object @@ -186880,9 +186795,9 @@ webhooks: type: string required: - from - enterprise: *690 - installation: *691 - organization: *692 + enterprise: *688 + installation: *689 + organization: *690 pull_request: title: Simple Pull Request type: object @@ -188996,8 +188911,8 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *693 - review: &740 + repository: *691 + review: &738 description: The review that was affected. type: object properties: @@ -189235,12 +189150,12 @@ webhooks: type: string enum: - review_request_removed - enterprise: *690 - installation: *691 + enterprise: *688 + installation: *689 number: description: The pull request number. type: integer - organization: *692 + organization: *690 pull_request: title: Pull Request type: object @@ -191587,7 +191502,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *693 + repository: *691 requested_reviewer: title: User type: @@ -191673,12 +191588,12 @@ webhooks: type: string enum: - review_request_removed - enterprise: *690 - installation: *691 + enterprise: *688 + installation: *689 number: description: The pull request number. type: integer - organization: *692 + organization: *690 pull_request: title: Pull Request type: object @@ -194032,7 +193947,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *693 + repository: *691 requested_team: title: Team description: Groups of organization members that gives permissions @@ -194227,12 +194142,12 @@ webhooks: type: string enum: - review_requested - enterprise: *690 - installation: *691 + enterprise: *688 + installation: *689 number: description: The pull request number. type: integer - organization: *692 + organization: *690 pull_request: title: Pull Request type: object @@ -196581,7 +196496,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *693 + repository: *691 requested_reviewer: title: User type: @@ -196668,12 +196583,12 @@ webhooks: type: string enum: - review_requested - enterprise: *690 - installation: *691 + enterprise: *688 + installation: *689 number: description: The pull request number. type: integer - organization: *692 + organization: *690 pull_request: title: Pull Request type: object @@ -199013,7 +198928,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *693 + repository: *691 requested_team: title: Team description: Groups of organization members that gives permissions @@ -199197,9 +199112,9 @@ webhooks: type: string enum: - submitted - enterprise: *690 - installation: *691 - organization: *692 + enterprise: *688 + installation: *689 + organization: *690 pull_request: title: Simple Pull Request type: object @@ -201435,8 +201350,8 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *693 - review: *740 + repository: *691 + review: *738 sender: *4 required: - action @@ -201516,9 +201431,9 @@ webhooks: type: string enum: - resolved - enterprise: *690 - installation: *691 - organization: *692 + enterprise: *688 + installation: *689 + organization: *690 pull_request: title: Simple Pull Request type: object @@ -203649,7 +203564,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *693 + repository: *691 sender: *4 thread: type: object @@ -204046,9 +203961,9 @@ webhooks: type: string enum: - unresolved - enterprise: *690 - installation: *691 - organization: *692 + enterprise: *688 + installation: *689 + organization: *690 pull_request: title: Simple Pull Request type: object @@ -206162,7 +206077,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *693 + repository: *691 sender: *4 thread: type: object @@ -206561,10 +206476,10 @@ webhooks: type: string before: type: string - enterprise: *690 - installation: *691 - number: *735 - organization: *692 + enterprise: *688 + installation: *689 + number: *733 + organization: *690 pull_request: title: Pull Request type: object @@ -208899,7 +208814,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *693 + repository: *691 sender: *4 required: - action @@ -208981,11 +208896,11 @@ webhooks: type: string enum: - unassigned - assignee: *741 - enterprise: *690 - installation: *691 - number: *735 - organization: *692 + assignee: *739 + enterprise: *688 + installation: *689 + number: *733 + organization: *690 pull_request: title: Pull Request type: object @@ -211335,7 +211250,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *693 + repository: *691 sender: *4 required: - action @@ -211414,11 +211329,11 @@ webhooks: type: string enum: - unlabeled - enterprise: *690 - installation: *691 - label: *709 - number: *735 - organization: *692 + enterprise: *688 + installation: *689 + label: *707 + number: *733 + organization: *690 pull_request: title: Pull Request type: object @@ -213757,7 +213672,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *693 + repository: *691 sender: *4 required: - action @@ -213838,10 +213753,10 @@ webhooks: type: string enum: - unlocked - enterprise: *690 - installation: *691 - number: *735 - organization: *692 + enterprise: *688 + installation: *689 + number: *733 + organization: *690 pull_request: title: Pull Request type: object @@ -216170,7 +216085,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *693 + repository: *691 sender: *4 required: - action @@ -216373,7 +216288,7 @@ webhooks: deleted: description: Whether this push deleted the `ref`. type: boolean - enterprise: *690 + enterprise: *688 forced: description: Whether this push was a force push of the `ref`. type: boolean @@ -216468,8 +216383,8 @@ webhooks: - url - author - committer - installation: *691 - organization: *692 + installation: *689 + organization: *690 pusher: title: Committer description: Metaproperties for Git author/committer information. @@ -217057,9 +216972,9 @@ webhooks: type: string enum: - published - enterprise: *690 - installation: *691 - organization: *692 + enterprise: *688 + installation: *689 + organization: *690 registry_package: type: object properties: @@ -217536,7 +217451,7 @@ webhooks: type: string rubygems_metadata: type: array - items: *724 + items: *722 summary: type: string tag_name: @@ -217592,7 +217507,7 @@ webhooks: - owner - package_version - registry - repository: *693 + repository: *691 sender: *4 required: - action @@ -217670,9 +217585,9 @@ webhooks: type: string enum: - updated - enterprise: *690 - installation: *691 - organization: *692 + enterprise: *688 + installation: *689 + organization: *690 registry_package: type: object properties: @@ -217984,7 +217899,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: *724 + items: *722 summary: type: string tag_name: @@ -218034,7 +217949,7 @@ webhooks: - owner - package_version - registry - repository: *693 + repository: *691 sender: *4 required: - action @@ -218111,10 +218026,10 @@ webhooks: type: string enum: - created - enterprise: *690 - installation: *691 - organization: *692 - release: &742 + enterprise: *688 + installation: *689 + organization: *690 + release: &740 title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) object. @@ -218445,7 +218360,7 @@ webhooks: - updated_at - zipball_url - body - repository: *693 + repository: *691 sender: *4 required: - action @@ -218522,11 +218437,11 @@ webhooks: type: string enum: - deleted - enterprise: *690 - installation: *691 - organization: *692 - release: *742 - repository: *693 + enterprise: *688 + installation: *689 + organization: *690 + release: *740 + repository: *691 sender: *4 required: - action @@ -218643,11 +218558,11 @@ webhooks: type: boolean required: - to - enterprise: *690 - installation: *691 - organization: *692 - release: *742 - repository: *693 + enterprise: *688 + installation: *689 + organization: *690 + release: *740 + repository: *691 sender: *4 required: - action @@ -218725,9 +218640,9 @@ webhooks: type: string enum: - prereleased - enterprise: *690 - installation: *691 - organization: *692 + enterprise: *688 + installation: *689 + organization: *690 release: title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) @@ -219063,7 +218978,7 @@ webhooks: - string - 'null' format: uri - repository: *693 + repository: *691 sender: *4 required: - action @@ -219139,10 +219054,10 @@ webhooks: type: string enum: - published - enterprise: *690 - installation: *691 - organization: *692 - release: &743 + enterprise: *688 + installation: *689 + organization: *690 + release: &741 title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) object. @@ -219475,7 +219390,7 @@ webhooks: - string - 'null' format: uri - repository: *693 + repository: *691 sender: *4 required: - action @@ -219551,11 +219466,11 @@ webhooks: type: string enum: - released - enterprise: *690 - installation: *691 - organization: *692 - release: *742 - repository: *693 + enterprise: *688 + installation: *689 + organization: *690 + release: *740 + repository: *691 sender: *4 required: - action @@ -219631,11 +219546,11 @@ webhooks: type: string enum: - unpublished - enterprise: *690 - installation: *691 - organization: *692 - release: *743 - repository: *693 + enterprise: *688 + installation: *689 + organization: *690 + release: *741 + repository: *691 sender: *4 required: - action @@ -219711,11 +219626,11 @@ webhooks: type: string enum: - published - enterprise: *690 - installation: *691 - organization: *692 - repository: *693 - repository_advisory: *613 + enterprise: *688 + installation: *689 + organization: *690 + repository: *691 + repository_advisory: *611 sender: *4 required: - action @@ -219791,11 +219706,11 @@ webhooks: type: string enum: - reported - enterprise: *690 - installation: *691 - organization: *692 - repository: *693 - repository_advisory: *613 + enterprise: *688 + installation: *689 + organization: *690 + repository: *691 + repository_advisory: *611 sender: *4 required: - action @@ -219871,10 +219786,10 @@ webhooks: type: string enum: - archived - enterprise: *690 - installation: *691 - organization: *692 - repository: *693 + enterprise: *688 + installation: *689 + organization: *690 + repository: *691 sender: *4 required: - action @@ -219951,10 +219866,10 @@ webhooks: type: string enum: - created - enterprise: *690 - installation: *691 - organization: *692 - repository: *693 + enterprise: *688 + installation: *689 + organization: *690 + repository: *691 sender: *4 required: - action @@ -220032,10 +219947,10 @@ webhooks: type: string enum: - deleted - enterprise: *690 - installation: *691 - organization: *692 - repository: *693 + enterprise: *688 + installation: *689 + organization: *690 + repository: *691 sender: *4 required: - action @@ -220120,10 +220035,10 @@ webhooks: additionalProperties: true description: The `client_payload` that was specified in the `POST /repos/{owner}/{repo}/dispatches` request body. - enterprise: *690 - installation: *691 - organization: *692 - repository: *693 + enterprise: *688 + installation: *689 + organization: *690 + repository: *691 sender: *4 required: - action @@ -220238,10 +220153,10 @@ webhooks: - 'null' items: type: string - enterprise: *690 - installation: *691 - organization: *692 - repository: *693 + enterprise: *688 + installation: *689 + organization: *690 + repository: *691 sender: *4 required: - action @@ -220313,10 +220228,10 @@ webhooks: title: repository_import event type: object properties: - enterprise: *690 - installation: *691 - organization: *692 - repository: *693 + enterprise: *688 + installation: *689 + organization: *690 + repository: *691 sender: *4 status: type: string @@ -220397,10 +220312,10 @@ webhooks: type: string enum: - privatized - enterprise: *690 - installation: *691 - organization: *692 - repository: *693 + enterprise: *688 + installation: *689 + organization: *690 + repository: *691 sender: *4 required: - action @@ -220477,10 +220392,10 @@ webhooks: type: string enum: - publicized - enterprise: *690 - installation: *691 - organization: *692 - repository: *693 + enterprise: *688 + installation: *689 + organization: *690 + repository: *691 sender: *4 required: - action @@ -220574,10 +220489,10 @@ webhooks: - name required: - repository - enterprise: *690 - installation: *691 - organization: *692 - repository: *693 + enterprise: *688 + installation: *689 + organization: *690 + repository: *691 sender: *4 required: - action @@ -220657,10 +220572,10 @@ webhooks: type: string enum: - created - enterprise: *690 - installation: *691 - organization: *692 - repository: *693 + enterprise: *688 + installation: *689 + organization: *690 + repository: *691 repository_ruleset: *292 sender: *4 required: @@ -220739,10 +220654,10 @@ webhooks: type: string enum: - deleted - enterprise: *690 - installation: *691 - organization: *692 - repository: *693 + enterprise: *688 + installation: *689 + organization: *690 + repository: *691 repository_ruleset: *292 sender: *4 required: @@ -220821,10 +220736,10 @@ webhooks: type: string enum: - edited - enterprise: *690 - installation: *691 - organization: *692 - repository: *693 + enterprise: *688 + installation: *689 + organization: *690 + repository: *691 repository_ruleset: *292 changes: type: object @@ -220886,16 +220801,16 @@ webhooks: properties: added: type: array - items: *569 + items: *567 deleted: type: array - items: *569 + items: *567 updated: type: array items: type: object properties: - rule: *569 + rule: *567 changes: type: object properties: @@ -221132,10 +221047,10 @@ webhooks: - from required: - owner - enterprise: *690 - installation: *691 - organization: *692 - repository: *693 + enterprise: *688 + installation: *689 + organization: *690 + repository: *691 sender: *4 required: - action @@ -221213,10 +221128,10 @@ webhooks: type: string enum: - unarchived - enterprise: *690 - installation: *691 - organization: *692 - repository: *693 + enterprise: *688 + installation: *689 + organization: *690 + repository: *691 sender: *4 required: - action @@ -221294,7 +221209,7 @@ webhooks: type: string enum: - create - alert: &744 + alert: &742 title: Repository Vulnerability Alert Alert description: The security alert of the vulnerable dependency. type: object @@ -221418,10 +221333,10 @@ webhooks: type: string enum: - open - enterprise: *690 - installation: *691 - organization: *692 - repository: *693 + enterprise: *688 + installation: *689 + organization: *690 + repository: *691 sender: *4 required: - action @@ -221631,10 +221546,10 @@ webhooks: type: string enum: - dismissed - enterprise: *690 - installation: *691 - organization: *692 - repository: *693 + enterprise: *688 + installation: *689 + organization: *690 + repository: *691 sender: *4 required: - action @@ -221712,11 +221627,11 @@ webhooks: type: string enum: - reopen - alert: *744 - enterprise: *690 - installation: *691 - organization: *692 - repository: *693 + alert: *742 + enterprise: *688 + installation: *689 + organization: *690 + repository: *691 sender: *4 required: - action @@ -221918,10 +221833,10 @@ webhooks: enum: - fixed - open - enterprise: *690 - installation: *691 - organization: *692 - repository: *693 + enterprise: *688 + installation: *689 + organization: *690 + repository: *691 sender: *4 required: - action @@ -221999,17 +221914,17 @@ webhooks: type: string enum: - assigned - alert: &745 + alert: &743 type: object properties: - number: *163 - created_at: *164 + number: *162 + created_at: *163 updated_at: anyOf: - type: 'null' - - *165 - url: *166 - html_url: *167 + - *164 + url: *165 + html_url: *166 locations_url: type: string format: uri @@ -222114,10 +222029,10 @@ webhooks: - type: 'null' - *4 assignee: *4 - enterprise: *690 - installation: *691 - organization: *692 - repository: *693 + enterprise: *688 + installation: *689 + organization: *690 + repository: *691 sender: *4 required: - action @@ -222195,11 +222110,11 @@ webhooks: type: string enum: - created - alert: *745 - enterprise: *690 - installation: *691 - organization: *692 - repository: *693 + alert: *743 + enterprise: *688 + installation: *689 + organization: *690 + repository: *691 sender: *4 required: - action @@ -222280,11 +222195,11 @@ webhooks: type: string enum: - created - alert: *745 - installation: *691 - location: *746 - organization: *692 - repository: *693 + alert: *743 + installation: *689 + location: *744 + organization: *690 + repository: *691 sender: *4 required: - location @@ -222522,11 +222437,11 @@ webhooks: type: string enum: - publicly_leaked - alert: *745 - enterprise: *690 - installation: *691 - organization: *692 - repository: *693 + alert: *743 + enterprise: *688 + installation: *689 + organization: *690 + repository: *691 sender: *4 required: - action @@ -222604,11 +222519,11 @@ webhooks: type: string enum: - reopened - alert: *745 - enterprise: *690 - installation: *691 - organization: *692 - repository: *693 + alert: *743 + enterprise: *688 + installation: *689 + organization: *690 + repository: *691 sender: *4 required: - action @@ -222686,11 +222601,11 @@ webhooks: type: string enum: - resolved - alert: *745 - enterprise: *690 - installation: *691 - organization: *692 - repository: *693 + alert: *743 + enterprise: *688 + installation: *689 + organization: *690 + repository: *691 sender: *4 required: - action @@ -222768,12 +222683,12 @@ webhooks: type: string enum: - unassigned - alert: *745 + alert: *743 assignee: *4 - enterprise: *690 - installation: *691 - organization: *692 - repository: *693 + enterprise: *688 + installation: *689 + organization: *690 + repository: *691 sender: *4 required: - action @@ -222851,11 +222766,11 @@ webhooks: type: string enum: - validated - alert: *745 - enterprise: *690 - installation: *691 - organization: *692 - repository: *693 + alert: *743 + enterprise: *688 + installation: *689 + organization: *690 + repository: *691 sender: *4 required: - action @@ -222985,10 +222900,10 @@ webhooks: - organization - enterprise - - repository: *693 - enterprise: *690 - installation: *691 - organization: *692 + repository: *691 + enterprise: *688 + installation: *689 + organization: *690 sender: *4 required: - action @@ -223066,11 +222981,11 @@ webhooks: type: string enum: - published - enterprise: *690 - installation: *691 - organization: *692 - repository: *693 - security_advisory: &747 + enterprise: *688 + installation: *689 + organization: *690 + repository: *691 + security_advisory: &745 description: The details of the security advisory, including summary, description, and severity. type: object @@ -223256,11 +223171,11 @@ webhooks: type: string enum: - updated - enterprise: *690 - installation: *691 - organization: *692 - repository: *693 - security_advisory: *747 + enterprise: *688 + installation: *689 + organization: *690 + repository: *691 + security_advisory: *745 sender: *4 required: - action @@ -223333,10 +223248,10 @@ webhooks: type: string enum: - withdrawn - enterprise: *690 - installation: *691 - organization: *692 - repository: *693 + enterprise: *688 + installation: *689 + organization: *690 + repository: *691 security_advisory: description: The details of the security advisory, including summary, description, and severity. @@ -223523,9 +223438,9 @@ webhooks: type: object properties: security_and_analysis: *265 - enterprise: *690 - installation: *691 - organization: *692 + enterprise: *688 + installation: *689 + organization: *690 repository: *311 sender: *4 required: @@ -223604,12 +223519,12 @@ webhooks: type: string enum: - cancelled - enterprise: *690 - installation: *691 - organization: *692 - repository: *693 + enterprise: *688 + installation: *689 + organization: *690 + repository: *691 sender: *4 - sponsorship: &748 + sponsorship: &746 type: object properties: created_at: @@ -223914,12 +223829,12 @@ webhooks: type: string enum: - created - enterprise: *690 - installation: *691 - organization: *692 - repository: *693 + enterprise: *688 + installation: *689 + organization: *690 + repository: *691 sender: *4 - sponsorship: *748 + sponsorship: *746 required: - action - sponsorship @@ -224007,12 +223922,12 @@ webhooks: type: string required: - from - enterprise: *690 - installation: *691 - organization: *692 - repository: *693 + enterprise: *688 + installation: *689 + organization: *690 + repository: *691 sender: *4 - sponsorship: *748 + sponsorship: *746 required: - action - changes @@ -224089,17 +224004,17 @@ webhooks: type: string enum: - pending_cancellation - effective_date: &749 + effective_date: &747 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: *690 - installation: *691 - organization: *692 - repository: *693 + enterprise: *688 + installation: *689 + organization: *690 + repository: *691 sender: *4 - sponsorship: *748 + sponsorship: *746 required: - action - sponsorship @@ -224173,7 +224088,7 @@ webhooks: type: string enum: - pending_tier_change - changes: &750 + changes: &748 type: object properties: tier: @@ -224217,13 +224132,13 @@ webhooks: - from required: - tier - effective_date: *749 - enterprise: *690 - installation: *691 - organization: *692 - repository: *693 + effective_date: *747 + enterprise: *688 + installation: *689 + organization: *690 + repository: *691 sender: *4 - sponsorship: *748 + sponsorship: *746 required: - action - changes @@ -224300,13 +224215,13 @@ webhooks: type: string enum: - tier_changed - changes: *750 - enterprise: *690 - installation: *691 - organization: *692 - repository: *693 + changes: *748 + enterprise: *688 + installation: *689 + organization: *690 + repository: *691 sender: *4 - sponsorship: *748 + sponsorship: *746 required: - action - changes @@ -224380,10 +224295,10 @@ webhooks: type: string enum: - created - enterprise: *690 - installation: *691 - organization: *692 - repository: *693 + enterprise: *688 + installation: *689 + organization: *690 + repository: *691 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -224467,10 +224382,10 @@ webhooks: type: string enum: - deleted - enterprise: *690 - installation: *691 - organization: *692 - repository: *693 + enterprise: *688 + installation: *689 + organization: *690 + repository: *691 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -224904,15 +224819,15 @@ webhooks: type: - string - 'null' - enterprise: *690 + enterprise: *688 id: description: The unique identifier of the status. type: integer - installation: *691 + installation: *689 name: type: string - organization: *692 - repository: *693 + organization: *690 + repository: *691 sender: *4 sha: description: The Commit SHA. @@ -225028,9 +224943,9 @@ webhooks: description: The ID of the sub-issue. type: number sub_issue: *71 - installation: *691 - organization: *692 - repository: *693 + installation: *689 + organization: *690 + repository: *691 sender: *4 required: - action @@ -225120,9 +225035,9 @@ webhooks: description: The ID of the sub-issue. type: number sub_issue: *71 - installation: *691 - organization: *692 - repository: *693 + installation: *689 + organization: *690 + repository: *691 sender: *4 required: - action @@ -225212,9 +225127,9 @@ webhooks: description: The ID of the parent issue. type: number parent_issue: *71 - installation: *691 - organization: *692 - repository: *693 + installation: *689 + organization: *690 + repository: *691 sender: *4 required: - action @@ -225304,9 +225219,9 @@ webhooks: description: The ID of the parent issue. type: number parent_issue: *71 - installation: *691 - organization: *692 - repository: *693 + installation: *689 + organization: *690 + repository: *691 sender: *4 required: - action @@ -225383,12 +225298,12 @@ webhooks: title: team_add event type: object properties: - enterprise: *690 - installation: *691 - organization: *692 - repository: *693 + enterprise: *688 + installation: *689 + organization: *690 + repository: *691 sender: *4 - team: &751 + team: &749 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -225618,9 +225533,9 @@ webhooks: type: string enum: - added_to_repository - enterprise: *690 - installation: *691 - organization: *692 + enterprise: *688 + installation: *689 + organization: *690 repository: title: Repository description: A git repository @@ -226090,7 +226005,7 @@ webhooks: - topics - visibility sender: *4 - team: *751 + team: *749 required: - action - team @@ -226166,9 +226081,9 @@ webhooks: type: string enum: - created - enterprise: *690 - installation: *691 - organization: *692 + enterprise: *688 + installation: *689 + organization: *690 repository: title: Repository description: A git repository @@ -226638,7 +226553,7 @@ webhooks: - topics - visibility sender: *4 - team: *751 + team: *749 required: - action - team @@ -226715,9 +226630,9 @@ webhooks: type: string enum: - deleted - enterprise: *690 - installation: *691 - organization: *692 + enterprise: *688 + installation: *689 + organization: *690 repository: title: Repository description: A git repository @@ -227187,7 +227102,7 @@ webhooks: - topics - visibility sender: *4 - team: *751 + team: *749 required: - action - team @@ -227331,9 +227246,9 @@ webhooks: - from required: - permissions - enterprise: *690 - installation: *691 - organization: *692 + enterprise: *688 + installation: *689 + organization: *690 repository: title: Repository description: A git repository @@ -227803,7 +227718,7 @@ webhooks: - topics - visibility sender: *4 - team: *751 + team: *749 required: - action - changes @@ -227881,9 +227796,9 @@ webhooks: type: string enum: - removed_from_repository - enterprise: *690 - installation: *691 - organization: *692 + enterprise: *688 + installation: *689 + organization: *690 repository: title: Repository description: A git repository @@ -228353,7 +228268,7 @@ webhooks: - topics - visibility sender: *4 - team: *751 + team: *749 required: - action - team @@ -228429,10 +228344,10 @@ webhooks: type: string enum: - started - enterprise: *690 - installation: *691 - organization: *692 - repository: *693 + enterprise: *688 + installation: *689 + organization: *690 + repository: *691 sender: *4 required: - action @@ -228505,17 +228420,17 @@ webhooks: title: workflow_dispatch event type: object properties: - enterprise: *690 + enterprise: *688 inputs: type: - object - 'null' additionalProperties: true - installation: *691 - organization: *692 + installation: *689 + organization: *690 ref: type: string - repository: *693 + repository: *691 sender: *4 workflow: type: string @@ -228597,10 +228512,10 @@ webhooks: type: string enum: - completed - enterprise: *690 - installation: *691 - organization: *692 - repository: *693 + enterprise: *688 + installation: *689 + organization: *690 + repository: *691 sender: *4 workflow_job: allOf: @@ -228935,10 +228850,10 @@ webhooks: type: string enum: - in_progress - enterprise: *690 - installation: *691 - organization: *692 - repository: *693 + enterprise: *688 + installation: *689 + organization: *690 + repository: *691 sender: *4 workflow_job: allOf: @@ -229299,10 +229214,10 @@ webhooks: type: string enum: - queued - enterprise: *690 - installation: *691 - organization: *692 - repository: *693 + enterprise: *688 + installation: *689 + organization: *690 + repository: *691 sender: *4 workflow_job: type: object @@ -229527,10 +229442,10 @@ webhooks: type: string enum: - waiting - enterprise: *690 - installation: *691 - organization: *692 - repository: *693 + enterprise: *688 + installation: *689 + organization: *690 + repository: *691 sender: *4 workflow_job: type: object @@ -229757,12 +229672,12 @@ webhooks: type: string enum: - completed - enterprise: *690 - installation: *691 - organization: *692 - repository: *693 + enterprise: *688 + installation: *689 + organization: *690 + repository: *691 sender: *4 - workflow: *705 + workflow: *703 workflow_run: title: Workflow Run type: object @@ -230781,12 +230696,12 @@ webhooks: type: string enum: - in_progress - enterprise: *690 - installation: *691 - organization: *692 - repository: *693 + enterprise: *688 + installation: *689 + organization: *690 + repository: *691 sender: *4 - workflow: *705 + workflow: *703 workflow_run: title: Workflow Run type: object @@ -231790,12 +231705,12 @@ webhooks: type: string enum: - requested - enterprise: *690 - installation: *691 - organization: *692 - repository: *693 + enterprise: *688 + installation: *689 + organization: *690 + repository: *691 sender: *4 - workflow: *705 + workflow: *703 workflow_run: title: Workflow Run type: object diff --git a/descriptions-next/ghec/dereferenced/ghec.2022-11-28.deref.json b/descriptions-next/ghec/dereferenced/ghec.2022-11-28.deref.json index 3eb2f1625..c31ce6407 100644 --- a/descriptions-next/ghec/dereferenced/ghec.2022-11-28.deref.json +++ b/descriptions-next/ghec/dereferenced/ghec.2022-11-28.deref.json @@ -50093,7 +50093,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" ], @@ -50193,7 +50193,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" ], @@ -50300,7 +50300,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" ], @@ -51011,7 +51011,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" ], @@ -56989,7 +56989,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", @@ -61644,7 +61644,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", @@ -72105,7 +72105,7 @@ }, "enterprise": { "type": "string", - "description": "The unique identifier of the enterprise." + "description": "The name of the enterprise for the usage report." }, "user": { "type": "string", @@ -72848,7 +72848,7 @@ }, "enterprise": { "type": "string", - "description": "The unique identifier of the enterprise." + "description": "The name of the enterprise for the usage report." }, "organization": { "type": "string", @@ -125577,7 +125577,7 @@ } }, "x-github": { - "githubCloudOnly": false, + "githubCloudOnly": true, "enabledForGitHubApps": true, "category": "orgs", "subcategory": "custom-properties-for-orgs" @@ -125811,7 +125811,7 @@ } }, "x-github": { - "githubCloudOnly": false, + "githubCloudOnly": true, "enabledForGitHubApps": true, "category": "orgs", "subcategory": "custom-properties-for-orgs" @@ -677680,7 +677680,7 @@ ], "roles": [ { - "value": "User", + "value": "user", "primary": false } ] @@ -677711,7 +677711,7 @@ ], "roles": [ { - "value": "Enterprise Owner", + "value": "enterprise_owner", "primary": false } ] @@ -679193,7 +679193,7 @@ ], "roles": [ { - "value": "User", + "value": "user", "primary": false } ] diff --git a/descriptions-next/ghec/dereferenced/ghec.2022-11-28.deref.yaml b/descriptions-next/ghec/dereferenced/ghec.2022-11-28.deref.yaml index 4e7001db3..c65634977 100644 --- a/descriptions-next/ghec/dereferenced/ghec.2022-11-28.deref.yaml +++ b/descriptions-next/ghec/dereferenced/ghec.2022-11-28.deref.yaml @@ -18381,6 +18381,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. @@ -18421,6 +18424,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. @@ -18461,6 +18467,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. @@ -18662,6 +18671,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. @@ -20358,11 +20370,10 @@ paths: conditions: &187 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 @@ -24338,7 +24349,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. @@ -24624,7 +24635,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. @@ -33192,7 +33203,7 @@ paths: '403': *27 '404': *6 x-github: - githubCloudOnly: false + githubCloudOnly: true enabledForGitHubApps: true category: orgs subcategory: custom-properties-for-orgs @@ -33248,7 +33259,7 @@ paths: '404': *6 '422': *15 x-github: - githubCloudOnly: false + githubCloudOnly: true enabledForGitHubApps: true category: orgs subcategory: custom-properties-for-orgs @@ -109899,7 +109910,7 @@ paths: type: work primary: true roles: - - value: User + - value: user primary: false enterpriseOwner: summary: Enterprise Owner @@ -109920,7 +109931,7 @@ paths: type: work primary: true roles: - - value: Enterprise Owner + - value: enterprise_owner primary: false responses: '201': diff --git a/descriptions-next/ghec/dereferenced/ghec.deref.json b/descriptions-next/ghec/dereferenced/ghec.deref.json index 3eb2f1625..c31ce6407 100644 --- a/descriptions-next/ghec/dereferenced/ghec.deref.json +++ b/descriptions-next/ghec/dereferenced/ghec.deref.json @@ -50093,7 +50093,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" ], @@ -50193,7 +50193,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" ], @@ -50300,7 +50300,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" ], @@ -51011,7 +51011,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" ], @@ -56989,7 +56989,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", @@ -61644,7 +61644,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", @@ -72105,7 +72105,7 @@ }, "enterprise": { "type": "string", - "description": "The unique identifier of the enterprise." + "description": "The name of the enterprise for the usage report." }, "user": { "type": "string", @@ -72848,7 +72848,7 @@ }, "enterprise": { "type": "string", - "description": "The unique identifier of the enterprise." + "description": "The name of the enterprise for the usage report." }, "organization": { "type": "string", @@ -125577,7 +125577,7 @@ } }, "x-github": { - "githubCloudOnly": false, + "githubCloudOnly": true, "enabledForGitHubApps": true, "category": "orgs", "subcategory": "custom-properties-for-orgs" @@ -125811,7 +125811,7 @@ } }, "x-github": { - "githubCloudOnly": false, + "githubCloudOnly": true, "enabledForGitHubApps": true, "category": "orgs", "subcategory": "custom-properties-for-orgs" @@ -677680,7 +677680,7 @@ ], "roles": [ { - "value": "User", + "value": "user", "primary": false } ] @@ -677711,7 +677711,7 @@ ], "roles": [ { - "value": "Enterprise Owner", + "value": "enterprise_owner", "primary": false } ] @@ -679193,7 +679193,7 @@ ], "roles": [ { - "value": "User", + "value": "user", "primary": false } ] diff --git a/descriptions-next/ghec/dereferenced/ghec.deref.yaml b/descriptions-next/ghec/dereferenced/ghec.deref.yaml index 4e7001db3..c65634977 100644 --- a/descriptions-next/ghec/dereferenced/ghec.deref.yaml +++ b/descriptions-next/ghec/dereferenced/ghec.deref.yaml @@ -18381,6 +18381,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. @@ -18421,6 +18424,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. @@ -18461,6 +18467,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. @@ -18662,6 +18671,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. @@ -20358,11 +20370,10 @@ paths: conditions: &187 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 @@ -24338,7 +24349,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. @@ -24624,7 +24635,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. @@ -33192,7 +33203,7 @@ paths: '403': *27 '404': *6 x-github: - githubCloudOnly: false + githubCloudOnly: true enabledForGitHubApps: true category: orgs subcategory: custom-properties-for-orgs @@ -33248,7 +33259,7 @@ paths: '404': *6 '422': *15 x-github: - githubCloudOnly: false + githubCloudOnly: true enabledForGitHubApps: true category: orgs subcategory: custom-properties-for-orgs @@ -109899,7 +109910,7 @@ paths: type: work primary: true roles: - - value: User + - value: user primary: false enterpriseOwner: summary: Enterprise Owner @@ -109920,7 +109931,7 @@ paths: type: work primary: true roles: - - value: Enterprise Owner + - value: enterprise_owner primary: false responses: '201': diff --git a/descriptions-next/ghec/ghec.2022-11-28.json b/descriptions-next/ghec/ghec.2022-11-28.json index fc00f1344..d1e0a009c 100644 --- a/descriptions-next/ghec/ghec.2022-11-28.json +++ b/descriptions-next/ghec/ghec.2022-11-28.json @@ -9563,7 +9563,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" ], @@ -9605,7 +9605,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" ], @@ -9648,7 +9648,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" ], @@ -9874,7 +9874,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" ], @@ -18177,7 +18177,7 @@ } }, "x-github": { - "githubCloudOnly": false, + "githubCloudOnly": true, "enabledForGitHubApps": true, "category": "orgs", "subcategory": "custom-properties-for-orgs" @@ -18241,7 +18241,7 @@ } }, "x-github": { - "githubCloudOnly": false, + "githubCloudOnly": true, "enabledForGitHubApps": true, "category": "orgs", "subcategory": "custom-properties-for-orgs" @@ -127266,7 +127266,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", @@ -130045,7 +130045,7 @@ }, "enterprise": { "type": "string", - "description": "The unique identifier of the enterprise." + "description": "The name of the enterprise for the usage report." }, "user": { "type": "string", @@ -130246,7 +130246,7 @@ }, "enterprise": { "type": "string", - "description": "The unique identifier of the enterprise." + "description": "The name of the enterprise for the usage report." }, "organization": { "type": "string", @@ -337481,7 +337481,7 @@ ], "roles": [ { - "value": "User", + "value": "user", "primary": false } ] @@ -337512,7 +337512,7 @@ ], "roles": [ { - "value": "Enterprise Owner", + "value": "enterprise_owner", "primary": false } ] diff --git a/descriptions-next/ghec/ghec.2022-11-28.yaml b/descriptions-next/ghec/ghec.2022-11-28.yaml index 57a93a344..06827d3cd 100644 --- a/descriptions-next/ghec/ghec.2022-11-28.yaml +++ b/descriptions-next/ghec/ghec.2022-11-28.yaml @@ -6838,6 +6838,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. @@ -6874,6 +6877,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. @@ -6910,6 +6916,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. @@ -7096,6 +7105,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. @@ -12889,7 +12901,7 @@ paths: '404': "$ref": "#/components/responses/not_found" x-github: - githubCloudOnly: false + githubCloudOnly: true enabledForGitHubApps: true category: orgs subcategory: custom-properties-for-orgs @@ -12942,7 +12954,7 @@ paths: '422': "$ref": "#/components/responses/validation_failed" x-github: - githubCloudOnly: false + githubCloudOnly: true enabledForGitHubApps: true category: orgs subcategory: custom-properties-for-orgs @@ -92036,10 +92048,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 @@ -94034,7 +94046,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. @@ -94184,7 +94196,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. @@ -250710,7 +250722,7 @@ components: type: work primary: true roles: - - value: User + - value: user primary: false in-user-owner: summary: Enterprise Owner @@ -250731,7 +250743,7 @@ components: type: work primary: true roles: - - value: Enterprise Owner + - value: enterprise_owner primary: false scim-enterprise-user: value: diff --git a/descriptions-next/ghec/ghec.json b/descriptions-next/ghec/ghec.json index fc00f1344..d1e0a009c 100644 --- a/descriptions-next/ghec/ghec.json +++ b/descriptions-next/ghec/ghec.json @@ -9563,7 +9563,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" ], @@ -9605,7 +9605,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" ], @@ -9648,7 +9648,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" ], @@ -9874,7 +9874,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" ], @@ -18177,7 +18177,7 @@ } }, "x-github": { - "githubCloudOnly": false, + "githubCloudOnly": true, "enabledForGitHubApps": true, "category": "orgs", "subcategory": "custom-properties-for-orgs" @@ -18241,7 +18241,7 @@ } }, "x-github": { - "githubCloudOnly": false, + "githubCloudOnly": true, "enabledForGitHubApps": true, "category": "orgs", "subcategory": "custom-properties-for-orgs" @@ -127266,7 +127266,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", @@ -130045,7 +130045,7 @@ }, "enterprise": { "type": "string", - "description": "The unique identifier of the enterprise." + "description": "The name of the enterprise for the usage report." }, "user": { "type": "string", @@ -130246,7 +130246,7 @@ }, "enterprise": { "type": "string", - "description": "The unique identifier of the enterprise." + "description": "The name of the enterprise for the usage report." }, "organization": { "type": "string", @@ -337481,7 +337481,7 @@ ], "roles": [ { - "value": "User", + "value": "user", "primary": false } ] @@ -337512,7 +337512,7 @@ ], "roles": [ { - "value": "Enterprise Owner", + "value": "enterprise_owner", "primary": false } ] diff --git a/descriptions-next/ghec/ghec.yaml b/descriptions-next/ghec/ghec.yaml index 57a93a344..06827d3cd 100644 --- a/descriptions-next/ghec/ghec.yaml +++ b/descriptions-next/ghec/ghec.yaml @@ -6838,6 +6838,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. @@ -6874,6 +6877,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. @@ -6910,6 +6916,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. @@ -7096,6 +7105,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. @@ -12889,7 +12901,7 @@ paths: '404': "$ref": "#/components/responses/not_found" x-github: - githubCloudOnly: false + githubCloudOnly: true enabledForGitHubApps: true category: orgs subcategory: custom-properties-for-orgs @@ -12942,7 +12954,7 @@ paths: '422': "$ref": "#/components/responses/validation_failed" x-github: - githubCloudOnly: false + githubCloudOnly: true enabledForGitHubApps: true category: orgs subcategory: custom-properties-for-orgs @@ -92036,10 +92048,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 @@ -94034,7 +94046,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. @@ -94184,7 +94196,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. @@ -250710,7 +250722,7 @@ components: type: work primary: true roles: - - value: User + - value: user primary: false in-user-owner: summary: Enterprise Owner @@ -250731,7 +250743,7 @@ components: type: work primary: true roles: - - value: Enterprise Owner + - value: enterprise_owner primary: false scim-enterprise-user: value: diff --git a/descriptions-next/ghes-3.14/dereferenced/ghes-3.14.2022-11-28.deref.json b/descriptions-next/ghes-3.14/dereferenced/ghes-3.14.2022-11-28.deref.json index bfb163520..fd3cae557 100644 --- a/descriptions-next/ghes-3.14/dereferenced/ghes-3.14.2022-11-28.deref.json +++ b/descriptions-next/ghes-3.14/dereferenced/ghes-3.14.2022-11-28.deref.json @@ -540496,7 +540496,7 @@ ], "roles": [ { - "value": "User", + "value": "user", "primary": false } ] @@ -540527,7 +540527,7 @@ ], "roles": [ { - "value": "Enterprise Owner", + "value": "enterprise_owner", "primary": false } ] @@ -542009,7 +542009,7 @@ ], "roles": [ { - "value": "User", + "value": "user", "primary": false } ] diff --git a/descriptions-next/ghes-3.14/dereferenced/ghes-3.14.2022-11-28.deref.yaml b/descriptions-next/ghes-3.14/dereferenced/ghes-3.14.2022-11-28.deref.yaml index c7da3065c..a7ff5cbff 100644 --- a/descriptions-next/ghes-3.14/dereferenced/ghes-3.14.2022-11-28.deref.yaml +++ b/descriptions-next/ghes-3.14/dereferenced/ghes-3.14.2022-11-28.deref.yaml @@ -82078,7 +82078,7 @@ paths: type: work primary: true roles: - - value: User + - value: user primary: false enterpriseOwner: summary: Enterprise Owner @@ -82099,7 +82099,7 @@ paths: type: work primary: true roles: - - value{"code":"internal","msg":"git-diff-tree: context deadline exceeded","meta":{"cause":"*fmt.wrapError"}}