diff --git a/descriptions/api.github.com/api.github.com.2022-11-28.json b/descriptions/api.github.com/api.github.com.2022-11-28.json index 443cc384e..a837c9cf5 100644 --- a/descriptions/api.github.com/api.github.com.2022-11-28.json +++ b/descriptions/api.github.com/api.github.com.2022-11-28.json @@ -14114,6 +14114,12 @@ } } } + }, + "403": { + "$ref": "#/components/responses/forbidden" + }, + "404": { + "$ref": "#/components/responses/not_found" } }, "x-github": { @@ -14306,6 +14312,12 @@ } } } + }, + "403": { + "$ref": "#/components/responses/forbidden" + }, + "404": { + "$ref": "#/components/responses/not_found" } }, "x-github": { @@ -14503,6 +14515,12 @@ } } } + }, + "403": { + "$ref": "#/components/responses/forbidden" + }, + "404": { + "$ref": "#/components/responses/not_found" } }, "x-github": { @@ -25351,7 +25369,7 @@ }, "post": { "summary": "Create a private registry for an organization", - "description": "\nCreates a private registry configuration with an encrypted value for an organization. Encrypt your secret using [LibSodium](https://libsodium.gitbook.io/doc/bindings_for_other_languages). For more information, see \"[Encrypting secrets for the REST API](https://docs.github.com/rest/guides/encrypting-secrets-for-the-rest-api).\"\n\nOAuth app tokens and personal access tokens (classic) need the `admin:org` scope to use this endpoint.", + "description": "\nCreates a private registry configuration with an encrypted value for an organization. Encrypt your secret using [LibSodium](https://libsodium.gitbook.io/doc/bindings_for_other_languages). For more information, see \"[Encrypting secrets for the REST API](https://docs.github.com/rest/guides/encrypting-secrets-for-the-rest-api).\"\nFor OIDC-based registries (`oidc_azure`, `oidc_aws`, or `oidc_jfrog`), the `encrypted_value` and `key_id` fields should be omitted.\n\nOAuth app tokens and personal access tokens (classic) need the `admin:org` scope to use this endpoint.", "tags": [ "private-registries" ], @@ -25409,12 +25427,12 @@ "default": false }, "encrypted_value": { - "description": "The value for your secret, encrypted with [LibSodium](https://libsodium.gitbook.io/doc/bindings_for_other_languages) using the public key retrieved from the [Get private registries public key for an organization](https://docs.github.com/rest/private-registries/organization-configurations#get-private-registries-public-key-for-an-organization) endpoint.", + "description": "The value for your secret, encrypted with [LibSodium](https://libsodium.gitbook.io/doc/bindings_for_other_languages) using the public key retrieved from the [Get private registries public key for an organization](https://docs.github.com/rest/private-registries/organization-configurations#get-private-registries-public-key-for-an-organization) endpoint. Required when `auth_type` is `token` or `username_password`. Should be omitted for OIDC auth types.", "type": "string", "pattern": "^(?:[A-Za-z0-9+/]{4})*(?:[A-Za-z0-9+/]{2}==|[A-Za-z0-9+/]{3}=|[A-Za-z0-9+/]{4})$" }, "key_id": { - "description": "The ID of the key you used to encrypt the secret.", + "description": "The ID of the key you used to encrypt the secret. Required when `auth_type` is `token` or `username_password`. Should be omitted for OIDC auth types.", "type": "string" }, "visibility": { @@ -25432,13 +25450,62 @@ "items": { "type": "integer" } + }, + "auth_type": { + "description": "The authentication type for the private registry. Defaults to `token` if not specified. Use `oidc_azure`, `oidc_aws`, or `oidc_jfrog` for OIDC authentication.", + "type": "string", + "enum": [ + "token", + "username_password", + "oidc_azure", + "oidc_aws", + "oidc_jfrog" + ] + }, + "tenant_id": { + "description": "The tenant ID of the Azure AD application. Required when `auth_type` is `oidc_azure`.", + "type": "string" + }, + "client_id": { + "description": "The client ID of the Azure AD application. Required when `auth_type` is `oidc_azure`.", + "type": "string" + }, + "aws_region": { + "description": "The AWS region. Required when `auth_type` is `oidc_aws`.", + "type": "string" + }, + "account_id": { + "description": "The AWS account ID. Required when `auth_type` is `oidc_aws`.", + "type": "string" + }, + "role_name": { + "description": "The AWS IAM role name. Required when `auth_type` is `oidc_aws`.", + "type": "string" + }, + "domain": { + "description": "The CodeArtifact domain. Required when `auth_type` is `oidc_aws`.", + "type": "string" + }, + "domain_owner": { + "description": "The CodeArtifact domain owner (AWS account ID). Required when `auth_type` is `oidc_aws`.", + "type": "string" + }, + "jfrog_oidc_provider_name": { + "description": "The JFrog OIDC provider name. Required when `auth_type` is `oidc_jfrog`.", + "type": "string" + }, + "audience": { + "description": "The OIDC audience. Optional for `oidc_aws` and `oidc_jfrog` auth types.", + "type": "string" + }, + "identity_mapping_name": { + "description": "The JFrog identity mapping name. Optional for `oidc_jfrog` auth type.", + "type": "string" } }, "required": [ "registry_type", "url", - "encrypted_value", - "key_id", "visibility" ] }, @@ -25469,6 +25536,17 @@ 1296280 ] } + }, + "org-private-registry-with-oidc-azure": { + "summary": "Example of an OIDC private registry configuration using Azure", + "value": { + "registry_type": "docker_registry", + "url": "https://myregistry.azurecr.io", + "auth_type": "oidc_azure", + "visibility": "all", + "tenant_id": "12345678-1234-1234-1234-123456789012", + "client_id": "abcdef01-2345-6789-abcd-ef0123456789" + } } } } @@ -25623,7 +25701,7 @@ }, "patch": { "summary": "Update a private registry for an organization", - "description": "\nUpdates a private registry configuration with an encrypted value for an organization. Encrypt your secret using [LibSodium](https://libsodium.gitbook.io/doc/bindings_for_other_languages). For more information, see \"[Encrypting secrets for the REST API](https://docs.github.com/rest/guides/encrypting-secrets-for-the-rest-api).\"\n\nOAuth app tokens and personal access tokens (classic) need the `admin:org` scope to use this endpoint.", + "description": "\nUpdates a private registry configuration with an encrypted value for an organization. Encrypt your secret using [LibSodium](https://libsodium.gitbook.io/doc/bindings_for_other_languages). For more information, see \"[Encrypting secrets for the REST API](https://docs.github.com/rest/guides/encrypting-secrets-for-the-rest-api).\"\nFor OIDC-based registries (`oidc_azure`, `oidc_aws`, or `oidc_jfrog`), the `encrypted_value` and `key_id` fields should be omitted.\n\nOAuth app tokens and personal access tokens (classic) need the `admin:org` scope to use this endpoint.", "tags": [ "private-registries" ], @@ -25707,16 +25785,79 @@ "items": { "type": "integer" } + }, + "auth_type": { + "description": "The authentication type for the private registry. This field cannot be changed after creation. If provided, it must match the existing `auth_type` of the configuration. To change the authentication type, delete and recreate the configuration.", + "type": "string", + "enum": [ + "token", + "username_password", + "oidc_azure", + "oidc_aws", + "oidc_jfrog" + ] + }, + "tenant_id": { + "description": "The tenant ID of the Azure AD application. Required when `auth_type` is `oidc_azure`.", + "type": "string" + }, + "client_id": { + "description": "The client ID of the Azure AD application. Required when `auth_type` is `oidc_azure`.", + "type": "string" + }, + "aws_region": { + "description": "The AWS region. Required when `auth_type` is `oidc_aws`.", + "type": "string" + }, + "account_id": { + "description": "The AWS account ID. Required when `auth_type` is `oidc_aws`.", + "type": "string" + }, + "role_name": { + "description": "The AWS IAM role name. Required when `auth_type` is `oidc_aws`.", + "type": "string" + }, + "domain": { + "description": "The CodeArtifact domain. Required when `auth_type` is `oidc_aws`.", + "type": "string" + }, + "domain_owner": { + "description": "The CodeArtifact domain owner (AWS account ID). Required when `auth_type` is `oidc_aws`.", + "type": "string" + }, + "jfrog_oidc_provider_name": { + "description": "The JFrog OIDC provider name. Required when `auth_type` is `oidc_jfrog`.", + "type": "string" + }, + "audience": { + "description": "The OIDC audience. Optional for `oidc_aws` and `oidc_jfrog` auth types.", + "type": "string" + }, + "identity_mapping_name": { + "description": "The JFrog identity mapping name. Optional for `oidc_jfrog` auth type.", + "type": "string" } } }, "examples": { - "default": { + "secret-based-update": { + "summary": "Update a secret-based private registry", "value": { "username": "monalisa", "encrypted_value": "c2VjcmV0", "key_id": "012345678912345678" } + }, + "oidc-azure-update": { + "summary": "Update an OIDC private registry (Azure)", + "value": { + "tenant_id": "12345678-1234-1234-1234-123456789012", + "visibility": "selected", + "selected_repository_ids": [ + 1296269, + 1296280 + ] + } } } } @@ -61077,6 +61218,9 @@ "responses": { "204": { "description": "Response" + }, + "404": { + "$ref": "#/components/responses/not_found" } }, "x-github": { @@ -61211,6 +61355,9 @@ } } } + }, + "404": { + "$ref": "#/components/responses/not_found" } }, "x-github": { @@ -61472,6 +61619,9 @@ "responses": { "204": { "description": "Response" + }, + "404": { + "$ref": "#/components/responses/not_found" } }, "x-github": { @@ -104304,12 +104454,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -110370,9 +110514,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -114862,9 +115003,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -116738,6 +116876,17 @@ ], "type": "string" }, + "auth_type": { + "description": "The authentication type for the private registry.", + "enum": [ + "token", + "username_password", + "oidc_azure", + "oidc_aws", + "oidc_jfrog" + ], + "type": "string" + }, "url": { "description": "The URL of the private registry.", "type": "string", @@ -116763,6 +116912,46 @@ ], "type": "string" }, + "tenant_id": { + "description": "The tenant ID of the Azure AD application.", + "type": "string" + }, + "client_id": { + "description": "The client ID of the Azure AD application.", + "type": "string" + }, + "aws_region": { + "description": "The AWS region.", + "type": "string" + }, + "account_id": { + "description": "The AWS account ID.", + "type": "string" + }, + "role_name": { + "description": "The AWS IAM role name.", + "type": "string" + }, + "domain": { + "description": "The CodeArtifact domain.", + "type": "string" + }, + "domain_owner": { + "description": "The CodeArtifact domain owner.", + "type": "string" + }, + "jfrog_oidc_provider_name": { + "description": "The JFrog OIDC provider name.", + "type": "string" + }, + "audience": { + "description": "The OIDC audience.", + "type": "string" + }, + "identity_mapping_name": { + "description": "The JFrog identity mapping name.", + "type": "string" + }, "created_at": { "type": "string", "format": "date-time" @@ -116811,6 +117000,17 @@ ], "type": "string" }, + "auth_type": { + "description": "The authentication type for the private registry.", + "enum": [ + "token", + "username_password", + "oidc_azure", + "oidc_aws", + "oidc_jfrog" + ], + "type": "string" + }, "url": { "description": "The URL of the private registry.", "type": "string", @@ -116842,6 +117042,46 @@ "type": "integer" } }, + "tenant_id": { + "description": "The tenant ID of the Azure AD application.", + "type": "string" + }, + "client_id": { + "description": "The client ID of the Azure AD application.", + "type": "string" + }, + "aws_region": { + "description": "The AWS region.", + "type": "string" + }, + "account_id": { + "description": "The AWS account ID.", + "type": "string" + }, + "role_name": { + "description": "The AWS IAM role name.", + "type": "string" + }, + "domain": { + "description": "The CodeArtifact domain.", + "type": "string" + }, + "domain_owner": { + "description": "The CodeArtifact domain owner.", + "type": "string" + }, + "jfrog_oidc_provider_name": { + "description": "The JFrog OIDC provider name.", + "type": "string" + }, + "audience": { + "description": "The OIDC audience.", + "type": "string" + }, + "identity_mapping_name": { + "description": "The JFrog identity mapping name.", + "type": "string" + }, "created_at": { "type": "string", "format": "date-time" @@ -118562,12 +118802,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -119140,10 +119374,6 @@ ], "example": "all" }, - "has_commit_comments": { - "type": "boolean", - "example": true - }, "archived": { "type": "boolean" }, @@ -137262,9 +137492,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -139571,12 +139798,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -145369,12 +145590,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -147794,11 +148009,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean" - }, "homepage": { "type": "string", "nullable": true @@ -148611,11 +148821,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean" - }, "homepage": { "type": "string", "nullable": true @@ -186258,11 +186463,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean" - }, "has_downloads": { "description": "Whether downloads are enabled.", "type": "boolean", @@ -190618,11 +190818,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean" - }, "homepage": { "type": "string", "nullable": true @@ -198898,11 +199093,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean" - }, "homepage": { "type": "string", "nullable": true @@ -199717,11 +199907,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean" - }, "homepage": { "type": "string", "nullable": true @@ -201909,11 +202094,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "has_pages": { "type": "boolean" }, @@ -202739,11 +202919,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -204946,11 +205121,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -205763,11 +205933,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -208088,11 +208253,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -208905,11 +209065,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -211218,11 +211373,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -212035,11 +212185,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -214234,11 +214379,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -215053,11 +215193,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -217259,11 +217394,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -218078,11 +218208,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -220795,11 +220920,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -221598,11 +221718,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -223673,11 +223788,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -224476,11 +224586,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -226547,11 +226652,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -227350,11 +227450,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -229417,11 +229512,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -230220,11 +230310,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -235282,11 +235367,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -236099,11 +236179,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -238408,11 +238483,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -239225,11 +239295,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -241584,11 +241649,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -242401,11 +242461,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -244706,11 +244761,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -245523,11 +245573,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -247845,11 +247890,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -248649,11 +248689,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -250728,11 +250763,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -251493,11 +251523,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -253907,11 +253932,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -254670,11 +254690,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -257086,11 +257101,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -257903,11 +257913,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -260115,11 +260120,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -260934,11 +260934,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -263143,11 +263138,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -263962,11 +263952,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -266165,11 +266150,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -266983,11 +266963,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -268984,11 +268959,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -283132,9 +283102,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "forks_count": { "type": "integer" }, diff --git a/descriptions/api.github.com/api.github.com.2022-11-28.yaml b/descriptions/api.github.com/api.github.com.2022-11-28.yaml index bc3a07ac9..29c43725c 100644 --- a/descriptions/api.github.com/api.github.com.2022-11-28.yaml +++ b/descriptions/api.github.com/api.github.com.2022-11-28.yaml @@ -10188,6 +10188,10 @@ paths: examples: default: "$ref": "#/components/examples/artifact-deployment-record-list" + '403': + "$ref": "#/components/responses/forbidden" + '404': + "$ref": "#/components/responses/not_found" x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -10349,6 +10353,10 @@ paths: examples: default: "$ref": "#/components/examples/artifact-deployment-record-list" + '403': + "$ref": "#/components/responses/forbidden" + '404': + "$ref": "#/components/responses/not_found" x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -10503,6 +10511,10 @@ paths: status: active created_at: '2023-10-01T12:00:00Z' updated_at: '2023-10-01T12:00:00Z' + '403': + "$ref": "#/components/responses/forbidden" + '404': + "$ref": "#/components/responses/not_found" x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -18404,6 +18416,7 @@ paths: description: |2- Creates a private registry configuration with an encrypted value for an organization. Encrypt your secret using [LibSodium](https://libsodium.gitbook.io/doc/bindings_for_other_languages). For more information, see "[Encrypting secrets for the REST API](https://docs.github.com/rest/guides/encrypting-secrets-for-the-rest-api)." + For OIDC-based registries (`oidc_azure`, `oidc_aws`, or `oidc_jfrog`), the `encrypted_value` and `key_id` fields should be omitted. OAuth app tokens and personal access tokens (classic) need the `admin:org` scope to use this endpoint. tags: @@ -18463,11 +18476,14 @@ paths: description: The value for your secret, encrypted with [LibSodium](https://libsodium.gitbook.io/doc/bindings_for_other_languages) using the public key retrieved from the [Get private registries public key for an organization](https://docs.github.com/rest/private-registries/organization-configurations#get-private-registries-public-key-for-an-organization) - endpoint. + endpoint. Required when `auth_type` is `token` or `username_password`. + Should be omitted for OIDC auth types. type: string pattern: "^(?:[A-Za-z0-9+/]{4})*(?:[A-Za-z0-9+/]{2}==|[A-Za-z0-9+/]{3}=|[A-Za-z0-9+/]{4})$" key_id: - description: The ID of the key you used to encrypt the secret. + description: The ID of the key you used to encrypt the secret. Required + when `auth_type` is `token` or `username_password`. Should be + omitted for OIDC auth types. type: string visibility: description: Which type of organization repositories have access @@ -18490,11 +18506,58 @@ paths: type: array items: type: integer + auth_type: + description: The authentication type for the private registry. Defaults + to `token` if not specified. Use `oidc_azure`, `oidc_aws`, or + `oidc_jfrog` for OIDC authentication. + type: string + enum: + - token + - username_password + - oidc_azure + - oidc_aws + - oidc_jfrog + tenant_id: + description: The tenant ID of the Azure AD application. Required + when `auth_type` is `oidc_azure`. + type: string + client_id: + description: The client ID of the Azure AD application. Required + when `auth_type` is `oidc_azure`. + type: string + aws_region: + description: The AWS region. Required when `auth_type` is `oidc_aws`. + type: string + account_id: + description: The AWS account ID. Required when `auth_type` is `oidc_aws`. + type: string + role_name: + description: The AWS IAM role name. Required when `auth_type` is + `oidc_aws`. + type: string + domain: + description: The CodeArtifact domain. Required when `auth_type` + is `oidc_aws`. + type: string + domain_owner: + description: The CodeArtifact domain owner (AWS account ID). Required + when `auth_type` is `oidc_aws`. + type: string + jfrog_oidc_provider_name: + description: The JFrog OIDC provider name. Required when `auth_type` + is `oidc_jfrog`. + type: string + audience: + description: The OIDC audience. Optional for `oidc_aws` and `oidc_jfrog` + auth types. + type: string + identity_mapping_name: + description: The JFrog identity mapping name. Optional for `oidc_jfrog` + auth type. + type: string required: - registry_type - url - - encrypted_value - - key_id - visibility examples: org-private-registry-with-private-visibility: @@ -18521,6 +18584,15 @@ paths: selected_repository_ids: - 1296269 - 1296280 + org-private-registry-with-oidc-azure: + summary: Example of an OIDC private registry configuration using Azure + value: + registry_type: docker_registry + url: https://myregistry.azurecr.io + auth_type: oidc_azure + visibility: all + tenant_id: 12345678-1234-1234-1234-123456789012 + client_id: abcdef01-2345-6789-abcd-ef0123456789 responses: '201': description: The organization private registry configuration @@ -18629,6 +18701,7 @@ paths: description: |2- Updates a private registry configuration with an encrypted value for an organization. Encrypt your secret using [LibSodium](https://libsodium.gitbook.io/doc/bindings_for_other_languages). For more information, see "[Encrypting secrets for the REST API](https://docs.github.com/rest/guides/encrypting-secrets-for-the-rest-api)." + For OIDC-based registries (`oidc_azure`, `oidc_aws`, or `oidc_jfrog`), the `encrypted_value` and `key_id` fields should be omitted. OAuth app tokens and personal access tokens (classic) need the `admin:org` scope to use this endpoint. tags: @@ -18713,12 +18786,71 @@ paths: type: array items: type: integer + auth_type: + description: The authentication type for the private registry. This + field cannot be changed after creation. If provided, it must match + the existing `auth_type` of the configuration. To change the authentication + type, delete and recreate the configuration. + type: string + enum: + - token + - username_password + - oidc_azure + - oidc_aws + - oidc_jfrog + tenant_id: + description: The tenant ID of the Azure AD application. Required + when `auth_type` is `oidc_azure`. + type: string + client_id: + description: The client ID of the Azure AD application. Required + when `auth_type` is `oidc_azure`. + type: string + aws_region: + description: The AWS region. Required when `auth_type` is `oidc_aws`. + type: string + account_id: + description: The AWS account ID. Required when `auth_type` is `oidc_aws`. + type: string + role_name: + description: The AWS IAM role name. Required when `auth_type` is + `oidc_aws`. + type: string + domain: + description: The CodeArtifact domain. Required when `auth_type` + is `oidc_aws`. + type: string + domain_owner: + description: The CodeArtifact domain owner (AWS account ID). Required + when `auth_type` is `oidc_aws`. + type: string + jfrog_oidc_provider_name: + description: The JFrog OIDC provider name. Required when `auth_type` + is `oidc_jfrog`. + type: string + audience: + description: The OIDC audience. Optional for `oidc_aws` and `oidc_jfrog` + auth types. + type: string + identity_mapping_name: + description: The JFrog identity mapping name. Optional for `oidc_jfrog` + auth type. + type: string examples: - default: + secret-based-update: + summary: Update a secret-based private registry value: username: monalisa encrypted_value: c2VjcmV0 key_id: '012345678912345678' + oidc-azure-update: + summary: Update an OIDC private registry (Azure) + value: + tenant_id: 12345678-1234-1234-1234-123456789012 + visibility: selected + selected_repository_ids: + - 1296269 + - 1296280 responses: '204': description: Response @@ -44428,6 +44560,8 @@ paths: responses: '204': description: Response + '404': + "$ref": "#/components/responses/not_found" x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -44531,6 +44665,8 @@ paths: examples: default: "$ref": "#/components/examples/release" + '404': + "$ref": "#/components/responses/not_found" x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -44718,6 +44854,8 @@ paths: responses: '204': description: Response + '404': + "$ref": "#/components/responses/not_found" x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -75417,11 +75555,6 @@ components: - all - collaborators_only example: all - has_commit_comments: - description: Whether commit comments are enabled. - default: true - type: boolean - example: true archived: description: Whether the repository is archived. default: false @@ -80213,8 +80346,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - type: boolean archived: type: boolean disabled: @@ -83889,8 +84020,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - type: boolean archived: type: boolean disabled: @@ -85384,6 +85513,15 @@ components: - python_index - terraform_registry type: string + auth_type: + description: The authentication type for the private registry. + enum: + - token + - username_password + - oidc_azure + - oidc_aws + - oidc_jfrog + type: string url: description: The URL of the private registry. type: string @@ -85409,6 +85547,36 @@ components: - private - selected type: string + tenant_id: + description: The tenant ID of the Azure AD application. + type: string + client_id: + description: The client ID of the Azure AD application. + type: string + aws_region: + description: The AWS region. + type: string + account_id: + description: The AWS account ID. + type: string + role_name: + description: The AWS IAM role name. + type: string + domain: + description: The CodeArtifact domain. + type: string + domain_owner: + description: The CodeArtifact domain owner. + type: string + jfrog_oidc_provider_name: + description: The JFrog OIDC provider name. + type: string + audience: + description: The OIDC audience. + type: string + identity_mapping_name: + description: The JFrog identity mapping name. + type: string created_at: type: string format: date-time @@ -85449,6 +85617,15 @@ components: - python_index - terraform_registry type: string + auth_type: + description: The authentication type for the private registry. + enum: + - token + - username_password + - oidc_azure + - oidc_aws + - oidc_jfrog + type: string url: description: The URL of the private registry. type: string @@ -85480,6 +85657,36 @@ components: private registry when `visibility` is set to `selected`. items: type: integer + tenant_id: + description: The tenant ID of the Azure AD application. + type: string + client_id: + description: The client ID of the Azure AD application. + type: string + aws_region: + description: The AWS region. + type: string + account_id: + description: The AWS account ID. + type: string + role_name: + description: The AWS IAM role name. + type: string + domain: + description: The CodeArtifact domain. + type: string + domain_owner: + description: The CodeArtifact domain owner. + type: string + jfrog_oidc_provider_name: + description: The JFrog OIDC provider name. + type: string + audience: + description: The OIDC audience. + type: string + identity_mapping_name: + description: The JFrog identity mapping name. + type: string created_at: type: string format: date-time @@ -86800,11 +87007,6 @@ components: - all - collaborators_only example: all - has_commit_comments: - description: Whether commit comments are enabled. - default: true - type: boolean - example: true archived: description: Whether the repository is archived. default: false @@ -87286,9 +87488,6 @@ components: - all - collaborators_only example: all - has_commit_comments: - type: boolean - example: true archived: type: boolean disabled: @@ -101062,8 +101261,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - type: boolean archived: type: boolean disabled: @@ -102877,11 +103074,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - default: true - type: boolean - example: true archived: description: Whether the repository is archived. default: false @@ -107305,11 +107497,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - default: true - type: boolean - example: true archived: description: Whether the repository is archived. default: false @@ -109182,10 +109369,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - default: true - type: boolean homepage: type: string nullable: true @@ -109820,10 +110003,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - default: true - type: boolean homepage: type: string nullable: true @@ -137785,10 +137964,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - default: true - type: boolean has_downloads: description: Whether downloads are enabled. type: boolean @@ -141078,10 +141253,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - default: true - type: boolean homepage: type: string nullable: true @@ -147049,10 +147220,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - default: true - type: boolean homepage: type: string nullable: true @@ -147690,10 +147857,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - default: true - type: boolean homepage: type: string nullable: true @@ -149359,10 +149522,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true has_pages: type: boolean has_projects: @@ -150008,10 +150167,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -151688,10 +151843,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -152327,10 +152478,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -154089,10 +154236,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -154728,10 +154871,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -156482,10 +156621,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -157121,10 +157256,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -158793,10 +158924,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -159434,10 +159561,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -161114,10 +161237,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -161755,10 +161874,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -163824,10 +163939,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -164453,10 +164564,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -166034,10 +166141,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -166663,10 +166766,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -168238,10 +168337,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -168867,10 +168962,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -170441,10 +170532,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -171070,10 +171157,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -174896,10 +174979,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -175526,10 +175605,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -177282,10 +177357,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -177921,10 +177992,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -179721,10 +179788,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -180360,10 +180423,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -182112,10 +182171,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -182751,10 +182806,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -184518,10 +184569,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -185148,10 +185195,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -186733,10 +186776,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -187313,10 +187352,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -189143,10 +189178,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -189721,10 +189752,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -191549,10 +191576,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -192188,10 +192211,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -193864,10 +193883,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -194505,10 +194520,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -196187,10 +196198,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -196828,10 +196835,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -198496,10 +198499,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -199136,10 +199135,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -200682,10 +200677,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -211132,8 +211123,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - type: boolean forks_count: type: integer mirror_url: diff --git a/descriptions/api.github.com/api.github.com.2026-03-10.json b/descriptions/api.github.com/api.github.com.2026-03-10.json index ac96aeb34..0c805e4f2 100644 --- a/descriptions/api.github.com/api.github.com.2026-03-10.json +++ b/descriptions/api.github.com/api.github.com.2026-03-10.json @@ -14113,6 +14113,12 @@ } } } + }, + "403": { + "$ref": "#/components/responses/forbidden" + }, + "404": { + "$ref": "#/components/responses/not_found" } }, "x-github": { @@ -14305,6 +14311,12 @@ } } } + }, + "403": { + "$ref": "#/components/responses/forbidden" + }, + "404": { + "$ref": "#/components/responses/not_found" } }, "x-github": { @@ -14502,6 +14514,12 @@ } } } + }, + "403": { + "$ref": "#/components/responses/forbidden" + }, + "404": { + "$ref": "#/components/responses/not_found" } }, "x-github": { @@ -25305,7 +25323,7 @@ }, "post": { "summary": "Create a private registry for an organization", - "description": "\nCreates a private registry configuration with an encrypted value for an organization. Encrypt your secret using [LibSodium](https://libsodium.gitbook.io/doc/bindings_for_other_languages). For more information, see \"[Encrypting secrets for the REST API](https://docs.github.com/rest/guides/encrypting-secrets-for-the-rest-api).\"\n\nOAuth app tokens and personal access tokens (classic) need the `admin:org` scope to use this endpoint.", + "description": "\nCreates a private registry configuration with an encrypted value for an organization. Encrypt your secret using [LibSodium](https://libsodium.gitbook.io/doc/bindings_for_other_languages). For more information, see \"[Encrypting secrets for the REST API](https://docs.github.com/rest/guides/encrypting-secrets-for-the-rest-api).\"\nFor OIDC-based registries (`oidc_azure`, `oidc_aws`, or `oidc_jfrog`), the `encrypted_value` and `key_id` fields should be omitted.\n\nOAuth app tokens and personal access tokens (classic) need the `admin:org` scope to use this endpoint.", "tags": [ "private-registries" ], @@ -25363,12 +25381,12 @@ "default": false }, "encrypted_value": { - "description": "The value for your secret, encrypted with [LibSodium](https://libsodium.gitbook.io/doc/bindings_for_other_languages) using the public key retrieved from the [Get private registries public key for an organization](https://docs.github.com/rest/private-registries/organization-configurations#get-private-registries-public-key-for-an-organization) endpoint.", + "description": "The value for your secret, encrypted with [LibSodium](https://libsodium.gitbook.io/doc/bindings_for_other_languages) using the public key retrieved from the [Get private registries public key for an organization](https://docs.github.com/rest/private-registries/organization-configurations#get-private-registries-public-key-for-an-organization) endpoint. Required when `auth_type` is `token` or `username_password`. Should be omitted for OIDC auth types.", "type": "string", "pattern": "^(?:[A-Za-z0-9+/]{4})*(?:[A-Za-z0-9+/]{2}==|[A-Za-z0-9+/]{3}=|[A-Za-z0-9+/]{4})$" }, "key_id": { - "description": "The ID of the key you used to encrypt the secret.", + "description": "The ID of the key you used to encrypt the secret. Required when `auth_type` is `token` or `username_password`. Should be omitted for OIDC auth types.", "type": "string" }, "visibility": { @@ -25386,13 +25404,62 @@ "items": { "type": "integer" } + }, + "auth_type": { + "description": "The authentication type for the private registry. Defaults to `token` if not specified. Use `oidc_azure`, `oidc_aws`, or `oidc_jfrog` for OIDC authentication.", + "type": "string", + "enum": [ + "token", + "username_password", + "oidc_azure", + "oidc_aws", + "oidc_jfrog" + ] + }, + "tenant_id": { + "description": "The tenant ID of the Azure AD application. Required when `auth_type` is `oidc_azure`.", + "type": "string" + }, + "client_id": { + "description": "The client ID of the Azure AD application. Required when `auth_type` is `oidc_azure`.", + "type": "string" + }, + "aws_region": { + "description": "The AWS region. Required when `auth_type` is `oidc_aws`.", + "type": "string" + }, + "account_id": { + "description": "The AWS account ID. Required when `auth_type` is `oidc_aws`.", + "type": "string" + }, + "role_name": { + "description": "The AWS IAM role name. Required when `auth_type` is `oidc_aws`.", + "type": "string" + }, + "domain": { + "description": "The CodeArtifact domain. Required when `auth_type` is `oidc_aws`.", + "type": "string" + }, + "domain_owner": { + "description": "The CodeArtifact domain owner (AWS account ID). Required when `auth_type` is `oidc_aws`.", + "type": "string" + }, + "jfrog_oidc_provider_name": { + "description": "The JFrog OIDC provider name. Required when `auth_type` is `oidc_jfrog`.", + "type": "string" + }, + "audience": { + "description": "The OIDC audience. Optional for `oidc_aws` and `oidc_jfrog` auth types.", + "type": "string" + }, + "identity_mapping_name": { + "description": "The JFrog identity mapping name. Optional for `oidc_jfrog` auth type.", + "type": "string" } }, "required": [ "registry_type", "url", - "encrypted_value", - "key_id", "visibility" ] }, @@ -25423,6 +25490,17 @@ 1296280 ] } + }, + "org-private-registry-with-oidc-azure": { + "summary": "Example of an OIDC private registry configuration using Azure", + "value": { + "registry_type": "docker_registry", + "url": "https://myregistry.azurecr.io", + "auth_type": "oidc_azure", + "visibility": "all", + "tenant_id": "12345678-1234-1234-1234-123456789012", + "client_id": "abcdef01-2345-6789-abcd-ef0123456789" + } } } } @@ -25577,7 +25655,7 @@ }, "patch": { "summary": "Update a private registry for an organization", - "description": "\nUpdates a private registry configuration with an encrypted value for an organization. Encrypt your secret using [LibSodium](https://libsodium.gitbook.io/doc/bindings_for_other_languages). For more information, see \"[Encrypting secrets for the REST API](https://docs.github.com/rest/guides/encrypting-secrets-for-the-rest-api).\"\n\nOAuth app tokens and personal access tokens (classic) need the `admin:org` scope to use this endpoint.", + "description": "\nUpdates a private registry configuration with an encrypted value for an organization. Encrypt your secret using [LibSodium](https://libsodium.gitbook.io/doc/bindings_for_other_languages). For more information, see \"[Encrypting secrets for the REST API](https://docs.github.com/rest/guides/encrypting-secrets-for-the-rest-api).\"\nFor OIDC-based registries (`oidc_azure`, `oidc_aws`, or `oidc_jfrog`), the `encrypted_value` and `key_id` fields should be omitted.\n\nOAuth app tokens and personal access tokens (classic) need the `admin:org` scope to use this endpoint.", "tags": [ "private-registries" ], @@ -25661,16 +25739,79 @@ "items": { "type": "integer" } + }, + "auth_type": { + "description": "The authentication type for the private registry. This field cannot be changed after creation. If provided, it must match the existing `auth_type` of the configuration. To change the authentication type, delete and recreate the configuration.", + "type": "string", + "enum": [ + "token", + "username_password", + "oidc_azure", + "oidc_aws", + "oidc_jfrog" + ] + }, + "tenant_id": { + "description": "The tenant ID of the Azure AD application. Required when `auth_type` is `oidc_azure`.", + "type": "string" + }, + "client_id": { + "description": "The client ID of the Azure AD application. Required when `auth_type` is `oidc_azure`.", + "type": "string" + }, + "aws_region": { + "description": "The AWS region. Required when `auth_type` is `oidc_aws`.", + "type": "string" + }, + "account_id": { + "description": "The AWS account ID. Required when `auth_type` is `oidc_aws`.", + "type": "string" + }, + "role_name": { + "description": "The AWS IAM role name. Required when `auth_type` is `oidc_aws`.", + "type": "string" + }, + "domain": { + "description": "The CodeArtifact domain. Required when `auth_type` is `oidc_aws`.", + "type": "string" + }, + "domain_owner": { + "description": "The CodeArtifact domain owner (AWS account ID). Required when `auth_type` is `oidc_aws`.", + "type": "string" + }, + "jfrog_oidc_provider_name": { + "description": "The JFrog OIDC provider name. Required when `auth_type` is `oidc_jfrog`.", + "type": "string" + }, + "audience": { + "description": "The OIDC audience. Optional for `oidc_aws` and `oidc_jfrog` auth types.", + "type": "string" + }, + "identity_mapping_name": { + "description": "The JFrog identity mapping name. Optional for `oidc_jfrog` auth type.", + "type": "string" } } }, "examples": { - "default": { + "secret-based-update": { + "summary": "Update a secret-based private registry", "value": { "username": "monalisa", "encrypted_value": "c2VjcmV0", "key_id": "012345678912345678" } + }, + "oidc-azure-update": { + "summary": "Update an OIDC private registry (Azure)", + "value": { + "tenant_id": "12345678-1234-1234-1234-123456789012", + "visibility": "selected", + "selected_repository_ids": [ + 1296269, + 1296280 + ] + } } } } @@ -60989,6 +61130,9 @@ "responses": { "204": { "description": "Response" + }, + "404": { + "$ref": "#/components/responses/not_found" } }, "x-github": { @@ -61123,6 +61267,9 @@ } } } + }, + "404": { + "$ref": "#/components/responses/not_found" } }, "x-github": { @@ -61384,6 +61531,9 @@ "responses": { "204": { "description": "Response" + }, + "404": { + "$ref": "#/components/responses/not_found" } }, "x-github": { @@ -104138,12 +104288,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -109869,9 +110013,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -114353,9 +114494,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -116229,6 +116367,17 @@ ], "type": "string" }, + "auth_type": { + "description": "The authentication type for the private registry.", + "enum": [ + "token", + "username_password", + "oidc_azure", + "oidc_aws", + "oidc_jfrog" + ], + "type": "string" + }, "url": { "description": "The URL of the private registry.", "type": "string", @@ -116254,6 +116403,46 @@ ], "type": "string" }, + "tenant_id": { + "description": "The tenant ID of the Azure AD application.", + "type": "string" + }, + "client_id": { + "description": "The client ID of the Azure AD application.", + "type": "string" + }, + "aws_region": { + "description": "The AWS region.", + "type": "string" + }, + "account_id": { + "description": "The AWS account ID.", + "type": "string" + }, + "role_name": { + "description": "The AWS IAM role name.", + "type": "string" + }, + "domain": { + "description": "The CodeArtifact domain.", + "type": "string" + }, + "domain_owner": { + "description": "The CodeArtifact domain owner.", + "type": "string" + }, + "jfrog_oidc_provider_name": { + "description": "The JFrog OIDC provider name.", + "type": "string" + }, + "audience": { + "description": "The OIDC audience.", + "type": "string" + }, + "identity_mapping_name": { + "description": "The JFrog identity mapping name.", + "type": "string" + }, "created_at": { "type": "string", "format": "date-time" @@ -116302,6 +116491,17 @@ ], "type": "string" }, + "auth_type": { + "description": "The authentication type for the private registry.", + "enum": [ + "token", + "username_password", + "oidc_azure", + "oidc_aws", + "oidc_jfrog" + ], + "type": "string" + }, "url": { "description": "The URL of the private registry.", "type": "string", @@ -116333,6 +116533,46 @@ "type": "integer" } }, + "tenant_id": { + "description": "The tenant ID of the Azure AD application.", + "type": "string" + }, + "client_id": { + "description": "The client ID of the Azure AD application.", + "type": "string" + }, + "aws_region": { + "description": "The AWS region.", + "type": "string" + }, + "account_id": { + "description": "The AWS account ID.", + "type": "string" + }, + "role_name": { + "description": "The AWS IAM role name.", + "type": "string" + }, + "domain": { + "description": "The CodeArtifact domain.", + "type": "string" + }, + "domain_owner": { + "description": "The CodeArtifact domain owner.", + "type": "string" + }, + "jfrog_oidc_provider_name": { + "description": "The JFrog OIDC provider name.", + "type": "string" + }, + "audience": { + "description": "The OIDC audience.", + "type": "string" + }, + "identity_mapping_name": { + "description": "The JFrog identity mapping name.", + "type": "string" + }, "created_at": { "type": "string", "format": "date-time" @@ -118036,12 +118276,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -118600,10 +118834,6 @@ ], "example": "all" }, - "has_commit_comments": { - "type": "boolean", - "example": true - }, "archived": { "type": "boolean" }, @@ -136663,9 +136893,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -139181,12 +139408,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -144967,12 +145188,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -147380,11 +147595,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean" - }, "homepage": { "type": "string", "nullable": true @@ -148197,11 +148407,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean" - }, "homepage": { "type": "string", "nullable": true @@ -185822,11 +186027,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean" - }, "has_downloads": { "description": "Whether downloads are enabled.", "type": "boolean", @@ -190182,11 +190382,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean" - }, "homepage": { "type": "string", "nullable": true @@ -198462,11 +198657,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean" - }, "homepage": { "type": "string", "nullable": true @@ -199276,11 +199466,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean" - }, "homepage": { "type": "string", "nullable": true @@ -201458,11 +201643,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "has_pages": { "type": "boolean" }, @@ -202283,11 +202463,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -204480,11 +204655,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -205292,11 +205462,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -207607,11 +207772,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -208424,11 +208584,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -210732,11 +210887,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -211549,11 +211699,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -213743,11 +213888,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -214557,11 +214697,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -216753,11 +216888,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -217567,11 +217697,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -220274,11 +220399,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -221072,11 +221192,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -223137,11 +223252,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -223935,11 +224045,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -225996,11 +226101,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -226794,11 +226894,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -228851,11 +228946,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -229649,11 +229739,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -234696,11 +234781,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -235508,11 +235588,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -237807,11 +237882,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -238619,11 +238689,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -240968,11 +241033,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -241780,11 +241840,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -244075,11 +244130,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -244887,11 +244937,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -247199,11 +247244,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -247998,11 +248038,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -250067,11 +250102,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -250832,11 +250862,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -253241,11 +253266,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -254004,11 +254024,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -256415,11 +256430,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -257227,11 +257237,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -259429,11 +259434,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -260243,11 +260243,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -262442,11 +262437,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -263256,11 +263246,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -265449,11 +265434,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -266262,11 +266242,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -268253,11 +268228,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -282384,9 +282354,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "forks_count": { "type": "integer" }, diff --git a/descriptions/api.github.com/api.github.com.2026-03-10.yaml b/descriptions/api.github.com/api.github.com.2026-03-10.yaml index dbc692210..1c6e2622d 100644 --- a/descriptions/api.github.com/api.github.com.2026-03-10.yaml +++ b/descriptions/api.github.com/api.github.com.2026-03-10.yaml @@ -10186,6 +10186,10 @@ paths: examples: default: "$ref": "#/components/examples/artifact-deployment-record-list" + '403': + "$ref": "#/components/responses/forbidden" + '404': + "$ref": "#/components/responses/not_found" x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -10347,6 +10351,10 @@ paths: examples: default: "$ref": "#/components/examples/artifact-deployment-record-list" + '403': + "$ref": "#/components/responses/forbidden" + '404': + "$ref": "#/components/responses/not_found" x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -10501,6 +10509,10 @@ paths: status: active created_at: '2023-10-01T12:00:00Z' updated_at: '2023-10-01T12:00:00Z' + '403': + "$ref": "#/components/responses/forbidden" + '404': + "$ref": "#/components/responses/not_found" x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -18370,6 +18382,7 @@ paths: description: |2- Creates a private registry configuration with an encrypted value for an organization. Encrypt your secret using [LibSodium](https://libsodium.gitbook.io/doc/bindings_for_other_languages). For more information, see "[Encrypting secrets for the REST API](https://docs.github.com/rest/guides/encrypting-secrets-for-the-rest-api)." + For OIDC-based registries (`oidc_azure`, `oidc_aws`, or `oidc_jfrog`), the `encrypted_value` and `key_id` fields should be omitted. OAuth app tokens and personal access tokens (classic) need the `admin:org` scope to use this endpoint. tags: @@ -18429,11 +18442,14 @@ paths: description: The value for your secret, encrypted with [LibSodium](https://libsodium.gitbook.io/doc/bindings_for_other_languages) using the public key retrieved from the [Get private registries public key for an organization](https://docs.github.com/rest/private-registries/organization-configurations#get-private-registries-public-key-for-an-organization) - endpoint. + endpoint. Required when `auth_type` is `token` or `username_password`. + Should be omitted for OIDC auth types. type: string pattern: "^(?:[A-Za-z0-9+/]{4})*(?:[A-Za-z0-9+/]{2}==|[A-Za-z0-9+/]{3}=|[A-Za-z0-9+/]{4})$" key_id: - description: The ID of the key you used to encrypt the secret. + description: The ID of the key you used to encrypt the secret. Required + when `auth_type` is `token` or `username_password`. Should be + omitted for OIDC auth types. type: string visibility: description: Which type of organization repositories have access @@ -18456,11 +18472,58 @@ paths: type: array items: type: integer + auth_type: + description: The authentication type for the private registry. Defaults + to `token` if not specified. Use `oidc_azure`, `oidc_aws`, or + `oidc_jfrog` for OIDC authentication. + type: string + enum: + - token + - username_password + - oidc_azure + - oidc_aws + - oidc_jfrog + tenant_id: + description: The tenant ID of the Azure AD application. Required + when `auth_type` is `oidc_azure`. + type: string + client_id: + description: The client ID of the Azure AD application. Required + when `auth_type` is `oidc_azure`. + type: string + aws_region: + description: The AWS region. Required when `auth_type` is `oidc_aws`. + type: string + account_id: + description: The AWS account ID. Required when `auth_type` is `oidc_aws`. + type: string + role_name: + description: The AWS IAM role name. Required when `auth_type` is + `oidc_aws`. + type: string + domain: + description: The CodeArtifact domain. Required when `auth_type` + is `oidc_aws`. + type: string + domain_owner: + description: The CodeArtifact domain owner (AWS account ID). Required + when `auth_type` is `oidc_aws`. + type: string + jfrog_oidc_provider_name: + description: The JFrog OIDC provider name. Required when `auth_type` + is `oidc_jfrog`. + type: string + audience: + description: The OIDC audience. Optional for `oidc_aws` and `oidc_jfrog` + auth types. + type: string + identity_mapping_name: + description: The JFrog identity mapping name. Optional for `oidc_jfrog` + auth type. + type: string required: - registry_type - url - - encrypted_value - - key_id - visibility examples: org-private-registry-with-private-visibility: @@ -18487,6 +18550,15 @@ paths: selected_repository_ids: - 1296269 - 1296280 + org-private-registry-with-oidc-azure: + summary: Example of an OIDC private registry configuration using Azure + value: + registry_type: docker_registry + url: https://myregistry.azurecr.io + auth_type: oidc_azure + visibility: all + tenant_id: 12345678-1234-1234-1234-123456789012 + client_id: abcdef01-2345-6789-abcd-ef0123456789 responses: '201': description: The organization private registry configuration @@ -18595,6 +18667,7 @@ paths: description: |2- Updates a private registry configuration with an encrypted value for an organization. Encrypt your secret using [LibSodium](https://libsodium.gitbook.io/doc/bindings_for_other_languages). For more information, see "[Encrypting secrets for the REST API](https://docs.github.com/rest/guides/encrypting-secrets-for-the-rest-api)." + For OIDC-based registries (`oidc_azure`, `oidc_aws`, or `oidc_jfrog`), the `encrypted_value` and `key_id` fields should be omitted. OAuth app tokens and personal access tokens (classic) need the `admin:org` scope to use this endpoint. tags: @@ -18679,12 +18752,71 @@ paths: type: array items: type: integer + auth_type: + description: The authentication type for the private registry. This + field cannot be changed after creation. If provided, it must match + the existing `auth_type` of the configuration. To change the authentication + type, delete and recreate the configuration. + type: string + enum: + - token + - username_password + - oidc_azure + - oidc_aws + - oidc_jfrog + tenant_id: + description: The tenant ID of the Azure AD application. Required + when `auth_type` is `oidc_azure`. + type: string + client_id: + description: The client ID of the Azure AD application. Required + when `auth_type` is `oidc_azure`. + type: string + aws_region: + description: The AWS region. Required when `auth_type` is `oidc_aws`. + type: string + account_id: + description: The AWS account ID. Required when `auth_type` is `oidc_aws`. + type: string + role_name: + description: The AWS IAM role name. Required when `auth_type` is + `oidc_aws`. + type: string + domain: + description: The CodeArtifact domain. Required when `auth_type` + is `oidc_aws`. + type: string + domain_owner: + description: The CodeArtifact domain owner (AWS account ID). Required + when `auth_type` is `oidc_aws`. + type: string + jfrog_oidc_provider_name: + description: The JFrog OIDC provider name. Required when `auth_type` + is `oidc_jfrog`. + type: string + audience: + description: The OIDC audience. Optional for `oidc_aws` and `oidc_jfrog` + auth types. + type: string + identity_mapping_name: + description: The JFrog identity mapping name. Optional for `oidc_jfrog` + auth type. + type: string examples: - default: + secret-based-update: + summary: Update a secret-based private registry value: username: monalisa encrypted_value: c2VjcmV0 key_id: '012345678912345678' + oidc-azure-update: + summary: Update an OIDC private registry (Azure) + value: + tenant_id: 12345678-1234-1234-1234-123456789012 + visibility: selected + selected_repository_ids: + - 1296269 + - 1296280 responses: '204': description: Response @@ -44354,6 +44486,8 @@ paths: responses: '204': description: Response + '404': + "$ref": "#/components/responses/not_found" x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -44457,6 +44591,8 @@ paths: examples: default: "$ref": "#/components/examples/release" + '404': + "$ref": "#/components/responses/not_found" x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -44644,6 +44780,8 @@ paths: responses: '204': description: Response + '404': + "$ref": "#/components/responses/not_found" x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -75281,11 +75419,6 @@ components: - all - collaborators_only example: all - has_commit_comments: - description: Whether commit comments are enabled. - default: true - type: boolean - example: true archived: description: Whether the repository is archived. default: false @@ -79821,8 +79954,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - type: boolean archived: type: boolean disabled: @@ -83490,8 +83621,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - type: boolean archived: type: boolean disabled: @@ -84985,6 +85114,15 @@ components: - python_index - terraform_registry type: string + auth_type: + description: The authentication type for the private registry. + enum: + - token + - username_password + - oidc_azure + - oidc_aws + - oidc_jfrog + type: string url: description: The URL of the private registry. type: string @@ -85010,6 +85148,36 @@ components: - private - selected type: string + tenant_id: + description: The tenant ID of the Azure AD application. + type: string + client_id: + description: The client ID of the Azure AD application. + type: string + aws_region: + description: The AWS region. + type: string + account_id: + description: The AWS account ID. + type: string + role_name: + description: The AWS IAM role name. + type: string + domain: + description: The CodeArtifact domain. + type: string + domain_owner: + description: The CodeArtifact domain owner. + type: string + jfrog_oidc_provider_name: + description: The JFrog OIDC provider name. + type: string + audience: + description: The OIDC audience. + type: string + identity_mapping_name: + description: The JFrog identity mapping name. + type: string created_at: type: string format: date-time @@ -85050,6 +85218,15 @@ components: - python_index - terraform_registry type: string + auth_type: + description: The authentication type for the private registry. + enum: + - token + - username_password + - oidc_azure + - oidc_aws + - oidc_jfrog + type: string url: description: The URL of the private registry. type: string @@ -85081,6 +85258,36 @@ components: private registry when `visibility` is set to `selected`. items: type: integer + tenant_id: + description: The tenant ID of the Azure AD application. + type: string + client_id: + description: The client ID of the Azure AD application. + type: string + aws_region: + description: The AWS region. + type: string + account_id: + description: The AWS account ID. + type: string + role_name: + description: The AWS IAM role name. + type: string + domain: + description: The CodeArtifact domain. + type: string + domain_owner: + description: The CodeArtifact domain owner. + type: string + jfrog_oidc_provider_name: + description: The JFrog OIDC provider name. + type: string + audience: + description: The OIDC audience. + type: string + identity_mapping_name: + description: The JFrog identity mapping name. + type: string created_at: type: string format: date-time @@ -86387,11 +86594,6 @@ components: - all - collaborators_only example: all - has_commit_comments: - description: Whether commit comments are enabled. - default: true - type: boolean - example: true archived: description: Whether the repository is archived. default: false @@ -86860,9 +87062,6 @@ components: - all - collaborators_only example: all - has_commit_comments: - type: boolean - example: true archived: type: boolean disabled: @@ -100589,8 +100788,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - type: boolean archived: type: boolean disabled: @@ -102564,11 +102761,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - default: true - type: boolean - example: true archived: description: Whether the repository is archived. default: false @@ -106981,11 +107173,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - default: true - type: boolean - example: true archived: description: Whether the repository is archived. default: false @@ -108847,10 +109034,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - default: true - type: boolean homepage: type: string nullable: true @@ -109485,10 +109668,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - default: true - type: boolean homepage: type: string nullable: true @@ -137434,10 +137613,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - default: true - type: boolean has_downloads: description: Whether downloads are enabled. type: boolean @@ -140727,10 +140902,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - default: true - type: boolean homepage: type: string nullable: true @@ -146698,10 +146869,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - default: true - type: boolean homepage: type: string nullable: true @@ -147333,10 +147500,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - default: true - type: boolean homepage: type: string nullable: true @@ -148992,10 +149155,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true has_pages: type: boolean has_projects: @@ -149635,10 +149794,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -151305,10 +151460,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -151938,10 +152089,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -153690,10 +153837,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -154329,10 +154472,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -156079,10 +156218,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -156718,10 +156853,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -158386,10 +158517,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -159021,10 +159148,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -160691,10 +160814,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -161326,10 +161445,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -163385,10 +163500,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -164008,10 +164119,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -165579,10 +165686,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -166202,10 +166305,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -167767,10 +167866,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -168390,10 +168485,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -169954,10 +170045,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -170577,10 +170664,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -174389,10 +174472,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -175013,10 +175092,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -176759,10 +176834,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -177392,10 +177463,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -179182,10 +179249,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -179815,10 +179878,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -181557,10 +181616,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -182190,10 +182245,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -183947,10 +183998,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -184571,10 +184618,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -186146,10 +186189,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -186726,10 +186765,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -188552,10 +188587,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -189130,10 +189161,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -190954,10 +190981,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -191587,10 +191610,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -193253,10 +193272,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -193888,10 +193903,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -195560,10 +195571,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -196195,10 +196202,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -197853,10 +197856,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -198487,10 +198486,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -200023,10 +200018,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -210461,8 +210452,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - type: boolean forks_count: type: integer mirror_url: diff --git a/descriptions/api.github.com/api.github.com.json b/descriptions/api.github.com/api.github.com.json index 27fc5c835..36cd771b9 100644 --- a/descriptions/api.github.com/api.github.com.json +++ b/descriptions/api.github.com/api.github.com.json @@ -14160,6 +14160,12 @@ } } } + }, + "403": { + "$ref": "#/components/responses/forbidden" + }, + "404": { + "$ref": "#/components/responses/not_found" } }, "x-github": { @@ -14352,6 +14358,12 @@ } } } + }, + "403": { + "$ref": "#/components/responses/forbidden" + }, + "404": { + "$ref": "#/components/responses/not_found" } }, "x-github": { @@ -14549,6 +14561,12 @@ } } } + }, + "403": { + "$ref": "#/components/responses/forbidden" + }, + "404": { + "$ref": "#/components/responses/not_found" } }, "x-github": { @@ -25530,7 +25548,7 @@ }, "post": { "summary": "Create a private registry for an organization", - "description": "\nCreates a private registry configuration with an encrypted value for an organization. Encrypt your secret using [LibSodium](https://libsodium.gitbook.io/doc/bindings_for_other_languages). For more information, see \"[Encrypting secrets for the REST API](https://docs.github.com/rest/guides/encrypting-secrets-for-the-rest-api).\"\n\nOAuth app tokens and personal access tokens (classic) need the `admin:org` scope to use this endpoint.", + "description": "\nCreates a private registry configuration with an encrypted value for an organization. Encrypt your secret using [LibSodium](https://libsodium.gitbook.io/doc/bindings_for_other_languages). For more information, see \"[Encrypting secrets for the REST API](https://docs.github.com/rest/guides/encrypting-secrets-for-the-rest-api).\"\nFor OIDC-based registries (`oidc_azure`, `oidc_aws`, or `oidc_jfrog`), the `encrypted_value` and `key_id` fields should be omitted.\n\nOAuth app tokens and personal access tokens (classic) need the `admin:org` scope to use this endpoint.", "tags": [ "private-registries" ], @@ -25588,12 +25606,12 @@ "default": false }, "encrypted_value": { - "description": "The value for your secret, encrypted with [LibSodium](https://libsodium.gitbook.io/doc/bindings_for_other_languages) using the public key retrieved from the [Get private registries public key for an organization](https://docs.github.com/rest/private-registries/organization-configurations#get-private-registries-public-key-for-an-organization) endpoint.", + "description": "The value for your secret, encrypted with [LibSodium](https://libsodium.gitbook.io/doc/bindings_for_other_languages) using the public key retrieved from the [Get private registries public key for an organization](https://docs.github.com/rest/private-registries/organization-configurations#get-private-registries-public-key-for-an-organization) endpoint. Required when `auth_type` is `token` or `username_password`. Should be omitted for OIDC auth types.", "type": "string", "pattern": "^(?:[A-Za-z0-9+/]{4})*(?:[A-Za-z0-9+/]{2}==|[A-Za-z0-9+/]{3}=|[A-Za-z0-9+/]{4})$" }, "key_id": { - "description": "The ID of the key you used to encrypt the secret.", + "description": "The ID of the key you used to encrypt the secret. Required when `auth_type` is `token` or `username_password`. Should be omitted for OIDC auth types.", "type": "string" }, "visibility": { @@ -25611,13 +25629,62 @@ "items": { "type": "integer" } + }, + "auth_type": { + "description": "The authentication type for the private registry. Defaults to `token` if not specified. Use `oidc_azure`, `oidc_aws`, or `oidc_jfrog` for OIDC authentication.", + "type": "string", + "enum": [ + "token", + "username_password", + "oidc_azure", + "oidc_aws", + "oidc_jfrog" + ] + }, + "tenant_id": { + "description": "The tenant ID of the Azure AD application. Required when `auth_type` is `oidc_azure`.", + "type": "string" + }, + "client_id": { + "description": "The client ID of the Azure AD application. Required when `auth_type` is `oidc_azure`.", + "type": "string" + }, + "aws_region": { + "description": "The AWS region. Required when `auth_type` is `oidc_aws`.", + "type": "string" + }, + "account_id": { + "description": "The AWS account ID. Required when `auth_type` is `oidc_aws`.", + "type": "string" + }, + "role_name": { + "description": "The AWS IAM role name. Required when `auth_type` is `oidc_aws`.", + "type": "string" + }, + "domain": { + "description": "The CodeArtifact domain. Required when `auth_type` is `oidc_aws`.", + "type": "string" + }, + "domain_owner": { + "description": "The CodeArtifact domain owner (AWS account ID). Required when `auth_type` is `oidc_aws`.", + "type": "string" + }, + "jfrog_oidc_provider_name": { + "description": "The JFrog OIDC provider name. Required when `auth_type` is `oidc_jfrog`.", + "type": "string" + }, + "audience": { + "description": "The OIDC audience. Optional for `oidc_aws` and `oidc_jfrog` auth types.", + "type": "string" + }, + "identity_mapping_name": { + "description": "The JFrog identity mapping name. Optional for `oidc_jfrog` auth type.", + "type": "string" } }, "required": [ "registry_type", "url", - "encrypted_value", - "key_id", "visibility" ] }, @@ -25648,6 +25715,17 @@ 1296280 ] } + }, + "org-private-registry-with-oidc-azure": { + "summary": "Example of an OIDC private registry configuration using Azure", + "value": { + "registry_type": "docker_registry", + "url": "https://myregistry.azurecr.io", + "auth_type": "oidc_azure", + "visibility": "all", + "tenant_id": "12345678-1234-1234-1234-123456789012", + "client_id": "abcdef01-2345-6789-abcd-ef0123456789" + } } } } @@ -25802,7 +25880,7 @@ }, "patch": { "summary": "Update a private registry for an organization", - "description": "\nUpdates a private registry configuration with an encrypted value for an organization. Encrypt your secret using [LibSodium](https://libsodium.gitbook.io/doc/bindings_for_other_languages). For more information, see \"[Encrypting secrets for the REST API](https://docs.github.com/rest/guides/encrypting-secrets-for-the-rest-api).\"\n\nOAuth app tokens and personal access tokens (classic) need the `admin:org` scope to use this endpoint.", + "description": "\nUpdates a private registry configuration with an encrypted value for an organization. Encrypt your secret using [LibSodium](https://libsodium.gitbook.io/doc/bindings_for_other_languages). For more information, see \"[Encrypting secrets for the REST API](https://docs.github.com/rest/guides/encrypting-secrets-for-the-rest-api).\"\nFor OIDC-based registries (`oidc_azure`, `oidc_aws`, or `oidc_jfrog`), the `encrypted_value` and `key_id` fields should be omitted.\n\nOAuth app tokens and personal access tokens (classic) need the `admin:org` scope to use this endpoint.", "tags": [ "private-registries" ], @@ -25886,16 +25964,79 @@ "items": { "type": "integer" } + }, + "auth_type": { + "description": "The authentication type for the private registry. This field cannot be changed after creation. If provided, it must match the existing `auth_type` of the configuration. To change the authentication type, delete and recreate the configuration.", + "type": "string", + "enum": [ + "token", + "username_password", + "oidc_azure", + "oidc_aws", + "oidc_jfrog" + ] + }, + "tenant_id": { + "description": "The tenant ID of the Azure AD application. Required when `auth_type` is `oidc_azure`.", + "type": "string" + }, + "client_id": { + "description": "The client ID of the Azure AD application. Required when `auth_type` is `oidc_azure`.", + "type": "string" + }, + "aws_region": { + "description": "The AWS region. Required when `auth_type` is `oidc_aws`.", + "type": "string" + }, + "account_id": { + "description": "The AWS account ID. Required when `auth_type` is `oidc_aws`.", + "type": "string" + }, + "role_name": { + "description": "The AWS IAM role name. Required when `auth_type` is `oidc_aws`.", + "type": "string" + }, + "domain": { + "description": "The CodeArtifact domain. Required when `auth_type` is `oidc_aws`.", + "type": "string" + }, + "domain_owner": { + "description": "The CodeArtifact domain owner (AWS account ID). Required when `auth_type` is `oidc_aws`.", + "type": "string" + }, + "jfrog_oidc_provider_name": { + "description": "The JFrog OIDC provider name. Required when `auth_type` is `oidc_jfrog`.", + "type": "string" + }, + "audience": { + "description": "The OIDC audience. Optional for `oidc_aws` and `oidc_jfrog` auth types.", + "type": "string" + }, + "identity_mapping_name": { + "description": "The JFrog identity mapping name. Optional for `oidc_jfrog` auth type.", + "type": "string" } } }, "examples": { - "default": { + "secret-based-update": { + "summary": "Update a secret-based private registry", "value": { "username": "monalisa", "encrypted_value": "c2VjcmV0", "key_id": "012345678912345678" } + }, + "oidc-azure-update": { + "summary": "Update an OIDC private registry (Azure)", + "value": { + "tenant_id": "12345678-1234-1234-1234-123456789012", + "visibility": "selected", + "selected_repository_ids": [ + 1296269, + 1296280 + ] + } } } } @@ -61379,6 +61520,9 @@ "responses": { "204": { "description": "Response" + }, + "404": { + "$ref": "#/components/responses/not_found" } }, "x-github": { @@ -61513,6 +61657,9 @@ } } } + }, + "404": { + "$ref": "#/components/responses/not_found" } }, "x-github": { @@ -61774,6 +61921,9 @@ "responses": { "204": { "description": "Response" + }, + "404": { + "$ref": "#/components/responses/not_found" } }, "x-github": { @@ -104782,12 +104932,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -111094,9 +111238,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -115609,9 +115750,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -117515,6 +117653,17 @@ ], "type": "string" }, + "auth_type": { + "description": "The authentication type for the private registry.", + "enum": [ + "token", + "username_password", + "oidc_azure", + "oidc_aws", + "oidc_jfrog" + ], + "type": "string" + }, "url": { "description": "The URL of the private registry.", "type": "string", @@ -117540,6 +117689,46 @@ ], "type": "string" }, + "tenant_id": { + "description": "The tenant ID of the Azure AD application.", + "type": "string" + }, + "client_id": { + "description": "The client ID of the Azure AD application.", + "type": "string" + }, + "aws_region": { + "description": "The AWS region.", + "type": "string" + }, + "account_id": { + "description": "The AWS account ID.", + "type": "string" + }, + "role_name": { + "description": "The AWS IAM role name.", + "type": "string" + }, + "domain": { + "description": "The CodeArtifact domain.", + "type": "string" + }, + "domain_owner": { + "description": "The CodeArtifact domain owner.", + "type": "string" + }, + "jfrog_oidc_provider_name": { + "description": "The JFrog OIDC provider name.", + "type": "string" + }, + "audience": { + "description": "The OIDC audience.", + "type": "string" + }, + "identity_mapping_name": { + "description": "The JFrog identity mapping name.", + "type": "string" + }, "created_at": { "type": "string", "format": "date-time" @@ -117588,6 +117777,17 @@ ], "type": "string" }, + "auth_type": { + "description": "The authentication type for the private registry.", + "enum": [ + "token", + "username_password", + "oidc_azure", + "oidc_aws", + "oidc_jfrog" + ], + "type": "string" + }, "url": { "description": "The URL of the private registry.", "type": "string", @@ -117619,6 +117819,46 @@ "type": "integer" } }, + "tenant_id": { + "description": "The tenant ID of the Azure AD application.", + "type": "string" + }, + "client_id": { + "description": "The client ID of the Azure AD application.", + "type": "string" + }, + "aws_region": { + "description": "The AWS region.", + "type": "string" + }, + "account_id": { + "description": "The AWS account ID.", + "type": "string" + }, + "role_name": { + "description": "The AWS IAM role name.", + "type": "string" + }, + "domain": { + "description": "The CodeArtifact domain.", + "type": "string" + }, + "domain_owner": { + "description": "The CodeArtifact domain owner.", + "type": "string" + }, + "jfrog_oidc_provider_name": { + "description": "The JFrog OIDC provider name.", + "type": "string" + }, + "audience": { + "description": "The OIDC audience.", + "type": "string" + }, + "identity_mapping_name": { + "description": "The JFrog identity mapping name.", + "type": "string" + }, "created_at": { "type": "string", "format": "date-time" @@ -119422,12 +119662,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -120103,10 +120337,6 @@ ], "example": "all" }, - "has_commit_comments": { - "type": "boolean", - "example": true - }, "archived": { "type": "boolean" }, @@ -138606,9 +138836,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -140915,12 +141142,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -146738,12 +146959,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -149188,11 +149403,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean" - }, "homepage": { "type": "string", "nullable": true @@ -150005,11 +150215,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean" - }, "homepage": { "type": "string", "nullable": true @@ -187724,11 +187929,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean" - }, "has_downloads": { "description": "Whether downloads are enabled.", "type": "boolean", @@ -192084,11 +192284,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean" - }, "homepage": { "type": "string", "nullable": true @@ -200364,11 +200559,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean" - }, "homepage": { "type": "string", "nullable": true @@ -201183,11 +201373,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean" - }, "homepage": { "type": "string", "nullable": true @@ -203405,11 +203590,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "has_pages": { "type": "boolean" }, @@ -204235,11 +204415,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -206472,11 +206647,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -207289,11 +207459,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -209644,11 +209809,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -210461,11 +210621,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -212790,11 +212945,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -213607,11 +213757,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -215822,11 +215967,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -216641,11 +216781,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -218877,11 +219012,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -219696,11 +219826,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -222443,11 +222568,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -223246,11 +223366,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -225351,11 +225466,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -226154,11 +226264,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -228255,11 +228360,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -229058,11 +229158,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -231155,11 +231250,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -231958,11 +232048,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -237066,11 +237151,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -237883,11 +237963,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -240192,11 +240267,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -241009,11 +241079,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -243414,11 +243479,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -244231,11 +244291,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -246536,11 +246591,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -247353,11 +247403,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -249721,11 +249766,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -250525,11 +250565,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -252634,11 +252669,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -253399,11 +253429,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -255829,11 +255854,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -256592,11 +256612,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -259024,11 +259039,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -259841,11 +259851,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -262083,11 +262088,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -262902,11 +262902,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -265141,11 +265136,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -265960,11 +265950,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -268193,11 +268178,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -269011,11 +268991,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -271042,11 +271017,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -285206,9 +285176,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "forks_count": { "type": "integer" }, diff --git a/descriptions/api.github.com/api.github.com.yaml b/descriptions/api.github.com/api.github.com.yaml index 49cbb8eb8..bdc8619c4 100644 --- a/descriptions/api.github.com/api.github.com.yaml +++ b/descriptions/api.github.com/api.github.com.yaml @@ -10213,6 +10213,10 @@ paths: examples: default: "$ref": "#/components/examples/artifact-deployment-record-list" + '403': + "$ref": "#/components/responses/forbidden" + '404': + "$ref": "#/components/responses/not_found" x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -10374,6 +10378,10 @@ paths: examples: default: "$ref": "#/components/examples/artifact-deployment-record-list" + '403': + "$ref": "#/components/responses/forbidden" + '404': + "$ref": "#/components/responses/not_found" x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -10528,6 +10536,10 @@ paths: status: active created_at: '2023-10-01T12:00:00Z' updated_at: '2023-10-01T12:00:00Z' + '403': + "$ref": "#/components/responses/forbidden" + '404': + "$ref": "#/components/responses/not_found" x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -18499,6 +18511,7 @@ paths: description: |2- Creates a private registry configuration with an encrypted value for an organization. Encrypt your secret using [LibSodium](https://libsodium.gitbook.io/doc/bindings_for_other_languages). For more information, see "[Encrypting secrets for the REST API](https://docs.github.com/rest/guides/encrypting-secrets-for-the-rest-api)." + For OIDC-based registries (`oidc_azure`, `oidc_aws`, or `oidc_jfrog`), the `encrypted_value` and `key_id` fields should be omitted. OAuth app tokens and personal access tokens (classic) need the `admin:org` scope to use this endpoint. tags: @@ -18558,11 +18571,14 @@ paths: description: The value for your secret, encrypted with [LibSodium](https://libsodium.gitbook.io/doc/bindings_for_other_languages) using the public key retrieved from the [Get private registries public key for an organization](https://docs.github.com/rest/private-registries/organization-configurations#get-private-registries-public-key-for-an-organization) - endpoint. + endpoint. Required when `auth_type` is `token` or `username_password`. + Should be omitted for OIDC auth types. type: string pattern: "^(?:[A-Za-z0-9+/]{4})*(?:[A-Za-z0-9+/]{2}==|[A-Za-z0-9+/]{3}=|[A-Za-z0-9+/]{4})$" key_id: - description: The ID of the key you used to encrypt the secret. + description: The ID of the key you used to encrypt the secret. Required + when `auth_type` is `token` or `username_password`. Should be + omitted for OIDC auth types. type: string visibility: description: Which type of organization repositories have access @@ -18585,11 +18601,58 @@ paths: type: array items: type: integer + auth_type: + description: The authentication type for the private registry. Defaults + to `token` if not specified. Use `oidc_azure`, `oidc_aws`, or + `oidc_jfrog` for OIDC authentication. + type: string + enum: + - token + - username_password + - oidc_azure + - oidc_aws + - oidc_jfrog + tenant_id: + description: The tenant ID of the Azure AD application. Required + when `auth_type` is `oidc_azure`. + type: string + client_id: + description: The client ID of the Azure AD application. Required + when `auth_type` is `oidc_azure`. + type: string + aws_region: + description: The AWS region. Required when `auth_type` is `oidc_aws`. + type: string + account_id: + description: The AWS account ID. Required when `auth_type` is `oidc_aws`. + type: string + role_name: + description: The AWS IAM role name. Required when `auth_type` is + `oidc_aws`. + type: string + domain: + description: The CodeArtifact domain. Required when `auth_type` + is `oidc_aws`. + type: string + domain_owner: + description: The CodeArtifact domain owner (AWS account ID). Required + when `auth_type` is `oidc_aws`. + type: string + jfrog_oidc_provider_name: + description: The JFrog OIDC provider name. Required when `auth_type` + is `oidc_jfrog`. + type: string + audience: + description: The OIDC audience. Optional for `oidc_aws` and `oidc_jfrog` + auth types. + type: string + identity_mapping_name: + description: The JFrog identity mapping name. Optional for `oidc_jfrog` + auth type. + type: string required: - registry_type - url - - encrypted_value - - key_id - visibility examples: org-private-registry-with-private-visibility: @@ -18616,6 +18679,15 @@ paths: selected_repository_ids: - 1296269 - 1296280 + org-private-registry-with-oidc-azure: + summary: Example of an OIDC private registry configuration using Azure + value: + registry_type: docker_registry + url: https://myregistry.azurecr.io + auth_type: oidc_azure + visibility: all + tenant_id: 12345678-1234-1234-1234-123456789012 + client_id: abcdef01-2345-6789-abcd-ef0123456789 responses: '201': description: The organization private registry configuration @@ -18724,6 +18796,7 @@ paths: description: |2- Updates a private registry configuration with an encrypted value for an organization. Encrypt your secret using [LibSodium](https://libsodium.gitbook.io/doc/bindings_for_other_languages). For more information, see "[Encrypting secrets for the REST API](https://docs.github.com/rest/guides/encrypting-secrets-for-the-rest-api)." + For OIDC-based registries (`oidc_azure`, `oidc_aws`, or `oidc_jfrog`), the `encrypted_value` and `key_id` fields should be omitted. OAuth app tokens and personal access tokens (classic) need the `admin:org` scope to use this endpoint. tags: @@ -18808,12 +18881,71 @@ paths: type: array items: type: integer + auth_type: + description: The authentication type for the private registry. This + field cannot be changed after creation. If provided, it must match + the existing `auth_type` of the configuration. To change the authentication + type, delete and recreate the configuration. + type: string + enum: + - token + - username_password + - oidc_azure + - oidc_aws + - oidc_jfrog + tenant_id: + description: The tenant ID of the Azure AD application. Required + when `auth_type` is `oidc_azure`. + type: string + client_id: + description: The client ID of the Azure AD application. Required + when `auth_type` is `oidc_azure`. + type: string + aws_region: + description: The AWS region. Required when `auth_type` is `oidc_aws`. + type: string + account_id: + description: The AWS account ID. Required when `auth_type` is `oidc_aws`. + type: string + role_name: + description: The AWS IAM role name. Required when `auth_type` is + `oidc_aws`. + type: string + domain: + description: The CodeArtifact domain. Required when `auth_type` + is `oidc_aws`. + type: string + domain_owner: + description: The CodeArtifact domain owner (AWS account ID). Required + when `auth_type` is `oidc_aws`. + type: string + jfrog_oidc_provider_name: + description: The JFrog OIDC provider name. Required when `auth_type` + is `oidc_jfrog`. + type: string + audience: + description: The OIDC audience. Optional for `oidc_aws` and `oidc_jfrog` + auth types. + type: string + identity_mapping_name: + description: The JFrog identity mapping name. Optional for `oidc_jfrog` + auth type. + type: string examples: - default: + secret-based-update: + summary: Update a secret-based private registry value: username: monalisa encrypted_value: c2VjcmV0 key_id: '012345678912345678' + oidc-azure-update: + summary: Update an OIDC private registry (Azure) + value: + tenant_id: 12345678-1234-1234-1234-123456789012 + visibility: selected + selected_repository_ids: + - 1296269 + - 1296280 responses: '204': description: Response @@ -44613,6 +44745,8 @@ paths: responses: '204': description: Response + '404': + "$ref": "#/components/responses/not_found" x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -44716,6 +44850,8 @@ paths: examples: default: "$ref": "#/components/examples/release" + '404': + "$ref": "#/components/responses/not_found" x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -44903,6 +45039,8 @@ paths: responses: '204': description: Response + '404': + "$ref": "#/components/responses/not_found" x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -75704,11 +75842,6 @@ components: - all - collaborators_only example: all - has_commit_comments: - description: Whether commit comments are enabled. - default: true - type: boolean - example: true archived: description: Whether the repository is archived. default: false @@ -80688,8 +80821,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - type: boolean archived: type: boolean disabled: @@ -84376,8 +84507,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - type: boolean archived: type: boolean disabled: @@ -85889,6 +86018,15 @@ components: - python_index - terraform_registry type: string + auth_type: + description: The authentication type for the private registry. + enum: + - token + - username_password + - oidc_azure + - oidc_aws + - oidc_jfrog + type: string url: description: The URL of the private registry. type: string @@ -85914,6 +86052,36 @@ components: - private - selected type: string + tenant_id: + description: The tenant ID of the Azure AD application. + type: string + client_id: + description: The client ID of the Azure AD application. + type: string + aws_region: + description: The AWS region. + type: string + account_id: + description: The AWS account ID. + type: string + role_name: + description: The AWS IAM role name. + type: string + domain: + description: The CodeArtifact domain. + type: string + domain_owner: + description: The CodeArtifact domain owner. + type: string + jfrog_oidc_provider_name: + description: The JFrog OIDC provider name. + type: string + audience: + description: The OIDC audience. + type: string + identity_mapping_name: + description: The JFrog identity mapping name. + type: string created_at: type: string format: date-time @@ -85954,6 +86122,15 @@ components: - python_index - terraform_registry type: string + auth_type: + description: The authentication type for the private registry. + enum: + - token + - username_password + - oidc_azure + - oidc_aws + - oidc_jfrog + type: string url: description: The URL of the private registry. type: string @@ -85985,6 +86162,36 @@ components: private registry when `visibility` is set to `selected`. items: type: integer + tenant_id: + description: The tenant ID of the Azure AD application. + type: string + client_id: + description: The client ID of the Azure AD application. + type: string + aws_region: + description: The AWS region. + type: string + account_id: + description: The AWS account ID. + type: string + role_name: + description: The AWS IAM role name. + type: string + domain: + description: The CodeArtifact domain. + type: string + domain_owner: + description: The CodeArtifact domain owner. + type: string + jfrog_oidc_provider_name: + description: The JFrog OIDC provider name. + type: string + audience: + description: The OIDC audience. + type: string + identity_mapping_name: + description: The JFrog identity mapping name. + type: string created_at: type: string format: date-time @@ -87377,11 +87584,6 @@ components: - all - collaborators_only example: all - has_commit_comments: - description: Whether commit comments are enabled. - default: true - type: boolean - example: true archived: description: Whether the repository is archived. default: false @@ -87952,9 +88154,6 @@ components: - all - collaborators_only example: all - has_commit_comments: - type: boolean - example: true archived: type: boolean disabled: @@ -102040,8 +102239,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - type: boolean archived: type: boolean disabled: @@ -103855,11 +104052,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - default: true - type: boolean - example: true archived: description: Whether the repository is archived. default: false @@ -108297,11 +108489,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - default: true - type: boolean - example: true archived: description: Whether the repository is archived. default: false @@ -110188,10 +110375,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - default: true - type: boolean homepage: type: string nullable: true @@ -110826,10 +111009,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - default: true - type: boolean homepage: type: string nullable: true @@ -138851,10 +139030,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - default: true - type: boolean has_downloads: description: Whether downloads are enabled. type: boolean @@ -142144,10 +142319,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - default: true - type: boolean homepage: type: string nullable: true @@ -148115,10 +148286,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - default: true - type: boolean homepage: type: string nullable: true @@ -148756,10 +148923,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - default: true - type: boolean homepage: type: string nullable: true @@ -150440,10 +150603,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true has_pages: type: boolean has_projects: @@ -151089,10 +151248,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -152784,10 +152939,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -153423,10 +153574,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -155200,10 +155347,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -155839,10 +155982,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -157601,10 +157740,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -158240,10 +158375,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -159920,10 +160051,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -160561,10 +160688,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -162256,10 +162379,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -162897,10 +163016,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -164981,10 +165096,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -165610,10 +165721,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -167206,10 +167313,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -167835,10 +167938,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -169425,10 +169524,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -170054,10 +170149,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -171643,10 +171734,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -172272,10 +172359,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -176121,10 +176204,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -176751,10 +176830,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -178507,10 +178582,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -179146,10 +179217,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -180969,10 +181036,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -181608,10 +181671,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -183360,10 +183419,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -183999,10 +184054,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -185789,10 +185840,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -186419,10 +186466,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -188019,10 +188062,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -188599,10 +188638,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -190437,10 +190472,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -191015,10 +191046,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -192851,10 +192878,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -193490,10 +193513,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -195181,10 +195200,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -195822,10 +195837,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -197519,10 +197530,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -198160,10 +198167,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -199843,10 +199846,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -200483,10 +200482,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -202044,10 +202039,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -212502,8 +212493,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - type: boolean forks_count: type: integer mirror_url: diff --git a/descriptions/api.github.com/dereferenced/api.github.com.2022-11-28.deref.json b/descriptions/api.github.com/dereferenced/api.github.com.2022-11-28.deref.json index ea036c567..29dda7841 100644 --- a/descriptions/api.github.com/dereferenced/api.github.com.2022-11-28.deref.json +++ b/descriptions/api.github.com/dereferenced/api.github.com.2022-11-28.deref.json @@ -7982,12 +7982,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -28735,12 +28729,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -32070,12 +32058,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -34588,9 +34570,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "forks_count": { "type": "integer" }, @@ -48622,12 +48601,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -50739,12 +50712,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -57881,12 +57848,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -61216,12 +61177,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -63734,9 +63689,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "forks_count": { "type": "integer" }, @@ -66613,9 +66565,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -67819,9 +67768,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -79176,12 +79122,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -80759,12 +80699,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -83472,9 +83406,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -85885,12 +85816,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -86729,12 +86654,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -89079,9 +88998,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -90684,9 +90600,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -91550,6 +91463,58 @@ } } } + }, + "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": { @@ -91820,6 +91785,58 @@ } } } + }, + "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": { @@ -92023,6 +92040,58 @@ } } } + }, + "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": { @@ -103152,9 +103221,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -106019,9 +106085,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -109632,9 +109695,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -115131,9 +115191,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -116360,9 +116417,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -119042,12 +119096,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -122377,12 +122425,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -124895,9 +124937,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "forks_count": { "type": "integer" }, @@ -138049,12 +138088,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -141021,9 +141054,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -143096,9 +143126,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -146483,12 +146510,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -147745,12 +147766,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -149036,12 +149051,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -150201,9 +150210,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -153570,9 +153576,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -154704,9 +154707,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -157813,9 +157813,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -159872,9 +159869,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -160453,6 +160447,17 @@ ], "type": "string" }, + "auth_type": { + "description": "The authentication type for the private registry.", + "enum": [ + "token", + "username_password", + "oidc_azure", + "oidc_aws", + "oidc_jfrog" + ], + "type": "string" + }, "url": { "description": "The URL of the private registry.", "type": "string", @@ -160478,6 +160483,46 @@ ], "type": "string" }, + "tenant_id": { + "description": "The tenant ID of the Azure AD application.", + "type": "string" + }, + "client_id": { + "description": "The client ID of the Azure AD application.", + "type": "string" + }, + "aws_region": { + "description": "The AWS region.", + "type": "string" + }, + "account_id": { + "description": "The AWS account ID.", + "type": "string" + }, + "role_name": { + "description": "The AWS IAM role name.", + "type": "string" + }, + "domain": { + "description": "The CodeArtifact domain.", + "type": "string" + }, + "domain_owner": { + "description": "The CodeArtifact domain owner.", + "type": "string" + }, + "jfrog_oidc_provider_name": { + "description": "The JFrog OIDC provider name.", + "type": "string" + }, + "audience": { + "description": "The OIDC audience.", + "type": "string" + }, + "identity_mapping_name": { + "description": "The JFrog identity mapping name.", + "type": "string" + }, "created_at": { "type": "string", "format": "date-time" @@ -160622,7 +160667,7 @@ }, "post": { "summary": "Create a private registry for an organization", - "description": "\nCreates a private registry configuration with an encrypted value for an organization. Encrypt your secret using [LibSodium](https://libsodium.gitbook.io/doc/bindings_for_other_languages). For more information, see \"[Encrypting secrets for the REST API](https://docs.github.com/rest/guides/encrypting-secrets-for-the-rest-api).\"\n\nOAuth app tokens and personal access tokens (classic) need the `admin:org` scope to use this endpoint.", + "description": "\nCreates a private registry configuration with an encrypted value for an organization. Encrypt your secret using [LibSodium](https://libsodium.gitbook.io/doc/bindings_for_other_languages). For more information, see \"[Encrypting secrets for the REST API](https://docs.github.com/rest/guides/encrypting-secrets-for-the-rest-api).\"\nFor OIDC-based registries (`oidc_azure`, `oidc_aws`, or `oidc_jfrog`), the `encrypted_value` and `key_id` fields should be omitted.\n\nOAuth app tokens and personal access tokens (classic) need the `admin:org` scope to use this endpoint.", "tags": [ "private-registries" ], @@ -160686,12 +160731,12 @@ "default": false }, "encrypted_value": { - "description": "The value for your secret, encrypted with [LibSodium](https://libsodium.gitbook.io/doc/bindings_for_other_languages) using the public key retrieved from the [Get private registries public key for an organization](https://docs.github.com/rest/private-registries/organization-configurations#get-private-registries-public-key-for-an-organization) endpoint.", + "description": "The value for your secret, encrypted with [LibSodium](https://libsodium.gitbook.io/doc/bindings_for_other_languages) using the public key retrieved from the [Get private registries public key for an organization](https://docs.github.com/rest/private-registries/organization-configurations#get-private-registries-public-key-for-an-organization) endpoint. Required when `auth_type` is `token` or `username_password`. Should be omitted for OIDC auth types.", "type": "string", "pattern": "^(?:[A-Za-z0-9+/]{4})*(?:[A-Za-z0-9+/]{2}==|[A-Za-z0-9+/]{3}=|[A-Za-z0-9+/]{4})$" }, "key_id": { - "description": "The ID of the key you used to encrypt the secret.", + "description": "The ID of the key you used to encrypt the secret. Required when `auth_type` is `token` or `username_password`. Should be omitted for OIDC auth types.", "type": "string" }, "visibility": { @@ -160709,13 +160754,62 @@ "items": { "type": "integer" } + }, + "auth_type": { + "description": "The authentication type for the private registry. Defaults to `token` if not specified. Use `oidc_azure`, `oidc_aws`, or `oidc_jfrog` for OIDC authentication.", + "type": "string", + "enum": [ + "token", + "username_password", + "oidc_azure", + "oidc_aws", + "oidc_jfrog" + ] + }, + "tenant_id": { + "description": "The tenant ID of the Azure AD application. Required when `auth_type` is `oidc_azure`.", + "type": "string" + }, + "client_id": { + "description": "The client ID of the Azure AD application. Required when `auth_type` is `oidc_azure`.", + "type": "string" + }, + "aws_region": { + "description": "The AWS region. Required when `auth_type` is `oidc_aws`.", + "type": "string" + }, + "account_id": { + "description": "The AWS account ID. Required when `auth_type` is `oidc_aws`.", + "type": "string" + }, + "role_name": { + "description": "The AWS IAM role name. Required when `auth_type` is `oidc_aws`.", + "type": "string" + }, + "domain": { + "description": "The CodeArtifact domain. Required when `auth_type` is `oidc_aws`.", + "type": "string" + }, + "domain_owner": { + "description": "The CodeArtifact domain owner (AWS account ID). Required when `auth_type` is `oidc_aws`.", + "type": "string" + }, + "jfrog_oidc_provider_name": { + "description": "The JFrog OIDC provider name. Required when `auth_type` is `oidc_jfrog`.", + "type": "string" + }, + "audience": { + "description": "The OIDC audience. Optional for `oidc_aws` and `oidc_jfrog` auth types.", + "type": "string" + }, + "identity_mapping_name": { + "description": "The JFrog identity mapping name. Optional for `oidc_jfrog` auth type.", + "type": "string" } }, "required": [ "registry_type", "url", - "encrypted_value", - "key_id", "visibility" ] }, @@ -160746,6 +160840,17 @@ 1296280 ] } + }, + "org-private-registry-with-oidc-azure": { + "summary": "Example of an OIDC private registry configuration using Azure", + "value": { + "registry_type": "docker_registry", + "url": "https://myregistry.azurecr.io", + "auth_type": "oidc_azure", + "visibility": "all", + "tenant_id": "12345678-1234-1234-1234-123456789012", + "client_id": "abcdef01-2345-6789-abcd-ef0123456789" + } } } } @@ -160787,6 +160892,17 @@ ], "type": "string" }, + "auth_type": { + "description": "The authentication type for the private registry.", + "enum": [ + "token", + "username_password", + "oidc_azure", + "oidc_aws", + "oidc_jfrog" + ], + "type": "string" + }, "url": { "description": "The URL of the private registry.", "type": "string", @@ -160818,6 +160934,46 @@ "type": "integer" } }, + "tenant_id": { + "description": "The tenant ID of the Azure AD application.", + "type": "string" + }, + "client_id": { + "description": "The client ID of the Azure AD application.", + "type": "string" + }, + "aws_region": { + "description": "The AWS region.", + "type": "string" + }, + "account_id": { + "description": "The AWS account ID.", + "type": "string" + }, + "role_name": { + "description": "The AWS IAM role name.", + "type": "string" + }, + "domain": { + "description": "The CodeArtifact domain.", + "type": "string" + }, + "domain_owner": { + "description": "The CodeArtifact domain owner.", + "type": "string" + }, + "jfrog_oidc_provider_name": { + "description": "The JFrog OIDC provider name.", + "type": "string" + }, + "audience": { + "description": "The OIDC audience.", + "type": "string" + }, + "identity_mapping_name": { + "description": "The JFrog identity mapping name.", + "type": "string" + }, "created_at": { "type": "string", "format": "date-time" @@ -161137,6 +161293,17 @@ ], "type": "string" }, + "auth_type": { + "description": "The authentication type for the private registry.", + "enum": [ + "token", + "username_password", + "oidc_azure", + "oidc_aws", + "oidc_jfrog" + ], + "type": "string" + }, "url": { "description": "The URL of the private registry.", "type": "string", @@ -161162,6 +161329,46 @@ ], "type": "string" }, + "tenant_id": { + "description": "The tenant ID of the Azure AD application.", + "type": "string" + }, + "client_id": { + "description": "The client ID of the Azure AD application.", + "type": "string" + }, + "aws_region": { + "description": "The AWS region.", + "type": "string" + }, + "account_id": { + "description": "The AWS account ID.", + "type": "string" + }, + "role_name": { + "description": "The AWS IAM role name.", + "type": "string" + }, + "domain": { + "description": "The CodeArtifact domain.", + "type": "string" + }, + "domain_owner": { + "description": "The CodeArtifact domain owner.", + "type": "string" + }, + "jfrog_oidc_provider_name": { + "description": "The JFrog OIDC provider name.", + "type": "string" + }, + "audience": { + "description": "The OIDC audience.", + "type": "string" + }, + "identity_mapping_name": { + "description": "The JFrog identity mapping name.", + "type": "string" + }, "created_at": { "type": "string", "format": "date-time" @@ -161230,7 +161437,7 @@ }, "patch": { "summary": "Update a private registry for an organization", - "description": "\nUpdates a private registry configuration with an encrypted value for an organization. Encrypt your secret using [LibSodium](https://libsodium.gitbook.io/doc/bindings_for_other_languages). For more information, see \"[Encrypting secrets for the REST API](https://docs.github.com/rest/guides/encrypting-secrets-for-the-rest-api).\"\n\nOAuth app tokens and personal access tokens (classic) need the `admin:org` scope to use this endpoint.", + "description": "\nUpdates a private registry configuration with an encrypted value for an organization. Encrypt your secret using [LibSodium](https://libsodium.gitbook.io/doc/bindings_for_other_languages). For more information, see \"[Encrypting secrets for the REST API](https://docs.github.com/rest/guides/encrypting-secrets-for-the-rest-api).\"\nFor OIDC-based registries (`oidc_azure`, `oidc_aws`, or `oidc_jfrog`), the `encrypted_value` and `key_id` fields should be omitted.\n\nOAuth app tokens and personal access tokens (classic) need the `admin:org` scope to use this endpoint.", "tags": [ "private-registries" ], @@ -161326,16 +161533,79 @@ "items": { "type": "integer" } + }, + "auth_type": { + "description": "The authentication type for the private registry. This field cannot be changed after creation. If provided, it must match the existing `auth_type` of the configuration. To change the authentication type, delete and recreate the configuration.", + "type": "string", + "enum": [ + "token", + "username_password", + "oidc_azure", + "oidc_aws", + "oidc_jfrog" + ] + }, + "tenant_id": { + "description": "The tenant ID of the Azure AD application. Required when `auth_type` is `oidc_azure`.", + "type": "string" + }, + "client_id": { + "description": "The client ID of the Azure AD application. Required when `auth_type` is `oidc_azure`.", + "type": "string" + }, + "aws_region": { + "description": "The AWS region. Required when `auth_type` is `oidc_aws`.", + "type": "string" + }, + "account_id": { + "description": "The AWS account ID. Required when `auth_type` is `oidc_aws`.", + "type": "string" + }, + "role_name": { + "description": "The AWS IAM role name. Required when `auth_type` is `oidc_aws`.", + "type": "string" + }, + "domain": { + "description": "The CodeArtifact domain. Required when `auth_type` is `oidc_aws`.", + "type": "string" + }, + "domain_owner": { + "description": "The CodeArtifact domain owner (AWS account ID). Required when `auth_type` is `oidc_aws`.", + "type": "string" + }, + "jfrog_oidc_provider_name": { + "description": "The JFrog OIDC provider name. Required when `auth_type` is `oidc_jfrog`.", + "type": "string" + }, + "audience": { + "description": "The OIDC audience. Optional for `oidc_aws` and `oidc_jfrog` auth types.", + "type": "string" + }, + "identity_mapping_name": { + "description": "The JFrog identity mapping name. Optional for `oidc_jfrog` auth type.", + "type": "string" } } }, "examples": { - "default": { + "secret-based-update": { + "summary": "Update a secret-based private registry", "value": { "username": "monalisa", "encrypted_value": "c2VjcmV0", "key_id": "012345678912345678" } + }, + "oidc-azure-update": { + "summary": "Update an OIDC private registry (Azure)", + "value": { + "tenant_id": "12345678-1234-1234-1234-123456789012", + "visibility": "selected", + "selected_repository_ids": [ + 1296269, + 1296280 + ] + } } } } @@ -164911,12 +165181,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -168005,12 +168269,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -168901,12 +169159,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -174423,12 +174675,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -177517,12 +177763,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -178413,12 +178653,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -189625,9 +189859,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -190743,10 +190974,6 @@ ], "example": "all" }, - "has_commit_comments": { - "type": "boolean", - "example": true - }, "archived": { "type": "boolean" }, @@ -191321,12 +191548,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -192321,12 +192542,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -193071,12 +193286,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -209164,9 +209373,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -215605,9 +215811,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -218496,10 +218699,6 @@ ], "example": "all" }, - "has_commit_comments": { - "type": "boolean", - "example": true - }, "archived": { "type": "boolean" }, @@ -219074,12 +219273,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -220074,12 +220267,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -220824,12 +221011,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -222704,10 +222885,6 @@ ], "example": "all" }, - "has_commit_comments": { - "type": "boolean", - "example": true - }, "archived": { "type": "boolean" }, @@ -223282,12 +223459,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -224282,12 +224453,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -225032,12 +225197,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -231979,12 +232138,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -232832,12 +232985,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -235429,9 +235576,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -236178,9 +236322,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -237863,9 +238004,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -238612,9 +238750,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -241045,9 +241180,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -241794,9 +241926,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -248286,9 +248415,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -249035,9 +249161,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -280212,9 +280335,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -281872,9 +281992,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -283174,9 +283291,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -284704,9 +284818,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -298144,9 +298255,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -299960,9 +300068,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -301414,9 +301519,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -304832,9 +304934,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -311991,12 +312090,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -312887,12 +312980,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -317219,9 +317306,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -318442,9 +318526,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -340734,12 +340815,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -344069,12 +344144,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -346587,9 +346656,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "forks_count": { "type": "integer" }, @@ -349371,9 +349437,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -350419,10 +350482,6 @@ ], "example": "all" }, - "has_commit_comments": { - "type": "boolean", - "example": true - }, "archived": { "type": "boolean" }, @@ -350997,12 +351056,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -351997,12 +352050,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -352747,12 +352794,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -364242,9 +364283,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -365519,9 +365557,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -368006,12 +368041,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -371415,12 +371444,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -379853,12 +379876,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -384447,12 +384464,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -388916,12 +388927,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -392552,12 +392557,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -395958,12 +395957,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -399167,12 +399160,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -404322,12 +404309,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -407618,12 +407599,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -410992,12 +410967,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -414386,12 +414355,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -428477,12 +428440,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -432746,12 +432703,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -436044,12 +435995,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -439318,12 +439263,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -442691,12 +442630,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -454289,12 +454222,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -463765,9 +463692,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -469725,12 +469649,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -470621,12 +470539,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -473562,12 +473474,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -474457,12 +474363,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -480286,12 +480186,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -481181,12 +481075,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -484332,12 +484220,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -485227,12 +485109,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -487547,9 +487423,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -489001,9 +488874,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -495340,12 +495210,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -496236,12 +496100,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -499255,12 +499113,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -500151,12 +500003,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -507869,6 +507715,32 @@ "responses": { "204": { "description": "Response" + }, + "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": { @@ -508637,6 +508509,32 @@ } } } + }, + "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": { @@ -510704,6 +510602,32 @@ "responses": { "204": { "description": "Response" + }, + "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": { @@ -539175,10 +539099,6 @@ ], "example": "all" }, - "has_commit_comments": { - "type": "boolean", - "example": true - }, "archived": { "type": "boolean" }, @@ -539753,12 +539673,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -540753,12 +540667,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -541503,12 +541411,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -546891,9 +546793,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -548192,10 +548091,6 @@ ], "example": "all" }, - "has_commit_comments": { - "type": "boolean", - "example": true - }, "archived": { "type": "boolean" }, @@ -548770,12 +548665,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -549770,12 +549659,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -550520,12 +550403,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -552001,9 +551878,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -554127,9 +554001,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -555554,9 +555425,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -557669,12 +557537,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -560125,9 +559987,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -564934,9 +564793,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -569610,9 +569466,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -571619,9 +571472,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -573073,9 +572923,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -574918,9 +574765,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -576803,9 +576647,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -578429,9 +578270,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -580857,10 +580695,6 @@ ], "example": "all" }, - "has_commit_comments": { - "type": "boolean", - "example": true - }, "archived": { "type": "boolean" }, @@ -581435,12 +581269,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -582435,12 +582263,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -583185,12 +583007,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -585420,9 +585236,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -587126,9 +586939,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -588606,9 +588416,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -593983,12 +593790,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -596541,12 +596342,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -601926,12 +601721,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -603242,12 +603031,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -604548,12 +604331,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -605872,9 +605649,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -607246,9 +607020,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -608319,9 +608090,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -610693,12 +610461,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -611813,10 +611575,6 @@ ], "example": "all" }, - "has_commit_comments": { - "type": "boolean", - "example": true - }, "archived": { "type": "boolean" }, @@ -612391,12 +612149,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -613391,12 +613143,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -614141,12 +613887,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -615852,9 +615592,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -618875,12 +618612,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -619769,12 +619500,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -621034,9 +620759,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -624456,12 +624178,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -627550,12 +627266,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -628446,12 +628156,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -632703,9 +632407,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -635385,12 +635086,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -638720,12 +638415,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -641238,9 +640927,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "forks_count": { "type": "integer" }, @@ -645736,12 +645422,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -649071,12 +648751,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -651589,9 +651263,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "forks_count": { "type": "integer" }, @@ -656097,12 +655768,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -659432,12 +659097,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -661950,9 +661609,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "forks_count": { "type": "integer" }, @@ -667701,9 +667357,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -668835,9 +668488,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -676490,12 +676140,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -679584,12 +679228,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -680480,12 +680118,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -690655,12 +690287,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -693990,12 +693616,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -696508,9 +696128,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "forks_count": { "type": "integer" }, @@ -701002,12 +700619,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -704337,12 +703948,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -706855,9 +706460,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "forks_count": { "type": "integer" }, @@ -709663,9 +709265,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -712014,12 +711613,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -712773,12 +712366,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -713611,9 +713198,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -715103,12 +714687,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -716733,12 +716311,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -718363,12 +717935,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -720173,12 +719739,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -722141,12 +721701,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -724321,9 +723875,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -726109,12 +725660,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -728454,9 +727999,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -730242,12 +729784,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -732587,9 +732123,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -734375,12 +733908,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -736733,9 +736260,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -738521,12 +738045,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -741244,12 +740762,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -743656,12 +743168,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -746062,12 +745568,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -748119,12 +747619,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -750296,12 +749790,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -752291,12 +751779,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -754378,12 +753860,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -756377,12 +755853,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -758334,12 +757804,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -760385,12 +759849,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -762243,12 +761701,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -763892,12 +763344,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -767294,12 +766740,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -769076,12 +768516,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -771558,12 +770992,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -774039,12 +773467,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -776520,12 +775942,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -779001,12 +778417,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -781482,12 +780892,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -783963,12 +783367,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -786444,12 +785842,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -788925,12 +788317,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -790604,12 +789990,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -792283,12 +791663,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -794548,12 +793922,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -798371,12 +797739,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -799266,12 +798628,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -800793,12 +800149,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -802574,12 +801924,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -805313,12 +804657,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -807990,12 +807328,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -812075,12 +811407,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -815285,12 +814611,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -817439,12 +816759,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -819530,12 +818844,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -821831,12 +821139,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -824133,12 +823435,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -826454,12 +825750,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -828546,12 +827836,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -830636,12 +829920,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -832753,12 +832031,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -834884,12 +834156,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -836975,12 +836241,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -839065,12 +838325,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -841155,12 +840409,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -843086,12 +842334,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -844950,12 +844192,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -847163,12 +846399,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -849294,12 +848524,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -851385,12 +850609,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -853475,12 +852693,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -856005,12 +855217,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -857903,12 +857109,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -860429,12 +859629,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -863049,12 +862243,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -865576,12 +864764,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -868130,12 +867312,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -870796,12 +869972,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -873428,12 +872598,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -875208,12 +874372,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -877737,12 +876895,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -881659,12 +880811,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -885582,12 +884728,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -889523,12 +888663,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -893454,12 +892588,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -897384,12 +896512,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -899708,12 +898830,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -902674,12 +901790,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -904658,12 +903768,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -905630,12 +904734,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -907953,12 +907051,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -910919,12 +910011,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -912903,12 +911989,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -913875,12 +912955,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -916198,12 +915272,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -918182,12 +917250,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -919914,12 +918976,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -922120,12 +921176,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -924443,12 +923493,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -926427,12 +925471,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -928159,12 +927197,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -930365,12 +929397,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -934170,12 +933196,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -938085,12 +937105,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -941787,12 +940801,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -945671,12 +944679,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -949448,12 +948450,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -953195,12 +952191,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -956903,12 +955893,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -960785,12 +959769,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -963839,11 +962817,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean" - }, "has_downloads": { "description": "Whether downloads are enabled.", "type": "boolean", @@ -967176,12 +966149,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -970877,12 +969844,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -974581,12 +973542,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -977676,11 +976631,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean" - }, "homepage": { "type": "string", "nullable": true @@ -980986,12 +979936,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -984755,12 +983699,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -988561,12 +987499,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -992310,12 +991242,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -996016,12 +994942,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -999717,12 +998637,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1003485,12 +1002399,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1005158,12 +1004066,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1006829,12 +1005731,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1008543,12 +1007439,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1010400,12 +1009290,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1012257,12 +1011141,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1014113,12 +1012991,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1015966,12 +1014838,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1017821,12 +1016687,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1019580,12 +1018440,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1021339,12 +1020193,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1023068,12 +1021916,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1024796,12 +1023638,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1026685,12 +1025521,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1028522,12 +1027352,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1030201,12 +1029025,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1031955,12 +1030773,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1033771,12 +1032583,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1035584,12 +1034390,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1037398,12 +1036198,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1039254,12 +1038048,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1041068,12 +1039856,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1042795,12 +1041577,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1044522,12 +1043298,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1046294,12 +1045064,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1048065,12 +1046829,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1049850,12 +1048608,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1051718,12 +1050470,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1053503,12 +1052249,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1055982,12 +1054722,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1058238,12 +1056972,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1060007,12 +1058735,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1064438,12 +1063160,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1066417,12 +1065133,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1068208,12 +1066918,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1070000,12 +1068704,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1071811,12 +1070509,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1073729,12 +1072421,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1075525,12 +1074211,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1077206,12 +1075886,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1078886,12 +1077560,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1080583,12 +1079251,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1082264,12 +1080926,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1084060,12 +1082716,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1085856,12 +1084506,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1087682,12 +1086326,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1089477,12 +1088115,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1101529,12 +1100161,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1103290,11 +1101916,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean" - }, "homepage": { "type": "string", "nullable": true @@ -1104109,11 +1102730,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean" - }, "homepage": { "type": "string", "nullable": true @@ -1106249,12 +1104865,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1107899,11 +1106509,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "has_pages": { "type": "boolean" }, @@ -1108729,11 +1107334,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -1110871,12 +1109471,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1112534,11 +1111128,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -1113351,11 +1111940,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -1115493,12 +1114077,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1118012,12 +1116590,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1118907,12 +1117479,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1120493,12 +1119059,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1123012,12 +1121572,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1123907,12 +1122461,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1125493,12 +1124041,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1127365,11 +1125907,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean" - }, "homepage": { "type": "string", "nullable": true @@ -1128182,11 +1126719,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean" - }, "homepage": { "type": "string", "nullable": true @@ -1130310,12 +1128842,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1131971,11 +1130497,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -1132788,11 +1131309,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -1134935,12 +1133451,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1137516,12 +1136026,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1138411,12 +1136915,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1139997,12 +1138495,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1141659,11 +1140151,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -1142476,11 +1140963,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -1144606,12 +1143088,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1146312,11 +1144788,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -1147131,11 +1145602,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -1149272,12 +1147738,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1150936,11 +1149396,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -1151755,11 +1150210,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -1153895,12 +1152345,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1155767,11 +1154211,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean" - }, "homepage": { "type": "string", "nullable": true @@ -1156584,11 +1155023,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean" - }, "homepage": { "type": "string", "nullable": true @@ -1158712,12 +1157146,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1161230,12 +1159658,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1162125,12 +1160547,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1163711,12 +1162127,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1166230,12 +1164640,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1167125,12 +1165529,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1168711,12 +1167109,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1171230,12 +1169622,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1172125,12 +1170511,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1173711,12 +1172091,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1175727,11 +1174101,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -1176530,11 +1174899,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -1178545,12 +1176909,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1180558,11 +1178916,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -1181361,11 +1179714,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -1183366,12 +1181714,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1185400,11 +1183742,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -1186203,11 +1184540,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -1188209,12 +1186541,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1189868,11 +1188194,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -1190671,11 +1188992,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -1192688,12 +1191004,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1197257,12 +1195567,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1199128,11 +1197432,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -1199945,11 +1198244,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -1202091,12 +1200385,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1203762,11 +1202050,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -1204579,11 +1202862,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -1206725,12 +1205003,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1208536,11 +1206808,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -1209353,11 +1207620,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -1211492,12 +1209754,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1213166,11 +1211422,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -1213983,11 +1212234,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -1216113,12 +1214359,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1217903,11 +1216143,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -1218707,11 +1216942,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -1220725,12 +1218955,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1222583,11 +1220807,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -1223348,11 +1221567,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -1225326,12 +1223540,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1227360,11 +1225568,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -1228123,11 +1226326,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -1230090,12 +1228288,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1232138,11 +1230330,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -1232955,11 +1231142,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -1235095,12 +1233277,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1236859,11 +1235035,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -1237678,11 +1235849,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -1239819,12 +1237985,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1241524,11 +1239684,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -1242343,11 +1240498,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -1244483,12 +1242633,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1246145,11 +1244289,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -1246963,11 +1245102,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -1249091,12 +1247225,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1250562,11 +1248690,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -1252833,12 +1250956,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1255002,12 +1253119,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1257051,12 +1255162,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1259101,12 +1257206,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1261204,12 +1259303,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1263258,12 +1261351,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1265308,12 +1263395,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1267357,12 +1265438,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1269407,12 +1267482,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1271037,12 +1269106,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1274235,12 +1272298,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1277433,12 +1275490,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1279064,12 +1277115,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1280695,12 +1278740,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1282332,12 +1280371,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1284015,12 +1282048,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1285640,12 +1283667,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1287277,12 +1285298,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1288908,12 +1286923,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1290566,12 +1288575,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1292198,12 +1290201,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1295143,12 +1293140,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1298088,12 +1296079,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1304125,12 +1302110,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1305757,12 +1303736,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1307555,12 +1305528,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1309361,12 +1307328,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1311158,12 +1309119,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1312955,12 +1310910,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1315327,12 +1313276,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1317575,12 +1315518,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1320063,12 +1318000,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1322487,12 +1320418,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1324735,12 +1322660,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1326983,12 +1324902,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1329355,12 +1327268,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1331603,12 +1329510,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1333124,12 +1331025,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1334918,12 +1332813,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1336753,12 +1334642,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1338588,12 +1336471,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1340360,10 +1338237,6 @@ ], "example": "all" }, - "has_commit_comments": { - "type": "boolean", - "example": true - }, "archived": { "type": "boolean" }, @@ -1340938,12 +1338811,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1341938,12 +1339805,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1342688,12 +1340549,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1344238,12 +1342093,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1346183,12 +1344032,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1348145,12 +1345988,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1350095,12 +1347932,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1352103,12 +1349934,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1354108,12 +1351933,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1356054,12 +1353873,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1357690,12 +1355503,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1359796,12 +1357603,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1362150,12 +1359951,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1364134,12 +1361929,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1365866,12 +1363655,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1368072,12 +1365855,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1370397,12 +1368174,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1372381,12 +1370152,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1374113,12 +1371878,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1376319,12 +1374078,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1378644,12 +1376397,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1380628,12 +1378375,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1382360,12 +1380101,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1384566,12 +1382301,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1386891,12 +1384620,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1388875,12 +1386598,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1390607,12 +1388324,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1392813,12 +1390524,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1394439,12 +1392144,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1402208,12 +1399907,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1403839,12 +1401532,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1405472,12 +1403159,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1407940,12 +1405621,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1410440,12 +1408115,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1412785,12 +1410454,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1415131,12 +1412794,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1418025,12 +1415682,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1420901,12 +1418552,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, diff --git a/descriptions/api.github.com/dereferenced/api.github.com.2022-11-28.deref.yaml b/descriptions/api.github.com/dereferenced/api.github.com.2022-11-28.deref.yaml index 5e7de3fc6..444f66e49 100644 --- a/descriptions/api.github.com/dereferenced/api.github.com.2022-11-28.deref.yaml +++ b/descriptions/api.github.com/dereferenced/api.github.com.2022-11-28.deref.yaml @@ -3199,11 +3199,6 @@ paths: - all - collaborators_only example: all - has_commit_comments: - description: Whether commit comments are enabled. - default: true - type: boolean - example: true archived: description: Whether the repository is archived. default: false @@ -11914,8 +11909,6 @@ paths: enum: - all - collaborators_only - has_commit_comments: - type: boolean forks_count: type: integer mirror_url: @@ -16742,8 +16735,6 @@ paths: enum: - all - collaborators_only - has_commit_comments: - type: boolean archived: type: boolean disabled: @@ -24967,6 +24958,8 @@ paths: created: '2011-01-26T19:14:43Z' updated_at: '2011-01-26T19:14:43Z' attestation_id: 456 + '403': *29 + '404': *6 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -25126,6 +25119,8 @@ paths: items: *169 examples: default: *170 + '403': *29 + '404': *6 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -25280,6 +25275,8 @@ paths: status: active created_at: '2023-10-01T12:00:00Z' updated_at: '2023-10-01T12:00:00Z' + '403': *29 + '404': *6 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -38289,6 +38286,15 @@ paths: - python_index - terraform_registry type: string + auth_type: + description: The authentication type for the private registry. + enum: + - token + - username_password + - oidc_azure + - oidc_aws + - oidc_jfrog + type: string url: description: The URL of the private registry. type: string @@ -38317,6 +38323,36 @@ paths: - private - selected type: string + tenant_id: + description: The tenant ID of the Azure AD application. + type: string + client_id: + description: The client ID of the Azure AD application. + type: string + aws_region: + description: The AWS region. + type: string + account_id: + description: The AWS account ID. + type: string + role_name: + description: The AWS IAM role name. + type: string + domain: + description: The CodeArtifact domain. + type: string + domain_owner: + description: The CodeArtifact domain owner. + type: string + jfrog_oidc_provider_name: + description: The JFrog OIDC provider name. + type: string + audience: + description: The OIDC audience. + type: string + identity_mapping_name: + description: The JFrog identity mapping name. + type: string created_at: type: string format: date-time @@ -38354,6 +38390,7 @@ paths: description: |2- Creates a private registry configuration with an encrypted value for an organization. Encrypt your secret using [LibSodium](https://libsodium.gitbook.io/doc/bindings_for_other_languages). For more information, see "[Encrypting secrets for the REST API](https://docs.github.com/rest/guides/encrypting-secrets-for-the-rest-api)." + For OIDC-based registries (`oidc_azure`, `oidc_aws`, or `oidc_jfrog`), the `encrypted_value` and `key_id` fields should be omitted. OAuth app tokens and personal access tokens (classic) need the `admin:org` scope to use this endpoint. tags: @@ -38413,11 +38450,14 @@ paths: description: The value for your secret, encrypted with [LibSodium](https://libsodium.gitbook.io/doc/bindings_for_other_languages) using the public key retrieved from the [Get private registries public key for an organization](https://docs.github.com/rest/private-registries/organization-configurations#get-private-registries-public-key-for-an-organization) - endpoint. + endpoint. Required when `auth_type` is `token` or `username_password`. + Should be omitted for OIDC auth types. type: string pattern: "^(?:[A-Za-z0-9+/]{4})*(?:[A-Za-z0-9+/]{2}==|[A-Za-z0-9+/]{3}=|[A-Za-z0-9+/]{4})$" key_id: - description: The ID of the key you used to encrypt the secret. + description: The ID of the key you used to encrypt the secret. Required + when `auth_type` is `token` or `username_password`. Should be + omitted for OIDC auth types. type: string visibility: description: Which type of organization repositories have access @@ -38440,11 +38480,58 @@ paths: type: array items: type: integer + auth_type: + description: The authentication type for the private registry. Defaults + to `token` if not specified. Use `oidc_azure`, `oidc_aws`, or + `oidc_jfrog` for OIDC authentication. + type: string + enum: + - token + - username_password + - oidc_azure + - oidc_aws + - oidc_jfrog + tenant_id: + description: The tenant ID of the Azure AD application. Required + when `auth_type` is `oidc_azure`. + type: string + client_id: + description: The client ID of the Azure AD application. Required + when `auth_type` is `oidc_azure`. + type: string + aws_region: + description: The AWS region. Required when `auth_type` is `oidc_aws`. + type: string + account_id: + description: The AWS account ID. Required when `auth_type` is `oidc_aws`. + type: string + role_name: + description: The AWS IAM role name. Required when `auth_type` is + `oidc_aws`. + type: string + domain: + description: The CodeArtifact domain. Required when `auth_type` + is `oidc_aws`. + type: string + domain_owner: + description: The CodeArtifact domain owner (AWS account ID). Required + when `auth_type` is `oidc_aws`. + type: string + jfrog_oidc_provider_name: + description: The JFrog OIDC provider name. Required when `auth_type` + is `oidc_jfrog`. + type: string + audience: + description: The OIDC audience. Optional for `oidc_aws` and `oidc_jfrog` + auth types. + type: string + identity_mapping_name: + description: The JFrog identity mapping name. Optional for `oidc_jfrog` + auth type. + type: string required: - registry_type - url - - encrypted_value - - key_id - visibility examples: org-private-registry-with-private-visibility: @@ -38471,6 +38558,15 @@ paths: selected_repository_ids: - 1296269 - 1296280 + org-private-registry-with-oidc-azure: + summary: Example of an OIDC private registry configuration using Azure + value: + registry_type: docker_registry + url: https://myregistry.azurecr.io + auth_type: oidc_azure + visibility: all + tenant_id: 12345678-1234-1234-1234-123456789012 + client_id: abcdef01-2345-6789-abcd-ef0123456789 responses: '201': description: The organization private registry configuration @@ -38504,6 +38600,15 @@ paths: - python_index - terraform_registry type: string + auth_type: + description: The authentication type for the private registry. + enum: + - token + - username_password + - oidc_azure + - oidc_aws + - oidc_jfrog + type: string url: description: The URL of the private registry. type: string @@ -38538,6 +38643,36 @@ paths: private registry when `visibility` is set to `selected`. items: type: integer + tenant_id: + description: The tenant ID of the Azure AD application. + type: string + client_id: + description: The client ID of the Azure AD application. + type: string + aws_region: + description: The AWS region. + type: string + account_id: + description: The AWS account ID. + type: string + role_name: + description: The AWS IAM role name. + type: string + domain: + description: The CodeArtifact domain. + type: string + domain_owner: + description: The CodeArtifact domain owner. + type: string + jfrog_oidc_provider_name: + description: The JFrog OIDC provider name. + type: string + audience: + description: The OIDC audience. + type: string + identity_mapping_name: + description: The JFrog identity mapping name. + type: string created_at: type: string format: date-time @@ -38661,6 +38796,7 @@ paths: description: |2- Updates a private registry configuration with an encrypted value for an organization. Encrypt your secret using [LibSodium](https://libsodium.gitbook.io/doc/bindings_for_other_languages). For more information, see "[Encrypting secrets for the REST API](https://docs.github.com/rest/guides/encrypting-secrets-for-the-rest-api)." + For OIDC-based registries (`oidc_azure`, `oidc_aws`, or `oidc_jfrog`), the `encrypted_value` and `key_id` fields should be omitted. OAuth app tokens and personal access tokens (classic) need the `admin:org` scope to use this endpoint. tags: @@ -38745,12 +38881,71 @@ paths: type: array items: type: integer + auth_type: + description: The authentication type for the private registry. This + field cannot be changed after creation. If provided, it must match + the existing `auth_type` of the configuration. To change the authentication + type, delete and recreate the configuration. + type: string + enum: + - token + - username_password + - oidc_azure + - oidc_aws + - oidc_jfrog + tenant_id: + description: The tenant ID of the Azure AD application. Required + when `auth_type` is `oidc_azure`. + type: string + client_id: + description: The client ID of the Azure AD application. Required + when `auth_type` is `oidc_azure`. + type: string + aws_region: + description: The AWS region. Required when `auth_type` is `oidc_aws`. + type: string + account_id: + description: The AWS account ID. Required when `auth_type` is `oidc_aws`. + type: string + role_name: + description: The AWS IAM role name. Required when `auth_type` is + `oidc_aws`. + type: string + domain: + description: The CodeArtifact domain. Required when `auth_type` + is `oidc_aws`. + type: string + domain_owner: + description: The CodeArtifact domain owner (AWS account ID). Required + when `auth_type` is `oidc_aws`. + type: string + jfrog_oidc_provider_name: + description: The JFrog OIDC provider name. Required when `auth_type` + is `oidc_jfrog`. + type: string + audience: + description: The OIDC audience. Optional for `oidc_aws` and `oidc_jfrog` + auth types. + type: string + identity_mapping_name: + description: The JFrog identity mapping name. Optional for `oidc_jfrog` + auth type. + type: string examples: - default: + secret-based-update: + summary: Update a secret-based private registry value: username: monalisa encrypted_value: c2VjcmV0 key_id: '012345678912345678' + oidc-azure-update: + summary: Update an OIDC private registry (Azure) + value: + tenant_id: 12345678-1234-1234-1234-123456789012 + visibility: selected + selected_repository_ids: + - 1296269 + - 1296280 responses: '204': description: Response @@ -42745,9 +42940,6 @@ paths: - all - collaborators_only example: all - has_commit_comments: - type: boolean - example: true archived: type: boolean disabled: @@ -90237,6 +90429,7 @@ paths: responses: '204': description: Response + '404': *6 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -90353,6 +90546,7 @@ paths: schema: *597 examples: default: *601 + '404': *6 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -90538,6 +90732,7 @@ paths: responses: '204': description: Response + '404': *6 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -96918,8 +97113,6 @@ paths: enum: - all - collaborators_only - has_commit_comments: - type: boolean archived: type: boolean disabled: @@ -108709,11 +108902,6 @@ x-webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - default: true - type: boolean - example: true archived: description: Whether the repository is archived. default: false @@ -142888,10 +143076,6 @@ x-webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - default: true - type: boolean has_downloads: description: Whether downloads are enabled. type: boolean @@ -147272,10 +147456,6 @@ x-webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - default: true - type: boolean homepage: type: string nullable: true @@ -158902,10 +159082,6 @@ x-webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - default: true - type: boolean homepage: type: string nullable: true @@ -159549,10 +159725,6 @@ x-webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - default: true - type: boolean homepage: type: string nullable: true @@ -161287,10 +161459,6 @@ x-webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true has_pages: type: boolean has_projects: @@ -161942,10 +162110,6 @@ x-webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -163691,10 +163855,6 @@ x-webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -164336,10 +164496,6 @@ x-webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -166320,10 +166476,6 @@ x-webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - default: true - type: boolean homepage: type: string nullable: true @@ -166963,10 +167115,6 @@ x-webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - default: true - type: boolean homepage: type: string nullable: true @@ -168695,10 +168843,6 @@ x-webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -169340,10 +169484,6 @@ x-webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -171220,10 +171360,6 @@ x-webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -171865,10 +172001,6 @@ x-webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -173603,10 +173735,6 @@ x-webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -174250,10 +174378,6 @@ x-webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -175998,10 +176122,6 @@ x-webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -176645,10 +176765,6 @@ x-webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -179014,10 +179130,6 @@ x-webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -179648,10 +179760,6 @@ x-webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -181579,10 +181687,6 @@ x-webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -182213,10 +182317,6 @@ x-webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -183853,10 +183953,6 @@ x-webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -184487,10 +184583,6 @@ x-webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -186128,10 +186220,6 @@ x-webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -186762,10 +186850,6 @@ x-webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -190876,10 +190960,6 @@ x-webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -191516,10 +191596,6 @@ x-webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -193278,10 +193354,6 @@ x-webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -193925,10 +193997,6 @@ x-webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -195797,10 +195865,6 @@ x-webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -196444,10 +196508,6 @@ x-webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -198202,10 +198262,6 @@ x-webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -198849,10 +198905,6 @@ x-webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -200686,10 +200738,6 @@ x-webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -201321,10 +201369,6 @@ x-webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -202972,10 +203016,6 @@ x-webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -203556,10 +203596,6 @@ x-webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -205460,10 +205496,6 @@ x-webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -206042,10 +206074,6 @@ x-webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -207944,10 +207972,6 @@ x-webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -208589,10 +208613,6 @@ x-webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -210332,10 +210352,6 @@ x-webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -210979,10 +210995,6 @@ x-webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -212727,10 +212739,6 @@ x-webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -213374,10 +213382,6 @@ x-webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -215111,10 +215115,6 @@ x-webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -215757,10 +215757,6 @@ x-webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -217373,10 +217369,6 @@ x-webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true diff --git a/descriptions/api.github.com/dereferenced/api.github.com.2026-03-10.deref.json b/descriptions/api.github.com/dereferenced/api.github.com.2026-03-10.deref.json index 0c6002bd8..f5d7e7b91 100644 --- a/descriptions/api.github.com/dereferenced/api.github.com.2026-03-10.deref.json +++ b/descriptions/api.github.com/dereferenced/api.github.com.2026-03-10.deref.json @@ -7915,12 +7915,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -28500,12 +28494,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -31692,12 +31680,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -34199,9 +34181,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "forks_count": { "type": "integer" }, @@ -45710,12 +45689,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -47685,12 +47658,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -54684,12 +54651,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -57876,12 +57837,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -60383,9 +60338,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "forks_count": { "type": "integer" }, @@ -63259,9 +63211,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -64462,9 +64411,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -75865,12 +75811,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -77431,12 +77371,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -80131,9 +80065,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -82537,12 +82468,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -83364,12 +83289,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -85701,9 +85620,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -87303,9 +87219,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -88169,6 +88082,58 @@ } } } + }, + "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": { @@ -88439,6 +88404,58 @@ } } } + }, + "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": { @@ -88642,6 +88659,58 @@ } } } + }, + "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": { @@ -99729,9 +99798,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -102593,9 +102659,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -106203,9 +106266,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -111666,9 +111726,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -112892,9 +112949,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -115442,12 +115496,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -118634,12 +118682,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -121141,9 +121183,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "forks_count": { "type": "integer" }, @@ -134163,12 +134202,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -137190,9 +137223,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -139262,9 +139292,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -148352,9 +148379,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -149483,9 +149507,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -152589,9 +152610,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -154645,9 +154663,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -155226,6 +155241,17 @@ ], "type": "string" }, + "auth_type": { + "description": "The authentication type for the private registry.", + "enum": [ + "token", + "username_password", + "oidc_azure", + "oidc_aws", + "oidc_jfrog" + ], + "type": "string" + }, "url": { "description": "The URL of the private registry.", "type": "string", @@ -155251,6 +155277,46 @@ ], "type": "string" }, + "tenant_id": { + "description": "The tenant ID of the Azure AD application.", + "type": "string" + }, + "client_id": { + "description": "The client ID of the Azure AD application.", + "type": "string" + }, + "aws_region": { + "description": "The AWS region.", + "type": "string" + }, + "account_id": { + "description": "The AWS account ID.", + "type": "string" + }, + "role_name": { + "description": "The AWS IAM role name.", + "type": "string" + }, + "domain": { + "description": "The CodeArtifact domain.", + "type": "string" + }, + "domain_owner": { + "description": "The CodeArtifact domain owner.", + "type": "string" + }, + "jfrog_oidc_provider_name": { + "description": "The JFrog OIDC provider name.", + "type": "string" + }, + "audience": { + "description": "The OIDC audience.", + "type": "string" + }, + "identity_mapping_name": { + "description": "The JFrog identity mapping name.", + "type": "string" + }, "created_at": { "type": "string", "format": "date-time" @@ -155395,7 +155461,7 @@ }, "post": { "summary": "Create a private registry for an organization", - "description": "\nCreates a private registry configuration with an encrypted value for an organization. Encrypt your secret using [LibSodium](https://libsodium.gitbook.io/doc/bindings_for_other_languages). For more information, see \"[Encrypting secrets for the REST API](https://docs.github.com/rest/guides/encrypting-secrets-for-the-rest-api).\"\n\nOAuth app tokens and personal access tokens (classic) need the `admin:org` scope to use this endpoint.", + "description": "\nCreates a private registry configuration with an encrypted value for an organization. Encrypt your secret using [LibSodium](https://libsodium.gitbook.io/doc/bindings_for_other_languages). For more information, see \"[Encrypting secrets for the REST API](https://docs.github.com/rest/guides/encrypting-secrets-for-the-rest-api).\"\nFor OIDC-based registries (`oidc_azure`, `oidc_aws`, or `oidc_jfrog`), the `encrypted_value` and `key_id` fields should be omitted.\n\nOAuth app tokens and personal access tokens (classic) need the `admin:org` scope to use this endpoint.", "tags": [ "private-registries" ], @@ -155459,12 +155525,12 @@ "default": false }, "encrypted_value": { - "description": "The value for your secret, encrypted with [LibSodium](https://libsodium.gitbook.io/doc/bindings_for_other_languages) using the public key retrieved from the [Get private registries public key for an organization](https://docs.github.com/rest/private-registries/organization-configurations#get-private-registries-public-key-for-an-organization) endpoint.", + "description": "The value for your secret, encrypted with [LibSodium](https://libsodium.gitbook.io/doc/bindings_for_other_languages) using the public key retrieved from the [Get private registries public key for an organization](https://docs.github.com/rest/private-registries/organization-configurations#get-private-registries-public-key-for-an-organization) endpoint. Required when `auth_type` is `token` or `username_password`. Should be omitted for OIDC auth types.", "type": "string", "pattern": "^(?:[A-Za-z0-9+/]{4})*(?:[A-Za-z0-9+/]{2}==|[A-Za-z0-9+/]{3}=|[A-Za-z0-9+/]{4})$" }, "key_id": { - "description": "The ID of the key you used to encrypt the secret.", + "description": "The ID of the key you used to encrypt the secret. Required when `auth_type` is `token` or `username_password`. Should be omitted for OIDC auth types.", "type": "string" }, "visibility": { @@ -155482,13 +155548,62 @@ "items": { "type": "integer" } + }, + "auth_type": { + "description": "The authentication type for the private registry. Defaults to `token` if not specified. Use `oidc_azure`, `oidc_aws`, or `oidc_jfrog` for OIDC authentication.", + "type": "string", + "enum": [ + "token", + "username_password", + "oidc_azure", + "oidc_aws", + "oidc_jfrog" + ] + }, + "tenant_id": { + "description": "The tenant ID of the Azure AD application. Required when `auth_type` is `oidc_azure`.", + "type": "string" + }, + "client_id": { + "description": "The client ID of the Azure AD application. Required when `auth_type` is `oidc_azure`.", + "type": "string" + }, + "aws_region": { + "description": "The AWS region. Required when `auth_type` is `oidc_aws`.", + "type": "string" + }, + "account_id": { + "description": "The AWS account ID. Required when `auth_type` is `oidc_aws`.", + "type": "string" + }, + "role_name": { + "description": "The AWS IAM role name. Required when `auth_type` is `oidc_aws`.", + "type": "string" + }, + "domain": { + "description": "The CodeArtifact domain. Required when `auth_type` is `oidc_aws`.", + "type": "string" + }, + "domain_owner": { + "description": "The CodeArtifact domain owner (AWS account ID). Required when `auth_type` is `oidc_aws`.", + "type": "string" + }, + "jfrog_oidc_provider_name": { + "description": "The JFrog OIDC provider name. Required when `auth_type` is `oidc_jfrog`.", + "type": "string" + }, + "audience": { + "description": "The OIDC audience. Optional for `oidc_aws` and `oidc_jfrog` auth types.", + "type": "string" + }, + "identity_mapping_name": { + "description": "The JFrog identity mapping name. Optional for `oidc_jfrog` auth type.", + "type": "string" } }, "required": [ "registry_type", "url", - "encrypted_value", - "key_id", "visibility" ] }, @@ -155519,6 +155634,17 @@ 1296280 ] } + }, + "org-private-registry-with-oidc-azure": { + "summary": "Example of an OIDC private registry configuration using Azure", + "value": { + "registry_type": "docker_registry", + "url": "https://myregistry.azurecr.io", + "auth_type": "oidc_azure", + "visibility": "all", + "tenant_id": "12345678-1234-1234-1234-123456789012", + "client_id": "abcdef01-2345-6789-abcd-ef0123456789" + } } } } @@ -155560,6 +155686,17 @@ ], "type": "string" }, + "auth_type": { + "description": "The authentication type for the private registry.", + "enum": [ + "token", + "username_password", + "oidc_azure", + "oidc_aws", + "oidc_jfrog" + ], + "type": "string" + }, "url": { "description": "The URL of the private registry.", "type": "string", @@ -155591,6 +155728,46 @@ "type": "integer" } }, + "tenant_id": { + "description": "The tenant ID of the Azure AD application.", + "type": "string" + }, + "client_id": { + "description": "The client ID of the Azure AD application.", + "type": "string" + }, + "aws_region": { + "description": "The AWS region.", + "type": "string" + }, + "account_id": { + "description": "The AWS account ID.", + "type": "string" + }, + "role_name": { + "description": "The AWS IAM role name.", + "type": "string" + }, + "domain": { + "description": "The CodeArtifact domain.", + "type": "string" + }, + "domain_owner": { + "description": "The CodeArtifact domain owner.", + "type": "string" + }, + "jfrog_oidc_provider_name": { + "description": "The JFrog OIDC provider name.", + "type": "string" + }, + "audience": { + "description": "The OIDC audience.", + "type": "string" + }, + "identity_mapping_name": { + "description": "The JFrog identity mapping name.", + "type": "string" + }, "created_at": { "type": "string", "format": "date-time" @@ -155910,6 +156087,17 @@ ], "type": "string" }, + "auth_type": { + "description": "The authentication type for the private registry.", + "enum": [ + "token", + "username_password", + "oidc_azure", + "oidc_aws", + "oidc_jfrog" + ], + "type": "string" + }, "url": { "description": "The URL of the private registry.", "type": "string", @@ -155935,6 +156123,46 @@ ], "type": "string" }, + "tenant_id": { + "description": "The tenant ID of the Azure AD application.", + "type": "string" + }, + "client_id": { + "description": "The client ID of the Azure AD application.", + "type": "string" + }, + "aws_region": { + "description": "The AWS region.", + "type": "string" + }, + "account_id": { + "description": "The AWS account ID.", + "type": "string" + }, + "role_name": { + "description": "The AWS IAM role name.", + "type": "string" + }, + "domain": { + "description": "The CodeArtifact domain.", + "type": "string" + }, + "domain_owner": { + "description": "The CodeArtifact domain owner.", + "type": "string" + }, + "jfrog_oidc_provider_name": { + "description": "The JFrog OIDC provider name.", + "type": "string" + }, + "audience": { + "description": "The OIDC audience.", + "type": "string" + }, + "identity_mapping_name": { + "description": "The JFrog identity mapping name.", + "type": "string" + }, "created_at": { "type": "string", "format": "date-time" @@ -156003,7 +156231,7 @@ }, "patch": { "summary": "Update a private registry for an organization", - "description": "\nUpdates a private registry configuration with an encrypted value for an organization. Encrypt your secret using [LibSodium](https://libsodium.gitbook.io/doc/bindings_for_other_languages). For more information, see \"[Encrypting secrets for the REST API](https://docs.github.com/rest/guides/encrypting-secrets-for-the-rest-api).\"\n\nOAuth app tokens and personal access tokens (classic) need the `admin:org` scope to use this endpoint.", + "description": "\nUpdates a private registry configuration with an encrypted value for an organization. Encrypt your secret using [LibSodium](https://libsodium.gitbook.io/doc/bindings_for_other_languages). For more information, see \"[Encrypting secrets for the REST API](https://docs.github.com/rest/guides/encrypting-secrets-for-the-rest-api).\"\nFor OIDC-based registries (`oidc_azure`, `oidc_aws`, or `oidc_jfrog`), the `encrypted_value` and `key_id` fields should be omitted.\n\nOAuth app tokens and personal access tokens (classic) need the `admin:org` scope to use this endpoint.", "tags": [ "private-registries" ], @@ -156099,16 +156327,79 @@ "items": { "type": "integer" } + }, + "auth_type": { + "description": "The authentication type for the private registry. This field cannot be changed after creation. If provided, it must match the existing `auth_type` of the configuration. To change the authentication type, delete and recreate the configuration.", + "type": "string", + "enum": [ + "token", + "username_password", + "oidc_azure", + "oidc_aws", + "oidc_jfrog" + ] + }, + "tenant_id": { + "description": "The tenant ID of the Azure AD application. Required when `auth_type` is `oidc_azure`.", + "type": "string" + }, + "client_id": { + "description": "The client ID of the Azure AD application. Required when `auth_type` is `oidc_azure`.", + "type": "string" + }, + "aws_region": { + "description": "The AWS region. Required when `auth_type` is `oidc_aws`.", + "type": "string" + }, + "account_id": { + "description": "The AWS account ID. Required when `auth_type` is `oidc_aws`.", + "type": "string" + }, + "role_name": { + "description": "The AWS IAM role name. Required when `auth_type` is `oidc_aws`.", + "type": "string" + }, + "domain": { + "description": "The CodeArtifact domain. Required when `auth_type` is `oidc_aws`.", + "type": "string" + }, + "domain_owner": { + "description": "The CodeArtifact domain owner (AWS account ID). Required when `auth_type` is `oidc_aws`.", + "type": "string" + }, + "jfrog_oidc_provider_name": { + "description": "The JFrog OIDC provider name. Required when `auth_type` is `oidc_jfrog`.", + "type": "string" + }, + "audience": { + "description": "The OIDC audience. Optional for `oidc_aws` and `oidc_jfrog` auth types.", + "type": "string" + }, + "identity_mapping_name": { + "description": "The JFrog identity mapping name. Optional for `oidc_jfrog` auth type.", + "type": "string" } } }, "examples": { - "default": { + "secret-based-update": { + "summary": "Update a secret-based private registry", "value": { "username": "monalisa", "encrypted_value": "c2VjcmV0", "key_id": "012345678912345678" } + }, + "oidc-azure-update": { + "summary": "Update an OIDC private registry (Azure)", + "value": { + "tenant_id": "12345678-1234-1234-1234-123456789012", + "visibility": "selected", + "selected_repository_ids": [ + 1296269, + 1296280 + ] + } } } } @@ -159552,12 +159843,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -162498,12 +162783,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -163377,12 +163656,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -168755,12 +169028,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -171701,12 +171968,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -172580,12 +172841,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -183777,9 +184032,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -184891,10 +185143,6 @@ ], "example": "all" }, - "has_commit_comments": { - "type": "boolean", - "example": true - }, "archived": { "type": "boolean" }, @@ -185462,12 +185710,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -186441,12 +186683,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -187174,12 +187410,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -203299,9 +203529,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -209728,9 +209955,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -212583,10 +212807,6 @@ ], "example": "all" }, - "has_commit_comments": { - "type": "boolean", - "example": true - }, "archived": { "type": "boolean" }, @@ -213154,12 +213374,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -214133,12 +214347,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -214866,12 +215074,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -216732,10 +216934,6 @@ ], "example": "all" }, - "has_commit_comments": { - "type": "boolean", - "example": true - }, "archived": { "type": "boolean" }, @@ -217303,12 +217501,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -218282,12 +218474,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -219015,12 +219201,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -225945,12 +226125,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -226781,12 +226955,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -229365,9 +229533,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -230111,9 +230276,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -231793,9 +231955,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -232539,9 +232698,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -234969,9 +235125,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -235715,9 +235868,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -242197,9 +242347,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -242943,9 +243090,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -274098,9 +274242,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -275755,9 +275896,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -277054,9 +277192,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -278581,9 +278716,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -292016,9 +292148,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -293829,9 +293958,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -295280,9 +295406,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -298695,9 +298818,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -305717,12 +305837,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -306596,12 +306710,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -310913,9 +311021,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -312133,9 +312238,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -334215,12 +334317,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -337407,12 +337503,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -339914,9 +340004,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "forks_count": { "type": "integer" }, @@ -342695,9 +342782,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -343739,10 +343823,6 @@ ], "example": "all" }, - "has_commit_comments": { - "type": "boolean", - "example": true - }, "archived": { "type": "boolean" }, @@ -344310,12 +344390,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -345289,12 +345363,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -346022,12 +346090,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -357504,9 +357566,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -358778,9 +358837,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -361133,12 +361189,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -364394,12 +364444,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -372689,12 +372733,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -377140,12 +377178,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -381466,12 +381498,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -384954,12 +384980,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -388217,12 +388237,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -391283,12 +391297,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -396295,12 +396303,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -399448,12 +399450,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -402679,12 +402675,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -405930,12 +405920,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -419878,12 +419862,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -424004,12 +423982,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -427159,12 +427131,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -430290,12 +430256,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -433520,12 +433480,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -444975,12 +444929,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -454437,9 +454385,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -460260,12 +460205,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -461139,12 +461078,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -463931,12 +463864,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -464809,12 +464736,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -470489,12 +470410,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -471367,12 +471282,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -474369,12 +474278,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -475247,12 +475150,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -477552,9 +477449,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -479003,9 +478897,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -485205,12 +485096,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -486084,12 +485969,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -488954,12 +488833,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -489833,12 +489706,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -497539,6 +497406,32 @@ "responses": { "204": { "description": "Response" + }, + "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": { @@ -498307,6 +498200,32 @@ } } } + }, + "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": { @@ -500374,6 +500293,32 @@ "responses": { "204": { "description": "Response" + }, + "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": { @@ -528721,10 +528666,6 @@ ], "example": "all" }, - "has_commit_comments": { - "type": "boolean", - "example": true - }, "archived": { "type": "boolean" }, @@ -529292,12 +529233,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -530271,12 +530206,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -531004,12 +530933,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -536379,9 +536302,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -537676,10 +537596,6 @@ ], "example": "all" }, - "has_commit_comments": { - "type": "boolean", - "example": true - }, "archived": { "type": "boolean" }, @@ -538247,12 +538163,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -539226,12 +539136,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -539959,12 +539863,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -541427,9 +541325,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -543550,9 +543445,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -544974,9 +544866,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -546957,12 +546846,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -549402,9 +549285,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -554208,9 +554088,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -558874,9 +558751,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -560880,9 +560754,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -562331,9 +562202,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -564173,9 +564041,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -566055,9 +565920,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -567678,9 +567540,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -570102,10 +569961,6 @@ ], "example": "all" }, - "has_commit_comments": { - "type": "boolean", - "example": true - }, "archived": { "type": "boolean" }, @@ -570673,12 +570528,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -571652,12 +571501,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -572385,12 +572228,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -574607,9 +574444,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -576310,9 +576144,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -577787,9 +577618,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -583157,12 +582985,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -585573,12 +585395,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -594814,9 +594630,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -595884,9 +595697,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -598251,12 +598061,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -599357,10 +599161,6 @@ ], "example": "all" }, - "has_commit_comments": { - "type": "boolean", - "example": true - }, "archived": { "type": "boolean" }, @@ -599928,12 +599728,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -600907,12 +600701,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -601640,12 +601428,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -603407,9 +603189,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -606492,12 +606271,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -607369,12 +607142,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -608621,9 +608388,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -611911,12 +611675,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -614857,12 +614615,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -615736,12 +615488,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -619940,9 +619686,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -622490,12 +622233,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -625682,12 +625419,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -628189,9 +627920,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "forks_count": { "type": "integer" }, @@ -632555,12 +632283,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -635747,12 +635469,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -638254,9 +637970,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "forks_count": { "type": "integer" }, @@ -642630,12 +642343,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -645822,12 +645529,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -648329,9 +648030,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "forks_count": { "type": "integer" }, @@ -653943,9 +653641,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -655074,9 +654769,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -662597,12 +662289,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -665543,12 +665229,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -666422,12 +666102,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -676453,12 +676127,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -679645,12 +679313,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -682152,9 +681814,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "forks_count": { "type": "integer" }, @@ -686514,12 +686173,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -689706,12 +689359,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -692213,9 +691860,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "forks_count": { "type": "integer" }, @@ -695018,9 +694662,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -697362,12 +697003,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -698104,12 +697739,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -698929,9 +698558,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -700421,12 +700047,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -702039,12 +701659,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -703657,12 +703271,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -705455,12 +705063,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -707411,12 +707013,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -709576,9 +709172,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -711364,12 +710957,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -713694,9 +713281,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -715482,12 +715066,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -717812,9 +717390,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -719600,12 +719175,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -721943,9 +721512,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -723731,12 +723297,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -726442,12 +726002,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -728842,12 +728396,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -731236,12 +730784,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -733281,12 +732823,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -735446,12 +734982,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -737429,12 +736959,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -739504,12 +739028,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -741491,12 +741009,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -743436,12 +742948,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -745475,12 +744981,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -747321,12 +746821,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -748958,12 +748452,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -752348,12 +751836,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -754118,12 +753600,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -756562,12 +756038,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -759005,12 +758475,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -761448,12 +760912,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -763891,12 +763349,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -766334,12 +765786,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -768777,12 +768223,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -771220,12 +770660,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -773663,12 +773097,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -775330,12 +774758,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -776997,12 +776419,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -779250,12 +778666,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -782924,12 +782334,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -783802,12 +783206,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -785317,12 +784715,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -787086,12 +786478,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -789813,12 +789199,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -792478,12 +791858,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -796551,12 +795925,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -799749,12 +799117,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -801891,12 +801253,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -803970,12 +803326,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -806259,12 +805609,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -808549,12 +807893,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -810858,12 +810196,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -812938,12 +812270,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -815016,12 +814342,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -817121,12 +816441,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -819240,12 +818554,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -821319,12 +820627,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -823397,12 +822699,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -825475,12 +824771,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -827394,12 +826684,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -829246,12 +828530,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -831447,12 +830725,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -833566,12 +832838,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -835645,12 +834911,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -837723,12 +836983,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -840241,12 +839495,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -842127,12 +841375,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -844641,12 +843883,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -847249,12 +846485,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -849764,12 +848994,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -852306,12 +851530,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -854960,12 +854178,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -857580,12 +856792,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -859348,12 +858554,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -861865,12 +861065,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -865775,12 +864969,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -869686,12 +868874,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -873615,12 +872797,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -877534,12 +876710,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -881452,12 +880622,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -883632,12 +882796,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -886455,12 +885613,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -888421,12 +887573,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -889383,12 +888529,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -891562,12 +890702,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -894385,12 +893519,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -896351,12 +895479,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -897313,12 +896435,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -899492,12 +898608,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -901458,12 +900568,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -903048,12 +902152,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -905243,12 +904341,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -907422,12 +906514,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -909388,12 +908474,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -910978,12 +910058,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -913173,12 +912247,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -916966,12 +916034,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -920869,12 +919931,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -924559,12 +923615,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -928431,12 +927481,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -932196,12 +931240,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -935931,12 +934969,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -939627,12 +938659,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -943497,12 +942523,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -946539,11 +945559,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean" - }, "has_downloads": { "description": "Whether downloads are enabled.", "type": "boolean", @@ -949876,12 +948891,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -953565,12 +952574,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -957257,12 +956260,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -960340,11 +959337,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean" - }, "homepage": { "type": "string", "nullable": true @@ -963650,12 +962642,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -967407,12 +966393,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -971201,12 +970181,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -974938,12 +973912,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -978632,12 +977600,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -982321,12 +981283,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -986077,12 +985033,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -987738,12 +986688,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -989397,12 +988341,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -991099,12 +990037,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -992944,12 +991876,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -994789,12 +993715,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -996633,12 +995553,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -998474,12 +997388,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1000317,12 +999225,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1002064,12 +1000966,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1003811,12 +1002707,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1005528,12 +1004418,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1007244,12 +1006128,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1009121,12 +1007999,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1010946,12 +1009818,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1012613,12 +1011479,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1014355,12 +1013215,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1016159,12 +1015013,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1017960,12 +1016808,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1019762,12 +1018604,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1021606,12 +1020442,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1023408,12 +1022238,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1025123,12 +1023947,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1026838,12 +1025656,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1028598,12 +1027410,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1030357,12 +1029163,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1032130,12 +1030930,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1033986,12 +1032780,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1035759,12 +1034547,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1038226,12 +1037008,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1040470,12 +1039246,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1042227,12 +1040997,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1046646,12 +1045410,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1048613,12 +1047371,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1050392,12 +1049144,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1052172,12 +1050918,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1053971,12 +1052711,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1055877,12 +1054611,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1057661,12 +1056389,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1059330,12 +1058052,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1060998,12 +1059714,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1062683,12 +1061393,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1064352,12 +1063056,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1066136,12 +1064834,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1067920,12 +1066612,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1069734,12 +1068420,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1071517,12 +1070197,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1083557,12 +1082231,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1085306,11 +1083974,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean" - }, "homepage": { "type": "string", "nullable": true @@ -1086120,11 +1084783,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean" - }, "homepage": { "type": "string", "nullable": true @@ -1088250,12 +1086908,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1089888,11 +1088540,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "has_pages": { "type": "boolean" }, @@ -1090713,11 +1089360,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -1092845,12 +1091487,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1094496,11 +1093132,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -1095308,11 +1093939,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -1097440,12 +1096066,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1099810,12 +1098430,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1100688,12 +1099302,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1102262,12 +1100870,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1104632,12 +1103234,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1105510,12 +1104106,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1107084,12 +1105674,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1108944,11 +1107528,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean" - }, "homepage": { "type": "string", "nullable": true @@ -1109761,11 +1108340,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean" - }, "homepage": { "type": "string", "nullable": true @@ -1111884,12 +1110458,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1113533,11 +1112101,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -1114350,11 +1112913,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -1116492,12 +1115050,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1118924,12 +1117476,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1119802,12 +1118348,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1121376,12 +1119916,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1123026,11 +1121560,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -1123843,11 +1122372,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -1125968,12 +1124492,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1127662,11 +1126180,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -1128476,11 +1126989,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -1130607,12 +1129115,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1132259,11 +1130761,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -1133073,11 +1131570,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -1135203,12 +1133695,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1137063,11 +1135549,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean" - }, "homepage": { "type": "string", "nullable": true @@ -1137880,11 +1136361,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean" - }, "homepage": { "type": "string", "nullable": true @@ -1140003,12 +1138479,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1142372,12 +1140842,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1143250,12 +1141714,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1144824,12 +1143282,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1147194,12 +1145646,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1148072,12 +1146518,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1149646,12 +1148086,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1152016,12 +1150450,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1152894,12 +1151322,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1154468,12 +1152890,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1156472,11 +1154888,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -1157270,11 +1155681,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -1159275,12 +1157681,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1161276,11 +1159676,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -1162074,11 +1160469,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -1164069,12 +1162459,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1166091,11 +1164475,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -1166889,11 +1165268,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -1168885,12 +1167259,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1170532,11 +1168900,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -1171330,11 +1169693,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -1173337,12 +1171695,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1177889,12 +1176241,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1179748,11 +1178094,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -1180560,11 +1178901,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -1182696,12 +1181032,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1184355,11 +1182685,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -1185167,11 +1183492,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -1187303,12 +1185623,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1189102,11 +1187416,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -1189914,11 +1188223,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -1192043,12 +1190347,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1193705,11 +1192003,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -1194517,11 +1192810,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -1196637,12 +1194925,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1198415,11 +1196697,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -1199214,11 +1197491,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -1201222,12 +1199494,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1203068,11 +1201334,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -1203833,11 +1202094,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -1205806,12 +1204062,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1207828,11 +1206078,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -1208591,11 +1206836,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -1210553,12 +1208793,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1212589,11 +1210823,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -1213401,11 +1211630,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -1215531,12 +1213755,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1217283,11 +1215501,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -1218097,11 +1216310,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -1220228,12 +1218436,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1221921,11 +1220123,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -1222735,11 +1220932,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -1224865,12 +1223057,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1226515,11 +1224701,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -1227328,11 +1225509,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -1229446,12 +1227622,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1230905,11 +1229075,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -1233176,12 +1231341,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1235333,12 +1233492,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1237370,12 +1235523,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1239408,12 +1237555,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1241499,12 +1239640,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1243541,12 +1241676,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1245579,12 +1243708,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1247616,12 +1245739,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1249654,12 +1247771,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1251272,12 +1249383,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1254434,12 +1252539,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1257596,12 +1255695,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1259215,12 +1257308,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1260834,12 +1258921,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1262459,12 +1260540,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1264130,12 +1262205,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1265743,12 +1263812,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1267368,12 +1265431,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1268987,12 +1267044,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1270633,12 +1268684,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1272253,12 +1270298,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1275186,12 +1273225,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1278119,12 +1276152,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1284144,12 +1282171,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1285764,12 +1283785,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1287550,12 +1285565,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1289344,12 +1287353,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1291129,12 +1289132,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1292914,12 +1290911,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1295274,12 +1293265,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1297510,12 +1295495,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1299986,12 +1297965,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1302398,12 +1300371,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1304634,12 +1302601,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1306870,12 +1304831,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1309230,12 +1307185,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1311466,12 +1309415,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1312975,12 +1310918,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1314757,12 +1312694,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1316563,12 +1314494,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1318369,12 +1316294,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1320108,10 +1318027,6 @@ ], "example": "all" }, - "has_commit_comments": { - "type": "boolean", - "example": true - }, "archived": { "type": "boolean" }, @@ -1320679,12 +1318594,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1321658,12 +1319567,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1322391,12 +1320294,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1323931,12 +1321828,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1325864,12 +1323755,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1327814,12 +1325699,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1329752,12 +1327631,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1331748,12 +1329621,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1333741,12 +1331608,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1335675,12 +1333536,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1337299,12 +1335154,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1339393,12 +1337242,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1341603,12 +1339446,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1343569,12 +1341406,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1345159,12 +1342990,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1347354,12 +1345179,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1349535,12 +1347354,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1351501,12 +1349314,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1353091,12 +1350898,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1355286,12 +1353087,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1357467,12 +1355262,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1359433,12 +1357222,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1361023,12 +1358806,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1363218,12 +1360995,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1365399,12 +1363170,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1367365,12 +1365130,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1368955,12 +1366714,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1371150,12 +1368903,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1372764,12 +1370511,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1380521,12 +1378262,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1382140,12 +1379875,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1383761,12 +1381490,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1386217,12 +1383940,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1388705,12 +1386422,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1391038,12 +1388749,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1393372,12 +1391077,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1396254,12 +1393953,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1399118,12 +1396811,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, diff --git a/descriptions/api.github.com/dereferenced/api.github.com.2026-03-10.deref.yaml b/descriptions/api.github.com/dereferenced/api.github.com.2026-03-10.deref.yaml index baae32963..277636523 100644 --- a/descriptions/api.github.com/dereferenced/api.github.com.2026-03-10.deref.yaml +++ b/descriptions/api.github.com/dereferenced/api.github.com.2026-03-10.deref.yaml @@ -3164,11 +3164,6 @@ paths: - all - collaborators_only example: all - has_commit_comments: - description: Whether commit comments are enabled. - default: true - type: boolean - example: true archived: description: Whether the repository is archived. default: false @@ -11839,8 +11834,6 @@ paths: enum: - all - collaborators_only - has_commit_comments: - type: boolean forks_count: type: integer mirror_url: @@ -16440,8 +16433,6 @@ paths: enum: - all - collaborators_only - has_commit_comments: - type: boolean archived: type: boolean disabled: @@ -24656,6 +24647,8 @@ paths: created: '2011-01-26T19:14:43Z' updated_at: '2011-01-26T19:14:43Z' attestation_id: 456 + '403': *29 + '404': *6 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -24815,6 +24808,8 @@ paths: items: *169 examples: default: *170 + '403': *29 + '404': *6 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -24969,6 +24964,8 @@ paths: status: active created_at: '2023-10-01T12:00:00Z' updated_at: '2023-10-01T12:00:00Z' + '403': *29 + '404': *6 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -37945,6 +37942,15 @@ paths: - python_index - terraform_registry type: string + auth_type: + description: The authentication type for the private registry. + enum: + - token + - username_password + - oidc_azure + - oidc_aws + - oidc_jfrog + type: string url: description: The URL of the private registry. type: string @@ -37973,6 +37979,36 @@ paths: - private - selected type: string + tenant_id: + description: The tenant ID of the Azure AD application. + type: string + client_id: + description: The client ID of the Azure AD application. + type: string + aws_region: + description: The AWS region. + type: string + account_id: + description: The AWS account ID. + type: string + role_name: + description: The AWS IAM role name. + type: string + domain: + description: The CodeArtifact domain. + type: string + domain_owner: + description: The CodeArtifact domain owner. + type: string + jfrog_oidc_provider_name: + description: The JFrog OIDC provider name. + type: string + audience: + description: The OIDC audience. + type: string + identity_mapping_name: + description: The JFrog identity mapping name. + type: string created_at: type: string format: date-time @@ -38010,6 +38046,7 @@ paths: description: |2- Creates a private registry configuration with an encrypted value for an organization. Encrypt your secret using [LibSodium](https://libsodium.gitbook.io/doc/bindings_for_other_languages). For more information, see "[Encrypting secrets for the REST API](https://docs.github.com/rest/guides/encrypting-secrets-for-the-rest-api)." + For OIDC-based registries (`oidc_azure`, `oidc_aws`, or `oidc_jfrog`), the `encrypted_value` and `key_id` fields should be omitted. OAuth app tokens and personal access tokens (classic) need the `admin:org` scope to use this endpoint. tags: @@ -38069,11 +38106,14 @@ paths: description: The value for your secret, encrypted with [LibSodium](https://libsodium.gitbook.io/doc/bindings_for_other_languages) using the public key retrieved from the [Get private registries public key for an organization](https://docs.github.com/rest/private-registries/organization-configurations#get-private-registries-public-key-for-an-organization) - endpoint. + endpoint. Required when `auth_type` is `token` or `username_password`. + Should be omitted for OIDC auth types. type: string pattern: "^(?:[A-Za-z0-9+/]{4})*(?:[A-Za-z0-9+/]{2}==|[A-Za-z0-9+/]{3}=|[A-Za-z0-9+/]{4})$" key_id: - description: The ID of the key you used to encrypt the secret. + description: The ID of the key you used to encrypt the secret. Required + when `auth_type` is `token` or `username_password`. Should be + omitted for OIDC auth types. type: string visibility: description: Which type of organization repositories have access @@ -38096,11 +38136,58 @@ paths: type: array items: type: integer + auth_type: + description: The authentication type for the private registry. Defaults + to `token` if not specified. Use `oidc_azure`, `oidc_aws`, or + `oidc_jfrog` for OIDC authentication. + type: string + enum: + - token + - username_password + - oidc_azure + - oidc_aws + - oidc_jfrog + tenant_id: + description: The tenant ID of the Azure AD application. Required + when `auth_type` is `oidc_azure`. + type: string + client_id: + description: The client ID of the Azure AD application. Required + when `auth_type` is `oidc_azure`. + type: string + aws_region: + description: The AWS region. Required when `auth_type` is `oidc_aws`. + type: string + account_id: + description: The AWS account ID. Required when `auth_type` is `oidc_aws`. + type: string + role_name: + description: The AWS IAM role name. Required when `auth_type` is + `oidc_aws`. + type: string + domain: + description: The CodeArtifact domain. Required when `auth_type` + is `oidc_aws`. + type: string + domain_owner: + description: The CodeArtifact domain owner (AWS account ID). Required + when `auth_type` is `oidc_aws`. + type: string + jfrog_oidc_provider_name: + description: The JFrog OIDC provider name. Required when `auth_type` + is `oidc_jfrog`. + type: string + audience: + description: The OIDC audience. Optional for `oidc_aws` and `oidc_jfrog` + auth types. + type: string + identity_mapping_name: + description: The JFrog identity mapping name. Optional for `oidc_jfrog` + auth type. + type: string required: - registry_type - url - - encrypted_value - - key_id - visibility examples: org-private-registry-with-private-visibility: @@ -38127,6 +38214,15 @@ paths: selected_repository_ids: - 1296269 - 1296280 + org-private-registry-with-oidc-azure: + summary: Example of an OIDC private registry configuration using Azure + value: + registry_type: docker_registry + url: https://myregistry.azurecr.io + auth_type: oidc_azure + visibility: all + tenant_id: 12345678-1234-1234-1234-123456789012 + client_id: abcdef01-2345-6789-abcd-ef0123456789 responses: '201': description: The organization private registry configuration @@ -38160,6 +38256,15 @@ paths: - python_index - terraform_registry type: string + auth_type: + description: The authentication type for the private registry. + enum: + - token + - username_password + - oidc_azure + - oidc_aws + - oidc_jfrog + type: string url: description: The URL of the private registry. type: string @@ -38194,6 +38299,36 @@ paths: private registry when `visibility` is set to `selected`. items: type: integer + tenant_id: + description: The tenant ID of the Azure AD application. + type: string + client_id: + description: The client ID of the Azure AD application. + type: string + aws_region: + description: The AWS region. + type: string + account_id: + description: The AWS account ID. + type: string + role_name: + description: The AWS IAM role name. + type: string + domain: + description: The CodeArtifact domain. + type: string + domain_owner: + description: The CodeArtifact domain owner. + type: string + jfrog_oidc_provider_name: + description: The JFrog OIDC provider name. + type: string + audience: + description: The OIDC audience. + type: string + identity_mapping_name: + description: The JFrog identity mapping name. + type: string created_at: type: string format: date-time @@ -38317,6 +38452,7 @@ paths: description: |2- Updates a private registry configuration with an encrypted value for an organization. Encrypt your secret using [LibSodium](https://libsodium.gitbook.io/doc/bindings_for_other_languages). For more information, see "[Encrypting secrets for the REST API](https://docs.github.com/rest/guides/encrypting-secrets-for-the-rest-api)." + For OIDC-based registries (`oidc_azure`, `oidc_aws`, or `oidc_jfrog`), the `encrypted_value` and `key_id` fields should be omitted. OAuth app tokens and personal access tokens (classic) need the `admin:org` scope to use this endpoint. tags: @@ -38401,12 +38537,71 @@ paths: type: array items: type: integer + auth_type: + description: The authentication type for the private registry. This + field cannot be changed after creation. If provided, it must match + the existing `auth_type` of the configuration. To change the authentication + type, delete and recreate the configuration. + type: string + enum: + - token + - username_password + - oidc_azure + - oidc_aws + - oidc_jfrog + tenant_id: + description: The tenant ID of the Azure AD application. Required + when `auth_type` is `oidc_azure`. + type: string + client_id: + description: The client ID of the Azure AD application. Required + when `auth_type` is `oidc_azure`. + type: string + aws_region: + description: The AWS region. Required when `auth_type` is `oidc_aws`. + type: string + account_id: + description: The AWS account ID. Required when `auth_type` is `oidc_aws`. + type: string + role_name: + description: The AWS IAM role name. Required when `auth_type` is + `oidc_aws`. + type: string + domain: + description: The CodeArtifact domain. Required when `auth_type` + is `oidc_aws`. + type: string + domain_owner: + description: The CodeArtifact domain owner (AWS account ID). Required + when `auth_type` is `oidc_aws`. + type: string + jfrog_oidc_provider_name: + description: The JFrog OIDC provider name. Required when `auth_type` + is `oidc_jfrog`. + type: string + audience: + description: The OIDC audience. Optional for `oidc_aws` and `oidc_jfrog` + auth types. + type: string + identity_mapping_name: + description: The JFrog identity mapping name. Optional for `oidc_jfrog` + auth type. + type: string examples: - default: + secret-based-update: + summary: Update a secret-based private registry value: username: monalisa encrypted_value: c2VjcmV0 key_id: '012345678912345678' + oidc-azure-update: + summary: Update an OIDC private registry (Azure) + value: + tenant_id: 12345678-1234-1234-1234-123456789012 + visibility: selected + selected_repository_ids: + - 1296269 + - 1296280 responses: '204': description: Response @@ -42385,9 +42580,6 @@ paths: - all - collaborators_only example: all - has_commit_comments: - type: boolean - example: true archived: type: boolean disabled: @@ -89791,6 +89983,7 @@ paths: responses: '204': description: Response + '404': *6 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -89907,6 +90100,7 @@ paths: schema: *597 examples: default: *601 + '404': *6 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -90092,6 +90286,7 @@ paths: responses: '204': description: Response + '404': *6 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -96464,8 +96659,6 @@ paths: enum: - all - collaborators_only - has_commit_comments: - type: boolean archived: type: boolean disabled: @@ -108384,11 +108577,6 @@ x-webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - default: true - type: boolean - example: true archived: description: Whether the repository is archived. default: false @@ -142552,10 +142740,6 @@ x-webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - default: true - type: boolean has_downloads: description: Whether downloads are enabled. type: boolean @@ -146936,10 +147120,6 @@ x-webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - default: true - type: boolean homepage: type: string nullable: true @@ -158566,10 +158746,6 @@ x-webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - default: true - type: boolean homepage: type: string nullable: true @@ -159206,10 +159382,6 @@ x-webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - default: true - type: boolean homepage: type: string nullable: true @@ -160933,10 +161105,6 @@ x-webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true has_pages: type: boolean has_projects: @@ -161581,10 +161749,6 @@ x-webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -163319,10 +163483,6 @@ x-webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -163957,10 +164117,6 @@ x-webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -165930,10 +166086,6 @@ x-webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - default: true - type: boolean homepage: type: string nullable: true @@ -166573,10 +166725,6 @@ x-webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - default: true - type: boolean homepage: type: string nullable: true @@ -168301,10 +168449,6 @@ x-webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -168946,10 +169090,6 @@ x-webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -170822,10 +170962,6 @@ x-webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -171467,10 +171603,6 @@ x-webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -173201,10 +173333,6 @@ x-webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -173841,10 +173969,6 @@ x-webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -175578,10 +175702,6 @@ x-webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -176218,10 +176338,6 @@ x-webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -178576,10 +178692,6 @@ x-webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -179203,10 +179315,6 @@ x-webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -181123,10 +181231,6 @@ x-webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -181750,10 +181854,6 @@ x-webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -183379,10 +183479,6 @@ x-webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -184006,10 +184102,6 @@ x-webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -185636,10 +185728,6 @@ x-webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -186263,10 +186351,6 @@ x-webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -190362,10 +190446,6 @@ x-webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -190995,10 +191075,6 @@ x-webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -192746,10 +192822,6 @@ x-webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -193386,10 +193458,6 @@ x-webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -195247,10 +195315,6 @@ x-webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -195887,10 +195951,6 @@ x-webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -197634,10 +197694,6 @@ x-webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -198274,10 +198330,6 @@ x-webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -200100,10 +200152,6 @@ x-webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -200728,10 +200776,6 @@ x-webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -202368,10 +202412,6 @@ x-webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -202952,10 +202992,6 @@ x-webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -204852,10 +204888,6 @@ x-webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -205434,10 +205466,6 @@ x-webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -207332,10 +207360,6 @@ x-webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -207970,10 +207994,6 @@ x-webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -209702,10 +209722,6 @@ x-webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -210342,10 +210358,6 @@ x-webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -212079,10 +212091,6 @@ x-webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -212719,10 +212727,6 @@ x-webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -214445,10 +214449,6 @@ x-webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -215084,10 +215084,6 @@ x-webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -216689,10 +216685,6 @@ x-webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true diff --git a/descriptions/api.github.com/dereferenced/api.github.com.deref.json b/descriptions/api.github.com/dereferenced/api.github.com.deref.json index 89770ca96..a6dba183b 100644 --- a/descriptions/api.github.com/dereferenced/api.github.com.deref.json +++ b/descriptions/api.github.com/dereferenced/api.github.com.deref.json @@ -8108,12 +8108,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -28989,12 +28983,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -32487,12 +32475,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -35168,9 +35150,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "forks_count": { "type": "integer" }, @@ -49450,12 +49429,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -51670,12 +51643,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -58975,12 +58942,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -62473,12 +62434,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -65154,9 +65109,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "forks_count": { "type": "integer" }, @@ -68033,9 +67985,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -69250,9 +69199,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -80764,12 +80710,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -82450,12 +82390,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -85266,9 +85200,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -87690,12 +87621,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -88637,12 +88562,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -91090,9 +91009,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -92706,9 +92622,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -93583,6 +93496,58 @@ } } } + }, + "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": { @@ -93853,6 +93818,58 @@ } } } + }, + "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": { @@ -94056,6 +94073,58 @@ } } } + }, + "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": { @@ -105241,9 +105310,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -108119,9 +108185,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -111743,9 +111806,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -117293,9 +117353,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -118533,9 +118590,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -121226,12 +121280,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -124724,12 +124772,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -127405,9 +127447,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "forks_count": { "type": "integer" }, @@ -140559,12 +140598,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -143773,9 +143806,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -145859,9 +145889,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -149336,12 +149363,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -151136,12 +151157,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -152965,12 +152980,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -154668,9 +154677,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -158500,9 +158506,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -159645,9 +159648,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -162765,9 +162765,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -164835,9 +164832,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -165427,6 +165421,17 @@ ], "type": "string" }, + "auth_type": { + "description": "The authentication type for the private registry.", + "enum": [ + "token", + "username_password", + "oidc_azure", + "oidc_aws", + "oidc_jfrog" + ], + "type": "string" + }, "url": { "description": "The URL of the private registry.", "type": "string", @@ -165452,6 +165457,46 @@ ], "type": "string" }, + "tenant_id": { + "description": "The tenant ID of the Azure AD application.", + "type": "string" + }, + "client_id": { + "description": "The client ID of the Azure AD application.", + "type": "string" + }, + "aws_region": { + "description": "The AWS region.", + "type": "string" + }, + "account_id": { + "description": "The AWS account ID.", + "type": "string" + }, + "role_name": { + "description": "The AWS IAM role name.", + "type": "string" + }, + "domain": { + "description": "The CodeArtifact domain.", + "type": "string" + }, + "domain_owner": { + "description": "The CodeArtifact domain owner.", + "type": "string" + }, + "jfrog_oidc_provider_name": { + "description": "The JFrog OIDC provider name.", + "type": "string" + }, + "audience": { + "description": "The OIDC audience.", + "type": "string" + }, + "identity_mapping_name": { + "description": "The JFrog identity mapping name.", + "type": "string" + }, "created_at": { "type": "string", "format": "date-time" @@ -165596,7 +165641,7 @@ }, "post": { "summary": "Create a private registry for an organization", - "description": "\nCreates a private registry configuration with an encrypted value for an organization. Encrypt your secret using [LibSodium](https://libsodium.gitbook.io/doc/bindings_for_other_languages). For more information, see \"[Encrypting secrets for the REST API](https://docs.github.com/rest/guides/encrypting-secrets-for-the-rest-api).\"\n\nOAuth app tokens and personal access tokens (classic) need the `admin:org` scope to use this endpoint.", + "description": "\nCreates a private registry configuration with an encrypted value for an organization. Encrypt your secret using [LibSodium](https://libsodium.gitbook.io/doc/bindings_for_other_languages). For more information, see \"[Encrypting secrets for the REST API](https://docs.github.com/rest/guides/encrypting-secrets-for-the-rest-api).\"\nFor OIDC-based registries (`oidc_azure`, `oidc_aws`, or `oidc_jfrog`), the `encrypted_value` and `key_id` fields should be omitted.\n\nOAuth app tokens and personal access tokens (classic) need the `admin:org` scope to use this endpoint.", "tags": [ "private-registries" ], @@ -165660,12 +165705,12 @@ "default": false }, "encrypted_value": { - "description": "The value for your secret, encrypted with [LibSodium](https://libsodium.gitbook.io/doc/bindings_for_other_languages) using the public key retrieved from the [Get private registries public key for an organization](https://docs.github.com/rest/private-registries/organization-configurations#get-private-registries-public-key-for-an-organization) endpoint.", + "description": "The value for your secret, encrypted with [LibSodium](https://libsodium.gitbook.io/doc/bindings_for_other_languages) using the public key retrieved from the [Get private registries public key for an organization](https://docs.github.com/rest/private-registries/organization-configurations#get-private-registries-public-key-for-an-organization) endpoint. Required when `auth_type` is `token` or `username_password`. Should be omitted for OIDC auth types.", "type": "string", "pattern": "^(?:[A-Za-z0-9+/]{4})*(?:[A-Za-z0-9+/]{2}==|[A-Za-z0-9+/]{3}=|[A-Za-z0-9+/]{4})$" }, "key_id": { - "description": "The ID of the key you used to encrypt the secret.", + "description": "The ID of the key you used to encrypt the secret. Required when `auth_type` is `token` or `username_password`. Should be omitted for OIDC auth types.", "type": "string" }, "visibility": { @@ -165683,13 +165728,62 @@ "items": { "type": "integer" } + }, + "auth_type": { + "description": "The authentication type for the private registry. Defaults to `token` if not specified. Use `oidc_azure`, `oidc_aws`, or `oidc_jfrog` for OIDC authentication.", + "type": "string", + "enum": [ + "token", + "username_password", + "oidc_azure", + "oidc_aws", + "oidc_jfrog" + ] + }, + "tenant_id": { + "description": "The tenant ID of the Azure AD application. Required when `auth_type` is `oidc_azure`.", + "type": "string" + }, + "client_id": { + "description": "The client ID of the Azure AD application. Required when `auth_type` is `oidc_azure`.", + "type": "string" + }, + "aws_region": { + "description": "The AWS region. Required when `auth_type` is `oidc_aws`.", + "type": "string" + }, + "account_id": { + "description": "The AWS account ID. Required when `auth_type` is `oidc_aws`.", + "type": "string" + }, + "role_name": { + "description": "The AWS IAM role name. Required when `auth_type` is `oidc_aws`.", + "type": "string" + }, + "domain": { + "description": "The CodeArtifact domain. Required when `auth_type` is `oidc_aws`.", + "type": "string" + }, + "domain_owner": { + "description": "The CodeArtifact domain owner (AWS account ID). Required when `auth_type` is `oidc_aws`.", + "type": "string" + }, + "jfrog_oidc_provider_name": { + "description": "The JFrog OIDC provider name. Required when `auth_type` is `oidc_jfrog`.", + "type": "string" + }, + "audience": { + "description": "The OIDC audience. Optional for `oidc_aws` and `oidc_jfrog` auth types.", + "type": "string" + }, + "identity_mapping_name": { + "description": "The JFrog identity mapping name. Optional for `oidc_jfrog` auth type.", + "type": "string" } }, "required": [ "registry_type", "url", - "encrypted_value", - "key_id", "visibility" ] }, @@ -165720,6 +165814,17 @@ 1296280 ] } + }, + "org-private-registry-with-oidc-azure": { + "summary": "Example of an OIDC private registry configuration using Azure", + "value": { + "registry_type": "docker_registry", + "url": "https://myregistry.azurecr.io", + "auth_type": "oidc_azure", + "visibility": "all", + "tenant_id": "12345678-1234-1234-1234-123456789012", + "client_id": "abcdef01-2345-6789-abcd-ef0123456789" + } } } } @@ -165761,6 +165866,17 @@ ], "type": "string" }, + "auth_type": { + "description": "The authentication type for the private registry.", + "enum": [ + "token", + "username_password", + "oidc_azure", + "oidc_aws", + "oidc_jfrog" + ], + "type": "string" + }, "url": { "description": "The URL of the private registry.", "type": "string", @@ -165792,6 +165908,46 @@ "type": "integer" } }, + "tenant_id": { + "description": "The tenant ID of the Azure AD application.", + "type": "string" + }, + "client_id": { + "description": "The client ID of the Azure AD application.", + "type": "string" + }, + "aws_region": { + "description": "The AWS region.", + "type": "string" + }, + "account_id": { + "description": "The AWS account ID.", + "type": "string" + }, + "role_name": { + "description": "The AWS IAM role name.", + "type": "string" + }, + "domain": { + "description": "The CodeArtifact domain.", + "type": "string" + }, + "domain_owner": { + "description": "The CodeArtifact domain owner.", + "type": "string" + }, + "jfrog_oidc_provider_name": { + "description": "The JFrog OIDC provider name.", + "type": "string" + }, + "audience": { + "description": "The OIDC audience.", + "type": "string" + }, + "identity_mapping_name": { + "description": "The JFrog identity mapping name.", + "type": "string" + }, "created_at": { "type": "string", "format": "date-time" @@ -166111,6 +166267,17 @@ ], "type": "string" }, + "auth_type": { + "description": "The authentication type for the private registry.", + "enum": [ + "token", + "username_password", + "oidc_azure", + "oidc_aws", + "oidc_jfrog" + ], + "type": "string" + }, "url": { "description": "The URL of the private registry.", "type": "string", @@ -166136,6 +166303,46 @@ ], "type": "string" }, + "tenant_id": { + "description": "The tenant ID of the Azure AD application.", + "type": "string" + }, + "client_id": { + "description": "The client ID of the Azure AD application.", + "type": "string" + }, + "aws_region": { + "description": "The AWS region.", + "type": "string" + }, + "account_id": { + "description": "The AWS account ID.", + "type": "string" + }, + "role_name": { + "description": "The AWS IAM role name.", + "type": "string" + }, + "domain": { + "description": "The CodeArtifact domain.", + "type": "string" + }, + "domain_owner": { + "description": "The CodeArtifact domain owner.", + "type": "string" + }, + "jfrog_oidc_provider_name": { + "description": "The JFrog OIDC provider name.", + "type": "string" + }, + "audience": { + "description": "The OIDC audience.", + "type": "string" + }, + "identity_mapping_name": { + "description": "The JFrog identity mapping name.", + "type": "string" + }, "created_at": { "type": "string", "format": "date-time" @@ -166204,7 +166411,7 @@ }, "patch": { "summary": "Update a private registry for an organization", - "description": "\nUpdates a private registry configuration with an encrypted value for an organization. Encrypt your secret using [LibSodium](https://libsodium.gitbook.io/doc/bindings_for_other_languages). For more information, see \"[Encrypting secrets for the REST API](https://docs.github.com/rest/guides/encrypting-secrets-for-the-rest-api).\"\n\nOAuth app tokens and personal access tokens (classic) need the `admin:org` scope to use this endpoint.", + "description": "\nUpdates a private registry configuration with an encrypted value for an organization. Encrypt your secret using [LibSodium](https://libsodium.gitbook.io/doc/bindings_for_other_languages). For more information, see \"[Encrypting secrets for the REST API](https://docs.github.com/rest/guides/encrypting-secrets-for-the-rest-api).\"\nFor OIDC-based registries (`oidc_azure`, `oidc_aws`, or `oidc_jfrog`), the `encrypted_value` and `key_id` fields should be omitted.\n\nOAuth app tokens and personal access tokens (classic) need the `admin:org` scope to use this endpoint.", "tags": [ "private-registries" ], @@ -166300,16 +166507,79 @@ "items": { "type": "integer" } + }, + "auth_type": { + "description": "The authentication type for the private registry. This field cannot be changed after creation. If provided, it must match the existing `auth_type` of the configuration. To change the authentication type, delete and recreate the configuration.", + "type": "string", + "enum": [ + "token", + "username_password", + "oidc_azure", + "oidc_aws", + "oidc_jfrog" + ] + }, + "tenant_id": { + "description": "The tenant ID of the Azure AD application. Required when `auth_type` is `oidc_azure`.", + "type": "string" + }, + "client_id": { + "description": "The client ID of the Azure AD application. Required when `auth_type` is `oidc_azure`.", + "type": "string" + }, + "aws_region": { + "description": "The AWS region. Required when `auth_type` is `oidc_aws`.", + "type": "string" + }, + "account_id": { + "description": "The AWS account ID. Required when `auth_type` is `oidc_aws`.", + "type": "string" + }, + "role_name": { + "description": "The AWS IAM role name. Required when `auth_type` is `oidc_aws`.", + "type": "string" + }, + "domain": { + "description": "The CodeArtifact domain. Required when `auth_type` is `oidc_aws`.", + "type": "string" + }, + "domain_owner": { + "description": "The CodeArtifact domain owner (AWS account ID). Required when `auth_type` is `oidc_aws`.", + "type": "string" + }, + "jfrog_oidc_provider_name": { + "description": "The JFrog OIDC provider name. Required when `auth_type` is `oidc_jfrog`.", + "type": "string" + }, + "audience": { + "description": "The OIDC audience. Optional for `oidc_aws` and `oidc_jfrog` auth types.", + "type": "string" + }, + "identity_mapping_name": { + "description": "The JFrog identity mapping name. Optional for `oidc_jfrog` auth type.", + "type": "string" } } }, "examples": { - "default": { + "secret-based-update": { + "summary": "Update a secret-based private registry", "value": { "username": "monalisa", "encrypted_value": "c2VjcmV0", "key_id": "012345678912345678" } + }, + "oidc-azure-update": { + "summary": "Update an OIDC private registry (Azure)", + "value": { + "tenant_id": "12345678-1234-1234-1234-123456789012", + "visibility": "selected", + "selected_repository_ids": [ + 1296269, + 1296280 + ] + } } } } @@ -169885,12 +170155,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -173142,12 +173406,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -174141,12 +174399,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -179849,12 +180101,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -183106,12 +183352,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -184105,12 +184345,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -195503,9 +195737,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -196632,10 +196863,6 @@ ], "example": "all" }, - "has_commit_comments": { - "type": "boolean", - "example": true - }, "archived": { "type": "boolean" }, @@ -197210,12 +197437,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -198313,12 +198534,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -199166,12 +199381,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -215499,9 +215708,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -221971,9 +222177,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -224972,10 +225175,6 @@ ], "example": "all" }, - "has_commit_comments": { - "type": "boolean", - "example": true - }, "archived": { "type": "boolean" }, @@ -225550,12 +225749,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -226653,12 +226846,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -227506,12 +227693,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -229509,10 +229690,6 @@ ], "example": "all" }, - "has_commit_comments": { - "type": "boolean", - "example": true - }, "archived": { "type": "boolean" }, @@ -230087,12 +230264,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -231190,12 +231361,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -232043,12 +232208,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -239113,12 +239272,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -240069,12 +240222,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -242769,9 +242916,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -243529,9 +243673,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -245225,9 +245366,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -245985,9 +246123,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -248429,9 +248564,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -249189,9 +249321,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -255708,9 +255837,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -256468,9 +256594,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -287683,9 +287806,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -289354,9 +289474,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -290667,9 +290784,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -292208,9 +292322,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -305684,9 +305795,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -307511,9 +307619,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -308976,9 +309081,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -312405,9 +312507,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -319575,12 +319674,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -320574,12 +320667,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -325092,9 +325179,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -326326,9 +326410,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -348713,12 +348794,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -352211,12 +352286,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -354892,9 +354961,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "forks_count": { "type": "integer" }, @@ -357676,9 +357742,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -358735,10 +358798,6 @@ ], "example": "all" }, - "has_commit_comments": { - "type": "boolean", - "example": true - }, "archived": { "type": "boolean" }, @@ -359313,12 +359372,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -360416,12 +360469,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -361269,12 +361316,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -372887,9 +372928,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -374175,9 +374213,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -376673,12 +376708,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -380245,12 +380274,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -388865,12 +388888,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -393622,12 +393639,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -398254,12 +398265,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -402053,12 +402058,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -405641,12 +405640,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -409013,12 +409006,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -414331,12 +414318,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -417790,12 +417771,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -421327,12 +421302,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -424884,12 +424853,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -439138,12 +439101,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -443570,12 +443527,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -447031,12 +446982,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -450468,12 +450413,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -454004,12 +453943,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -465765,12 +465698,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -475404,9 +475331,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -481375,12 +481299,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -482374,12 +482292,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -485501,12 +485413,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -486499,12 +486405,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -492536,12 +492436,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -493534,12 +493428,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -496893,12 +496781,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -497891,12 +497773,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -500419,9 +500295,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -501884,9 +501757,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -508234,12 +508104,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -509233,12 +509097,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -512438,12 +512296,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -513437,12 +513289,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -521341,6 +521187,32 @@ "responses": { "204": { "description": "Response" + }, + "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": { @@ -522109,6 +521981,32 @@ } } } + }, + "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": { @@ -524176,6 +524074,32 @@ "responses": { "204": { "description": "Response" + }, + "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": { @@ -552837,10 +552761,6 @@ ], "example": "all" }, - "has_commit_comments": { - "type": "boolean", - "example": true - }, "archived": { "type": "boolean" }, @@ -553415,12 +553335,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -554518,12 +554432,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -555371,12 +555279,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -560882,9 +560784,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -562194,10 +562093,6 @@ ], "example": "all" }, - "has_commit_comments": { - "type": "boolean", - "example": true - }, "archived": { "type": "boolean" }, @@ -562772,12 +562667,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -563875,12 +563764,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -564728,12 +564611,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -566332,9 +566209,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -568469,9 +568343,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -569907,9 +569778,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -572033,12 +571901,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -574626,9 +574488,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -579435,9 +579294,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -584207,9 +584063,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -586227,9 +586080,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -587692,9 +587542,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -589548,9 +589395,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -591444,9 +591288,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -593081,9 +592922,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -595520,10 +595358,6 @@ ], "example": "all" }, - "has_commit_comments": { - "type": "boolean", - "example": true - }, "archived": { "type": "boolean" }, @@ -596098,12 +595932,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -597201,12 +597029,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -598054,12 +597876,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -600412,9 +600228,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -602129,9 +601942,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -603620,9 +603430,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -609008,12 +608815,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -611669,12 +611470,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -617217,12 +617012,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -619071,12 +618860,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -620915,12 +620698,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -622777,9 +622554,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -624614,9 +624388,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -625698,9 +625469,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -628083,12 +627851,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -629306,10 +629068,6 @@ ], "example": "all" }, - "has_commit_comments": { - "type": "boolean", - "example": true - }, "archived": { "type": "boolean" }, @@ -629884,12 +629642,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -630987,12 +630739,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -631840,12 +631586,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -633753,9 +633493,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -636866,12 +636603,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -637863,12 +637594,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -639231,9 +638956,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -642664,12 +642386,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -645921,12 +645637,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -646920,12 +646630,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -651419,9 +651123,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -654112,12 +653813,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -657610,12 +657305,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -660291,9 +659980,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "forks_count": { "type": "integer" }, @@ -664789,12 +664475,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -668287,12 +667967,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -670968,9 +670642,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "forks_count": { "type": "integer" }, @@ -675476,12 +675147,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -678974,12 +678639,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -681655,9 +681314,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "forks_count": { "type": "integer" }, @@ -687448,9 +687104,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -688593,9 +688246,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -696259,12 +695909,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -699516,12 +699160,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -700515,12 +700153,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -710876,12 +710508,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -714374,12 +714000,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -717055,9 +716675,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "forks_count": { "type": "integer" }, @@ -721549,12 +721166,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -725047,12 +724658,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -727728,9 +727333,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "forks_count": { "type": "integer" }, @@ -730536,9 +730138,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -732898,12 +732497,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -733760,12 +733353,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -734701,9 +734288,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -736204,12 +735788,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -737859,12 +737437,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -739514,12 +739086,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -741349,12 +740915,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -743342,12 +742902,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -745547,9 +745101,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -747346,12 +746897,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -749716,9 +749261,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -751515,12 +751057,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -753885,9 +753421,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -755684,12 +755217,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -758067,9 +757594,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -759866,12 +759390,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -762614,12 +762132,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -765051,12 +764563,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -767482,12 +766988,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -769564,12 +769064,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -771766,12 +771260,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -773786,12 +773274,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -775898,12 +775380,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -777922,12 +777398,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -779904,12 +779374,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -781980,12 +781444,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -783863,12 +783321,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -785537,12 +784989,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -788964,12 +788410,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -790771,12 +790211,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -793303,12 +792737,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -795834,12 +795262,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -798365,12 +797787,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -800896,12 +800312,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -803427,12 +802837,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -805958,12 +805362,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -808489,12 +807887,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -811020,12 +810412,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -812724,12 +812110,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -814428,12 +813808,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -816718,12 +816092,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -820566,12 +819934,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -821564,12 +820926,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -823299,12 +822655,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -825105,12 +824455,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -827869,12 +827213,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -830571,12 +829909,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -834681,12 +834013,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -837916,12 +837242,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -840095,12 +839415,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -842211,12 +841525,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -844537,12 +843845,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -846864,12 +846166,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -849210,12 +848506,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -851327,12 +850617,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -853442,12 +852726,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -855584,12 +854862,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -857740,12 +857012,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -859856,12 +859122,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -861971,12 +861231,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -864086,12 +863340,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -866042,12 +865290,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -867931,12 +867173,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -870169,12 +869405,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -872325,12 +871555,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -874441,12 +873665,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -876556,12 +875774,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -879111,12 +878323,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -881034,12 +880240,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -883585,12 +882785,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -886230,12 +885424,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -888782,12 +887970,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -891361,12 +890543,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -894052,12 +893228,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -896709,12 +895879,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -898514,12 +897678,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -901068,12 +900226,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -905015,12 +904167,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -908963,12 +908109,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -912929,12 +912069,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -916885,12 +916019,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -920840,12 +919968,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -923189,12 +922311,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -926318,12 +925434,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -928465,12 +927575,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -929540,12 +928644,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -931888,12 +930986,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -935017,12 +934109,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -937164,12 +936250,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -938239,12 +937319,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -940587,12 +939661,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -942734,12 +941802,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -944569,12 +943631,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -946938,12 +945994,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -949286,12 +948336,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -951433,12 +950477,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -953268,12 +952306,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -955637,12 +954669,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -959467,12 +958493,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -963407,12 +962427,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -967134,12 +966148,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -971043,12 +970051,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -974845,12 +973847,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -978617,12 +977613,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -982350,12 +981340,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -986257,12 +985241,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -989336,11 +988314,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean" - }, "has_downloads": { "description": "Whether downloads are enabled.", "type": "boolean", @@ -992673,12 +991646,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -996399,12 +995366,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1000128,12 +999089,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1003248,11 +1002203,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean" - }, "homepage": { "type": "string", "nullable": true @@ -1006558,12 +1005508,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1010352,12 +1009296,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1014183,12 +1013121,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1017957,12 +1016889,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1021688,12 +1020614,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1025414,12 +1024334,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1029207,12 +1028121,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1030905,12 +1029813,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1032601,12 +1031503,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1034340,12 +1033236,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1036222,12 +1035112,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1038104,12 +1036988,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1039985,12 +1038863,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1041863,12 +1040735,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1043743,12 +1042609,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1045527,12 +1044387,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1047311,12 +1046165,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1049065,12 +1047913,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1050818,12 +1049660,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1052732,12 +1051568,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1054594,12 +1053424,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1056298,12 +1055122,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1058077,12 +1056895,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1059918,12 +1058730,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1061756,12 +1060562,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1063595,12 +1062395,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1065476,12 +1064270,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1067315,12 +1066103,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1069067,12 +1067849,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1070819,12 +1069595,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1072616,12 +1071386,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1074412,12 +1073176,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1076222,12 +1074980,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1078115,12 +1076867,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1079925,12 +1078671,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1082429,12 +1081169,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1084710,12 +1083444,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1086504,12 +1085232,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1090960,12 +1089682,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1092964,12 +1091680,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1094780,12 +1093490,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1096597,12 +1095301,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1098433,12 +1097131,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1100376,12 +1099068,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1102197,12 +1100883,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1103903,12 +1102583,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1105608,12 +1104282,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1107330,12 +1105998,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1109036,12 +1107698,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1110857,12 +1109513,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1112678,12 +1111328,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1114529,12 +1113173,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1116349,12 +1114987,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1128426,12 +1127058,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1130212,11 +1128838,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean" - }, "homepage": { "type": "string", "nullable": true @@ -1131031,11 +1129652,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean" - }, "homepage": { "type": "string", "nullable": true @@ -1133171,12 +1131787,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1134876,11 +1133486,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "has_pages": { "type": "boolean" }, @@ -1135706,11 +1134311,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -1137848,12 +1136448,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1139566,11 +1138160,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -1140383,11 +1138972,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -1142525,12 +1141109,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1145099,12 +1143677,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1146097,12 +1144669,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1147891,12 +1146457,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1150435,12 +1148995,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1151433,12 +1149987,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1153227,12 +1151775,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1155124,11 +1153666,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean" - }, "homepage": { "type": "string", "nullable": true @@ -1155941,11 +1154478,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean" - }, "homepage": { "type": "string", "nullable": true @@ -1158117,12 +1156649,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1159803,11 +1158329,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -1160620,11 +1159141,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -1162767,12 +1161283,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1165389,12 +1163899,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1166387,12 +1164891,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1168181,12 +1166679,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1169868,11 +1168360,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -1170685,11 +1169172,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -1172815,12 +1171297,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1174562,11 +1173038,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -1175381,11 +1173852,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -1177522,12 +1175988,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1179241,11 +1177701,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -1180060,11 +1178515,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -1182200,12 +1180650,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1184127,11 +1182571,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean" - }, "homepage": { "type": "string", "nullable": true @@ -1184944,11 +1183383,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean" - }, "homepage": { "type": "string", "nullable": true @@ -1187120,12 +1185554,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1189663,12 +1188091,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1190661,12 +1189083,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1192455,12 +1190871,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1194999,12 +1193409,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1195997,12 +1194401,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1197791,12 +1196189,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1200335,12 +1198727,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1201333,12 +1199719,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1203127,12 +1201507,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1205168,11 +1203542,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -1205971,11 +1204340,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -1207986,12 +1206350,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1210054,11 +1208412,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -1210857,11 +1209210,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -1212862,12 +1211210,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1214951,11 +1213293,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -1215754,11 +1214091,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -1217760,12 +1216092,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1219474,11 +1217800,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -1220277,11 +1218598,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -1222294,12 +1220610,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1226918,12 +1225228,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1228830,11 +1227134,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -1229647,11 +1227946,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -1231793,12 +1230087,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1233489,11 +1231777,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -1234306,11 +1232589,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -1236452,12 +1234730,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1238334,11 +1236606,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -1239151,11 +1237418,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -1241290,12 +1239552,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1242989,11 +1241245,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -1243806,11 +1242057,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -1245936,12 +1244182,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1247797,11 +1246037,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -1248601,11 +1246836,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -1250619,12 +1248849,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1252532,11 +1250756,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -1253297,11 +1251516,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -1255275,12 +1253489,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1257350,11 +1255558,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -1258113,11 +1256316,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -1260080,12 +1258278,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1262169,11 +1260361,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -1262986,11 +1261173,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -1265126,12 +1263308,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1266945,11 +1265121,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -1267764,11 +1265935,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -1269905,12 +1268071,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1271665,11 +1269825,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -1272484,11 +1270639,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -1274624,12 +1272774,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1276341,11 +1274485,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -1277159,11 +1275298,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -1279287,12 +1277421,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1280813,11 +1278941,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": "string", "nullable": true @@ -1283084,12 +1281207,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1285278,12 +1283395,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1287352,12 +1285463,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1289427,12 +1287532,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1291555,12 +1289654,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1293634,12 +1291727,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1295709,12 +1293796,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1297783,12 +1295864,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1299858,12 +1297933,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1301513,12 +1299582,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1304774,12 +1302837,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1308035,12 +1306092,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1309691,12 +1307742,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1311347,12 +1309392,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1313009,12 +1311048,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1314717,12 +1312750,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1316367,12 +1314394,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1318029,12 +1316050,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1319685,12 +1317700,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1321368,12 +1319377,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1323025,12 +1321028,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1325995,12 +1323992,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1328965,12 +1326956,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1335027,12 +1333012,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1336684,12 +1334663,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1338507,12 +1336480,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1340338,12 +1338305,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1342160,12 +1340121,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1343982,12 +1341937,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1346379,12 +1344328,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1348652,12 +1346595,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1351165,12 +1349102,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1353614,12 +1351545,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1355887,12 +1353812,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1358160,12 +1356079,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1360557,12 +1358470,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1362830,12 +1360737,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1364376,12 +1362277,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1366195,12 +1364090,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1368079,12 +1365968,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1369963,12 +1367846,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1371776,10 +1369653,6 @@ ], "example": "all" }, - "has_commit_comments": { - "type": "boolean", - "example": true - }, "archived": { "type": "boolean" }, @@ -1372354,12 +1370227,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1373457,12 +1371324,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1374310,12 +1372171,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1375983,12 +1373838,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1377953,12 +1375802,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1379940,12 +1377783,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1381915,12 +1379752,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1383948,12 +1381779,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1385978,12 +1383803,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1387949,12 +1385768,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1389610,12 +1387423,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1391741,12 +1389548,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1394120,12 +1391921,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1396267,12 +1394062,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1398102,12 +1395891,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1400471,12 +1398254,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1402821,12 +1400598,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1404968,12 +1402739,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1406803,12 +1404568,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1409172,12 +1406931,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1411522,12 +1409275,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1413669,12 +1411416,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1415504,12 +1413245,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1417873,12 +1415608,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1420223,12 +1417952,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1422370,12 +1420093,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1424205,12 +1421922,6 @@ ], "example": "all" }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1426574,12 +1424285,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1428225,12 +1425930,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1436019,12 +1433718,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1437675,12 +1435368,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1439333,12 +1437020,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1441826,12 +1439507,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1444351,12 +1442026,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1446721,12 +1444390,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1449092,12 +1446755,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1452011,12 +1449668,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1454912,12 +1452563,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "example": true - }, "archived": { "description": "Whether the repository is archived.", "default": false, diff --git a/descriptions/api.github.com/dereferenced/api.github.com.deref.yaml b/descriptions/api.github.com/dereferenced/api.github.com.deref.yaml index a336a0899..29ccbafd4 100644 --- a/descriptions/api.github.com/dereferenced/api.github.com.deref.yaml +++ b/descriptions/api.github.com/dereferenced/api.github.com.deref.yaml @@ -3258,11 +3258,6 @@ paths: - all - collaborators_only example: all - has_commit_comments: - description: Whether commit comments are enabled. - default: true - type: boolean - example: true archived: description: Whether the repository is archived. default: false @@ -12124,8 +12119,6 @@ paths: enum: - all - collaborators_only - has_commit_comments: - type: boolean forks_count: type: integer mirror_url: @@ -16989,8 +16982,6 @@ paths: enum: - all - collaborators_only - has_commit_comments: - type: boolean archived: type: boolean disabled: @@ -25248,6 +25239,8 @@ paths: created: '2011-01-26T19:14:43Z' updated_at: '2011-01-26T19:14:43Z' attestation_id: 456 + '403': *29 + '404': *6 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -25407,6 +25400,8 @@ paths: items: *169 examples: default: *170 + '403': *29 + '404': *6 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -25561,6 +25556,8 @@ paths: status: active created_at: '2023-10-01T12:00:00Z' updated_at: '2023-10-01T12:00:00Z' + '403': *29 + '404': *6 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -38649,6 +38646,15 @@ paths: - python_index - terraform_registry type: string + auth_type: + description: The authentication type for the private registry. + enum: + - token + - username_password + - oidc_azure + - oidc_aws + - oidc_jfrog + type: string url: description: The URL of the private registry. type: string @@ -38677,6 +38683,36 @@ paths: - private - selected type: string + tenant_id: + description: The tenant ID of the Azure AD application. + type: string + client_id: + description: The client ID of the Azure AD application. + type: string + aws_region: + description: The AWS region. + type: string + account_id: + description: The AWS account ID. + type: string + role_name: + description: The AWS IAM role name. + type: string + domain: + description: The CodeArtifact domain. + type: string + domain_owner: + description: The CodeArtifact domain owner. + type: string + jfrog_oidc_provider_name: + description: The JFrog OIDC provider name. + type: string + audience: + description: The OIDC audience. + type: string + identity_mapping_name: + description: The JFrog identity mapping name. + type: string created_at: type: string format: date-time @@ -38714,6 +38750,7 @@ paths: description: |2- Creates a private registry configuration with an encrypted value for an organization. Encrypt your secret using [LibSodium](https://libsodium.gitbook.io/doc/bindings_for_other_languages). For more information, see "[Encrypting secrets for the REST API](https://docs.github.com/rest/guides/encrypting-secrets-for-the-rest-api)." + For OIDC-based registries (`oidc_azure`, `oidc_aws`, or `oidc_jfrog`), the `encrypted_value` and `key_id` fields should be omitted. OAuth app tokens and personal access tokens (classic) need the `admin:org` scope to use this endpoint. tags: @@ -38773,11 +38810,14 @@ paths: description: The value for your secret, encrypted with [LibSodium](https://libsodium.gitbook.io/doc/bindings_for_other_languages) using the public key retrieved from the [Get private registries public key for an organization](https://docs.github.com/rest/private-registries/organization-configurations#get-private-registries-public-key-for-an-organization) - endpoint. + endpoint. Required when `auth_type` is `token` or `username_password`. + Should be omitted for OIDC auth types. type: string pattern: "^(?:[A-Za-z0-9+/]{4})*(?:[A-Za-z0-9+/]{2}==|[A-Za-z0-9+/]{3}=|[A-Za-z0-9+/]{4})$" key_id: - description: The ID of the key you used to encrypt the secret. + description: The ID of the key you used to encrypt the secret. Required + when `auth_type` is `token` or `username_password`. Should be + omitted for OIDC auth types. type: string visibility: description: Which type of organization repositories have access @@ -38800,11 +38840,58 @@ paths: type: array items: type: integer + auth_type: + description: The authentication type for the private registry. Defaults + to `token` if not specified. Use `oidc_azure`, `oidc_aws`, or + `oidc_jfrog` for OIDC authentication. + type: string + enum: + - token + - username_password + - oidc_azure + - oidc_aws + - oidc_jfrog + tenant_id: + description: The tenant ID of the Azure AD application. Required + when `auth_type` is `oidc_azure`. + type: string + client_id: + description: The client ID of the Azure AD application. Required + when `auth_type` is `oidc_azure`. + type: string + aws_region: + description: The AWS region. Required when `auth_type` is `oidc_aws`. + type: string + account_id: + description: The AWS account ID. Required when `auth_type` is `oidc_aws`. + type: string + role_name: + description: The AWS IAM role name. Required when `auth_type` is + `oidc_aws`. + type: string + domain: + description: The CodeArtifact domain. Required when `auth_type` + is `oidc_aws`. + type: string + domain_owner: + description: The CodeArtifact domain owner (AWS account ID). Required + when `auth_type` is `oidc_aws`. + type: string + jfrog_oidc_provider_name: + description: The JFrog OIDC provider name. Required when `auth_type` + is `oidc_jfrog`. + type: string + audience: + description: The OIDC audience. Optional for `oidc_aws` and `oidc_jfrog` + auth types. + type: string + identity_mapping_name: + description: The JFrog identity mapping name. Optional for `oidc_jfrog` + auth type. + type: string required: - registry_type - url - - encrypted_value - - key_id - visibility examples: org-private-registry-with-private-visibility: @@ -38831,6 +38918,15 @@ paths: selected_repository_ids: - 1296269 - 1296280 + org-private-registry-with-oidc-azure: + summary: Example of an OIDC private registry configuration using Azure + value: + registry_type: docker_registry + url: https://myregistry.azurecr.io + auth_type: oidc_azure + visibility: all + tenant_id: 12345678-1234-1234-1234-123456789012 + client_id: abcdef01-2345-6789-abcd-ef0123456789 responses: '201': description: The organization private registry configuration @@ -38864,6 +38960,15 @@ paths: - python_index - terraform_registry type: string + auth_type: + description: The authentication type for the private registry. + enum: + - token + - username_password + - oidc_azure + - oidc_aws + - oidc_jfrog + type: string url: description: The URL of the private registry. type: string @@ -38898,6 +39003,36 @@ paths: private registry when `visibility` is set to `selected`. items: type: integer + tenant_id: + description: The tenant ID of the Azure AD application. + type: string + client_id: + description: The client ID of the Azure AD application. + type: string + aws_region: + description: The AWS region. + type: string + account_id: + description: The AWS account ID. + type: string + role_name: + description: The AWS IAM role name. + type: string + domain: + description: The CodeArtifact domain. + type: string + domain_owner: + description: The CodeArtifact domain owner. + type: string + jfrog_oidc_provider_name: + description: The JFrog OIDC provider name. + type: string + audience: + description: The OIDC audience. + type: string + identity_mapping_name: + description: The JFrog identity mapping name. + type: string created_at: type: string format: date-time @@ -39021,6 +39156,7 @@ paths: description: |2- Updates a private registry configuration with an encrypted value for an organization. Encrypt your secret using [LibSodium](https://libsodium.gitbook.io/doc/bindings_for_other_languages). For more information, see "[Encrypting secrets for the REST API](https://docs.github.com/rest/guides/encrypting-secrets-for-the-rest-api)." + For OIDC-based registries (`oidc_azure`, `oidc_aws`, or `oidc_jfrog`), the `encrypted_value` and `key_id` fields should be omitted. OAuth app tokens and personal access tokens (classic) need the `admin:org` scope to use this endpoint. tags: @@ -39105,12 +39241,71 @@ paths: type: array items: type: integer + auth_type: + description: The authentication type for the private registry. This + field cannot be changed after creation. If provided, it must match + the existing `auth_type` of the configuration. To change the authentication + type, delete and recreate the configuration. + type: string + enum: + - token + - username_password + - oidc_azure + - oidc_aws + - oidc_jfrog + tenant_id: + description: The tenant ID of the Azure AD application. Required + when `auth_type` is `oidc_azure`. + type: string + client_id: + description: The client ID of the Azure AD application. Required + when `auth_type` is `oidc_azure`. + type: string + aws_region: + description: The AWS region. Required when `auth_type` is `oidc_aws`. + type: string + account_id: + description: The AWS account ID. Required when `auth_type` is `oidc_aws`. + type: string + role_name: + description: The AWS IAM role name. Required when `auth_type` is + `oidc_aws`. + type: string + domain: + description: The CodeArtifact domain. Required when `auth_type` + is `oidc_aws`. + type: string + domain_owner: + description: The CodeArtifact domain owner (AWS account ID). Required + when `auth_type` is `oidc_aws`. + type: string + jfrog_oidc_provider_name: + description: The JFrog OIDC provider name. Required when `auth_type` + is `oidc_jfrog`. + type: string + audience: + description: The OIDC audience. Optional for `oidc_aws` and `oidc_jfrog` + auth types. + type: string + identity_mapping_name: + description: The JFrog identity mapping name. Optional for `oidc_jfrog` + auth type. + type: string examples: - default: + secret-based-update: + summary: Update a secret-based private registry value: username: monalisa encrypted_value: c2VjcmV0 key_id: '012345678912345678' + oidc-azure-update: + summary: Update an OIDC private registry (Azure) + value: + tenant_id: 12345678-1234-1234-1234-123456789012 + visibility: selected + selected_repository_ids: + - 1296269 + - 1296280 responses: '204': description: Response @@ -43177,9 +43372,6 @@ paths: - all - collaborators_only example: all - has_commit_comments: - type: boolean - example: true archived: type: boolean disabled: @@ -91001,6 +91193,7 @@ paths: responses: '204': description: Response + '404': *6 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -91117,6 +91310,7 @@ paths: schema: *600 examples: default: *604 + '404': *6 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -91302,6 +91496,7 @@ paths: responses: '204': description: Response + '404': *6 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -97710,8 +97905,6 @@ paths: enum: - all - collaborators_only - has_commit_comments: - type: boolean archived: type: boolean disabled: @@ -109560,11 +109753,6 @@ x-webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - default: true - type: boolean - example: true archived: description: Whether the repository is archived. default: false @@ -143753,10 +143941,6 @@ x-webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - default: true - type: boolean has_downloads: description: Whether downloads are enabled. type: boolean @@ -148137,10 +148321,6 @@ x-webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - default: true - type: boolean homepage: type: string nullable: true @@ -159771,10 +159951,6 @@ x-webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - default: true - type: boolean homepage: type: string nullable: true @@ -160418,10 +160594,6 @@ x-webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - default: true - type: boolean homepage: type: string nullable: true @@ -162171,10 +162343,6 @@ x-webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true has_pages: type: boolean has_projects: @@ -162826,10 +162994,6 @@ x-webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -164590,10 +164754,6 @@ x-webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -165235,10 +165395,6 @@ x-webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -167234,10 +167390,6 @@ x-webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - default: true - type: boolean homepage: type: string nullable: true @@ -167877,10 +168029,6 @@ x-webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - default: true - type: boolean homepage: type: string nullable: true @@ -169651,10 +169799,6 @@ x-webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -170296,10 +170440,6 @@ x-webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -172184,10 +172324,6 @@ x-webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -172829,10 +172965,6 @@ x-webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -174575,10 +174707,6 @@ x-webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -175222,10 +175350,6 @@ x-webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -176985,10 +177109,6 @@ x-webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -177632,10 +177752,6 @@ x-webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -180016,10 +180132,6 @@ x-webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -180650,10 +180762,6 @@ x-webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -182596,10 +182704,6 @@ x-webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -183230,10 +183334,6 @@ x-webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -184885,10 +184985,6 @@ x-webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -185519,10 +185615,6 @@ x-webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -187175,10 +187267,6 @@ x-webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -187809,10 +187897,6 @@ x-webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -191946,10 +192030,6 @@ x-webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -192586,10 +192666,6 @@ x-webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -194348,10 +194424,6 @@ x-webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -194995,10 +195067,6 @@ x-webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -196890,10 +196958,6 @@ x-webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -197537,10 +197601,6 @@ x-webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -199295,10 +199355,6 @@ x-webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -199942,10 +199998,6 @@ x-webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -201802,10 +201854,6 @@ x-webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -202437,10 +202485,6 @@ x-webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -204103,10 +204147,6 @@ x-webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -204687,10 +204727,6 @@ x-webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -206599,10 +206635,6 @@ x-webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -207181,10 +207213,6 @@ x-webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -209091,10 +209119,6 @@ x-webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -209736,10 +209760,6 @@ x-webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -211494,10 +211514,6 @@ x-webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -212141,10 +212157,6 @@ x-webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -213904,10 +213916,6 @@ x-webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -214551,10 +214559,6 @@ x-webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: string nullable: true @@ -216303,10 +216307,6 @@ x-webhooks: enum: - all - col{"code":"deadline_exceeded","msg":"operation timed out"}