diff --git a/descriptions-next/api.github.com/api.github.com.2022-11-28.json b/descriptions-next/api.github.com/api.github.com.2022-11-28.json index 50bd2412b..98e2c7d35 100644 --- a/descriptions-next/api.github.com/api.github.com.2022-11-28.json +++ b/descriptions-next/api.github.com/api.github.com.2022-11-28.json @@ -14184,6 +14184,12 @@ } } } + }, + "403": { + "$ref": "#/components/responses/forbidden" + }, + "404": { + "$ref": "#/components/responses/not_found" } }, "x-github": { @@ -14380,6 +14386,12 @@ } } } + }, + "403": { + "$ref": "#/components/responses/forbidden" + }, + "404": { + "$ref": "#/components/responses/not_found" } }, "x-github": { @@ -14601,6 +14613,12 @@ } } } + }, + "403": { + "$ref": "#/components/responses/forbidden" + }, + "404": { + "$ref": "#/components/responses/not_found" } }, "x-github": { @@ -25487,7 +25505,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" ], @@ -25547,12 +25565,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": { @@ -25570,13 +25588,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" ] }, @@ -25607,6 +25674,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" + } } } } @@ -25765,7 +25843,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" ], @@ -25851,16 +25929,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 + ] + } } } } @@ -61384,6 +61525,9 @@ "responses": { "204": { "description": "Response" + }, + "404": { + "$ref": "#/components/responses/not_found" } }, "x-github": { @@ -61518,6 +61662,9 @@ } } } + }, + "404": { + "$ref": "#/components/responses/not_found" } }, "x-github": { @@ -61779,6 +61926,9 @@ "responses": { "204": { "description": "Response" + }, + "404": { + "$ref": "#/components/responses/not_found" } }, "x-github": { @@ -105032,14 +105182,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -111818,9 +111960,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -118144,6 +118283,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", @@ -118173,6 +118323,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" @@ -118223,6 +118413,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", @@ -118256,6 +118457,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" @@ -120339,12 +120580,6 @@ "all" ] }, - "has_commit_comments": { - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "type": "boolean" }, @@ -140822,9 +141057,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -143635,14 +143867,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -151099,11 +151323,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean" - }, "homepage": { "type": [ "string", @@ -151946,11 +152165,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean" - }, "homepage": { "type": [ "string", @@ -191246,11 +191460,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", @@ -195807,11 +196016,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean" - }, "homepage": { "type": [ "string", @@ -204420,11 +204624,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean" - }, "homepage": { "type": [ "string", @@ -205273,11 +205472,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean" - }, "homepage": { "type": [ "string", @@ -207559,11 +207753,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "has_pages": { "type": "boolean" }, @@ -208419,11 +208608,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -210720,11 +210904,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -211567,11 +211746,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -213986,11 +214160,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -214833,11 +215002,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -217240,11 +217404,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -218087,11 +218246,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -220380,11 +220534,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -221233,11 +221382,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -223533,11 +223677,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -224386,11 +224525,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -227215,11 +227349,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -228050,11 +228179,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -230209,11 +230333,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -231044,11 +231163,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -233199,11 +233313,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -234034,11 +234143,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -236185,11 +236289,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -237020,11 +237119,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -242290,11 +242384,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -243137,11 +243226,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -245544,11 +245628,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -246391,11 +246470,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -248850,11 +248924,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -249697,11 +249766,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -252100,11 +252164,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -252947,11 +253006,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -255369,11 +255423,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -256207,11 +256256,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -258370,11 +258414,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -259169,11 +259208,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -261685,11 +261719,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -262478,11 +262507,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -264996,11 +265020,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -265843,11 +265862,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -268151,11 +268165,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -269004,11 +269013,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -271307,11 +271311,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -272160,11 +272159,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -274455,11 +274449,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -275305,11 +275294,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -277392,11 +277376,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -292086,9 +292065,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "forks_count": { "type": "integer" }, diff --git a/descriptions-next/api.github.com/api.github.com.2022-11-28.yaml b/descriptions-next/api.github.com/api.github.com.2022-11-28.yaml index 37cef552a..cd4d43d08 100644 --- a/descriptions-next/api.github.com/api.github.com.2022-11-28.yaml +++ b/descriptions-next/api.github.com/api.github.com.2022-11-28.yaml @@ -10221,6 +10221,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 @@ -10384,6 +10388,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 @@ -10550,6 +10558,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 @@ -18470,6 +18482,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: @@ -18530,11 +18543,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 @@ -18557,11 +18573,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: @@ -18588,6 +18651,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 @@ -18698,6 +18770,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: @@ -18783,12 +18856,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 @@ -44584,6 +44716,8 @@ paths: responses: '204': description: Response + '404': + "$ref": "#/components/responses/not_found" x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -44687,6 +44821,8 @@ paths: examples: default: "$ref": "#/components/examples/release" + '404': + "$ref": "#/components/responses/not_found" x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -44874,6 +45010,8 @@ paths: responses: '204': description: Response + '404': + "$ref": "#/components/responses/not_found" x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -75744,12 +75882,6 @@ components: - collaborators_only examples: - all - has_commit_comments: - description: Whether commit comments are enabled. - default: true - type: boolean - examples: - - true archived: description: Whether the repository is archived. default: false @@ -80805,8 +80937,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - type: boolean archived: type: boolean disabled: @@ -85638,6 +85768,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 @@ -85665,6 +85804,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 @@ -85706,6 +85875,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 @@ -85738,6 +85916,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 @@ -87226,10 +87434,6 @@ components: - collaborators_only examples: - all - has_commit_comments: - type: boolean - examples: - - true archived: type: boolean disabled: @@ -101853,8 +102057,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - type: boolean archived: type: boolean disabled: @@ -103914,12 +104116,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - default: true - type: boolean - examples: - - true archived: description: Whether the repository is archived. default: false @@ -109493,10 +109689,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - default: true - type: boolean homepage: type: - string @@ -110147,10 +110339,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - default: true - type: boolean homepage: type: - string @@ -138921,10 +139109,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 @@ -142311,10 +142495,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - default: true - type: boolean homepage: type: - string @@ -148446,10 +148626,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - default: true - type: boolean homepage: type: - string @@ -149105,10 +149281,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - default: true - type: boolean homepage: type: - string @@ -150822,10 +150994,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: @@ -151487,10 +151655,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -153215,10 +153379,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -153870,10 +154030,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -155680,10 +155836,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -156335,10 +156487,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -158137,10 +158285,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -158792,10 +158936,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -160512,10 +160652,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -161171,10 +161307,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -162899,10 +163031,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -163558,10 +163686,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -165684,10 +165808,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -166330,10 +166450,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -167954,10 +168070,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -168600,10 +168712,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -170218,10 +170326,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -170864,10 +170968,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -172481,10 +172581,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -173127,10 +173223,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -177060,10 +177152,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -177706,10 +177794,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -179512,10 +179596,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -180167,10 +180247,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -182018,10 +182094,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -182673,10 +182745,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -184475,10 +184543,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -185130,10 +185194,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -186948,10 +187008,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -187596,10 +187652,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -189224,10 +189276,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -189822,10 +189870,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -191704,10 +191748,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -192298,10 +192338,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -194178,10 +194214,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -194833,10 +194865,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -196558,10 +196586,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -197217,10 +197241,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -198947,10 +198967,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -199606,10 +199622,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -201321,10 +201333,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -201978,10 +201986,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -203568,10 +203572,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -214305,8 +214305,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - type: boolean forks_count: type: integer mirror_url: diff --git a/descriptions-next/api.github.com/api.github.com.2026-03-10.json b/descriptions-next/api.github.com/api.github.com.2026-03-10.json index 9f4d8ea90..5d90d7777 100644 --- a/descriptions-next/api.github.com/api.github.com.2026-03-10.json +++ b/descriptions-next/api.github.com/api.github.com.2026-03-10.json @@ -14183,6 +14183,12 @@ } } } + }, + "403": { + "$ref": "#/components/responses/forbidden" + }, + "404": { + "$ref": "#/components/responses/not_found" } }, "x-github": { @@ -14379,6 +14385,12 @@ } } } + }, + "403": { + "$ref": "#/components/responses/forbidden" + }, + "404": { + "$ref": "#/components/responses/not_found" } }, "x-github": { @@ -14600,6 +14612,12 @@ } } } + }, + "403": { + "$ref": "#/components/responses/forbidden" + }, + "404": { + "$ref": "#/components/responses/not_found" } }, "x-github": { @@ -25439,7 +25457,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" ], @@ -25499,12 +25517,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": { @@ -25522,13 +25540,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" ] }, @@ -25559,6 +25626,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" + } } } } @@ -25717,7 +25795,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" ], @@ -25803,16 +25881,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 + ] + } } } } @@ -61290,6 +61431,9 @@ "responses": { "204": { "description": "Response" + }, + "404": { + "$ref": "#/components/responses/not_found" } }, "x-github": { @@ -61424,6 +61568,9 @@ } } } + }, + "404": { + "$ref": "#/components/responses/not_found" } }, "x-github": { @@ -61685,6 +61832,9 @@ "responses": { "204": { "description": "Response" + }, + "404": { + "$ref": "#/components/responses/not_found" } }, "x-github": { @@ -104852,14 +105002,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -111251,9 +111393,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -117570,6 +117709,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", @@ -117599,6 +117749,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" @@ -117649,6 +117839,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", @@ -117682,6 +117883,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" @@ -119738,12 +119979,6 @@ "all" ] }, - "has_commit_comments": { - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "type": "boolean" }, @@ -140138,9 +140373,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -143190,14 +143422,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -150642,11 +150866,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean" - }, "homepage": { "type": [ "string", @@ -151489,11 +151708,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean" - }, "homepage": { "type": [ "string", @@ -190763,11 +190977,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", @@ -195324,11 +195533,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean" - }, "homepage": { "type": [ "string", @@ -203937,11 +204141,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean" - }, "homepage": { "type": [ "string", @@ -204785,11 +204984,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean" - }, "homepage": { "type": [ "string", @@ -207059,11 +207253,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "has_pages": { "type": "boolean" }, @@ -207914,11 +208103,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -210203,11 +210387,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -211045,11 +211224,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -213452,11 +213626,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -214299,11 +214468,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -216699,11 +216863,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -217546,11 +217705,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -219832,11 +219986,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -220680,11 +220829,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -222968,11 +223112,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -223816,11 +223955,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -226633,11 +226767,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -227463,11 +227592,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -229610,11 +229734,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -230440,11 +230559,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -232583,11 +232697,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -233413,11 +233522,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -235552,11 +235656,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -236382,11 +236481,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -241633,11 +241727,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -242475,11 +242564,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -244870,11 +244954,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -245712,11 +245791,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -248159,11 +248233,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -249001,11 +249070,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -251392,11 +251456,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -252234,11 +252293,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -254644,11 +254698,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -255477,11 +255526,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -257628,11 +257672,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -258427,11 +258466,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -260936,11 +260970,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -261729,11 +261758,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -264240,11 +264264,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -265082,11 +265101,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -267378,11 +267392,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -268226,11 +268235,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -270517,11 +270521,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -271365,11 +271364,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -273648,11 +273642,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -274493,11 +274482,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -276568,11 +276552,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -291243,9 +291222,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "forks_count": { "type": "integer" }, diff --git a/descriptions-next/api.github.com/api.github.com.2026-03-10.yaml b/descriptions-next/api.github.com/api.github.com.2026-03-10.yaml index 041ef4e57..9f27ce416 100644 --- a/descriptions-next/api.github.com/api.github.com.2026-03-10.yaml +++ b/descriptions-next/api.github.com/api.github.com.2026-03-10.yaml @@ -10219,6 +10219,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 @@ -10382,6 +10386,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 @@ -10548,6 +10556,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 @@ -18435,6 +18447,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: @@ -18495,11 +18508,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 @@ -18522,11 +18538,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: @@ -18553,6 +18616,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 @@ -18663,6 +18735,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: @@ -18748,12 +18821,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 @@ -44507,6 +44639,8 @@ paths: responses: '204': description: Response + '404': + "$ref": "#/components/responses/not_found" x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -44610,6 +44744,8 @@ paths: examples: default: "$ref": "#/components/examples/release" + '404': + "$ref": "#/components/responses/not_found" x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -44797,6 +44933,8 @@ paths: responses: '204': description: Response + '404': + "$ref": "#/components/responses/not_found" x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -75601,12 +75739,6 @@ components: - collaborators_only examples: - all - has_commit_comments: - description: Whether commit comments are enabled. - default: true - type: boolean - examples: - - true archived: description: Whether the repository is archived. default: false @@ -80387,8 +80519,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - type: boolean archived: type: boolean disabled: @@ -85214,6 +85344,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 @@ -85241,6 +85380,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 @@ -85282,6 +85451,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 @@ -85314,6 +85492,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 @@ -86786,10 +86994,6 @@ components: - collaborators_only examples: - all - has_commit_comments: - type: boolean - examples: - - true archived: type: boolean disabled: @@ -101358,8 +101562,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - type: boolean archived: type: boolean disabled: @@ -103594,12 +103796,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - default: true - type: boolean - examples: - - true archived: description: Whether the repository is archived. default: false @@ -109162,10 +109358,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - default: true - type: boolean homepage: type: - string @@ -109816,10 +110008,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - default: true - type: boolean homepage: type: - string @@ -138572,10 +138760,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 @@ -141962,10 +142146,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - default: true - type: boolean homepage: type: - string @@ -148097,10 +148277,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - default: true - type: boolean homepage: type: - string @@ -148750,10 +148926,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - default: true - type: boolean homepage: type: - string @@ -150456,10 +150628,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: @@ -151115,10 +151283,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -152832,10 +152996,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -153481,10 +153641,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -155280,10 +155436,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -155935,10 +156087,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -157732,10 +157880,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -158387,10 +158531,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -160102,10 +160242,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -160755,10 +160891,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -162472,10 +162604,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -163125,10 +163253,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -165240,10 +165364,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -165880,10 +166000,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -167493,10 +167609,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -168133,10 +168245,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -169740,10 +169848,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -170380,10 +170484,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -171986,10 +172086,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -172626,10 +172722,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -176543,10 +176635,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -177183,10 +177271,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -178978,10 +179062,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -179627,10 +179707,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -181467,10 +181543,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -182116,10 +182188,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -183907,10 +183975,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -184556,10 +184620,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -186363,10 +186423,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -187005,10 +187061,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -188622,10 +188674,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -189220,10 +189268,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -191097,10 +191141,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -191691,10 +191731,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -193566,10 +193602,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -194215,10 +194247,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -195929,10 +195957,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -196582,10 +196606,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -198301,10 +198321,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -198954,10 +198970,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -200658,10 +200670,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -201309,10 +201317,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -202888,10 +202892,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -213612,8 +213612,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - type: boolean forks_count: type: integer mirror_url: diff --git a/descriptions-next/api.github.com/api.github.com.json b/descriptions-next/api.github.com/api.github.com.json index e99ad5a2e..e1709d99b 100644 --- a/descriptions-next/api.github.com/api.github.com.json +++ b/descriptions-next/api.github.com/api.github.com.json @@ -14230,6 +14230,12 @@ } } } + }, + "403": { + "$ref": "#/components/responses/forbidden" + }, + "404": { + "$ref": "#/components/responses/not_found" } }, "x-github": { @@ -14426,6 +14432,12 @@ } } } + }, + "403": { + "$ref": "#/components/responses/forbidden" + }, + "404": { + "$ref": "#/components/responses/not_found" } }, "x-github": { @@ -14647,6 +14659,12 @@ } } } + }, + "403": { + "$ref": "#/components/responses/forbidden" + }, + "404": { + "$ref": "#/components/responses/not_found" } }, "x-github": { @@ -25666,7 +25684,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" ], @@ -25726,12 +25744,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": { @@ -25749,13 +25767,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" ] }, @@ -25786,6 +25853,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" + } } } } @@ -25944,7 +26022,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" ], @@ -26030,16 +26108,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 + ] + } } } } @@ -61686,6 +61827,9 @@ "responses": { "204": { "description": "Response" + }, + "404": { + "$ref": "#/components/responses/not_found" } }, "x-github": { @@ -61820,6 +61964,9 @@ } } } + }, + "404": { + "$ref": "#/components/responses/not_found" } }, "x-github": { @@ -62081,6 +62228,9 @@ "responses": { "204": { "description": "Response" + }, + "404": { + "$ref": "#/components/responses/not_found" } }, "x-github": { @@ -105510,14 +105660,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -112542,9 +112684,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -118910,6 +119049,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", @@ -118939,6 +119089,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" @@ -118989,6 +119179,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", @@ -119022,6 +119223,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" @@ -121188,12 +121429,6 @@ "all" ] }, - "has_commit_comments": { - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "type": "boolean" }, @@ -141992,9 +142227,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -144805,14 +145037,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -152294,11 +152518,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean" - }, "homepage": { "type": [ "string", @@ -153141,11 +153360,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean" - }, "homepage": { "type": [ "string", @@ -192513,11 +192727,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", @@ -197074,11 +197283,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean" - }, "homepage": { "type": [ "string", @@ -205687,11 +205891,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean" - }, "homepage": { "type": [ "string", @@ -206540,11 +206739,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean" - }, "homepage": { "type": [ "string", @@ -208856,11 +209050,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "has_pages": { "type": "boolean" }, @@ -209716,11 +209905,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -212047,11 +212231,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -212894,11 +213073,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -215343,11 +215517,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -216190,11 +216359,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -218613,11 +218777,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -219460,11 +219619,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -221769,11 +221923,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -222622,11 +222771,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -224952,11 +225096,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -225805,11 +225944,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -228664,11 +228798,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -229499,11 +229628,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -231688,11 +231812,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -232523,11 +232642,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -234708,11 +234822,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -235543,11 +235652,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -237724,11 +237828,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -238559,11 +238658,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -243875,11 +243969,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -244722,11 +244811,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -247129,11 +247213,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -247976,11 +248055,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -250481,11 +250555,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -251328,11 +251397,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -253731,11 +253795,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -254578,11 +254637,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -257046,11 +257100,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -257884,11 +257933,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -260077,11 +260121,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -260876,11 +260915,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -263408,11 +263442,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -264201,11 +264230,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -266735,11 +266759,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -267582,11 +267601,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -269920,11 +269934,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -270773,11 +270782,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -273106,11 +273110,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -273959,11 +273958,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -276284,11 +276278,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -277134,11 +277123,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -279251,11 +279235,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -293961,9 +293940,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "forks_count": { "type": "integer" }, diff --git a/descriptions-next/api.github.com/api.github.com.yaml b/descriptions-next/api.github.com/api.github.com.yaml index 7817b0f71..c54c148cc 100644 --- a/descriptions-next/api.github.com/api.github.com.yaml +++ b/descriptions-next/api.github.com/api.github.com.yaml @@ -10246,6 +10246,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 @@ -10409,6 +10413,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 @@ -10575,6 +10583,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 @@ -18565,6 +18577,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: @@ -18625,11 +18638,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 @@ -18652,11 +18668,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: @@ -18683,6 +18746,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 @@ -18793,6 +18865,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: @@ -18878,12 +18951,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 @@ -44769,6 +44901,8 @@ paths: responses: '204': description: Response + '404': + "$ref": "#/components/responses/not_found" x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -44872,6 +45006,8 @@ paths: examples: default: "$ref": "#/components/examples/release" + '404': + "$ref": "#/components/responses/not_found" x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -45059,6 +45195,8 @@ paths: responses: '204': description: Response + '404': + "$ref": "#/components/responses/not_found" x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -76031,12 +76169,6 @@ components: - collaborators_only examples: - all - has_commit_comments: - description: Whether commit comments are enabled. - default: true - type: boolean - examples: - - true archived: description: Whether the repository is archived. default: false @@ -81280,8 +81412,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - type: boolean archived: type: boolean disabled: @@ -86137,6 +86267,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 @@ -86164,6 +86303,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 @@ -86205,6 +86374,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 @@ -86237,6 +86415,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 @@ -87797,10 +88005,6 @@ components: - collaborators_only examples: - all - has_commit_comments: - type: boolean - examples: - - true archived: type: boolean disabled: @@ -102693,8 +102897,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - type: boolean archived: type: boolean disabled: @@ -104754,12 +104956,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - default: true - type: boolean - examples: - - true archived: description: Whether the repository is archived. default: false @@ -110347,10 +110543,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - default: true - type: boolean homepage: type: - string @@ -111001,10 +111193,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - default: true - type: boolean homepage: type: - string @@ -139835,10 +140023,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 @@ -143225,10 +143409,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - default: true - type: boolean homepage: type: - string @@ -149360,10 +149540,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - default: true - type: boolean homepage: type: - string @@ -150019,10 +150195,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - default: true - type: boolean homepage: type: - string @@ -151751,10 +151923,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: @@ -152416,10 +152584,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -154159,10 +154323,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -154814,10 +154974,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -156639,10 +156795,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -157294,10 +157446,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -159104,10 +159252,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -159759,10 +159903,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -161487,10 +161627,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -162146,10 +162282,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -163889,10 +164021,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -164548,10 +164676,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -166689,10 +166813,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -167335,10 +167455,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -168974,10 +169090,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -169620,10 +169732,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -171253,10 +171361,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -171899,10 +172003,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -173531,10 +173631,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -174177,10 +174273,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -178133,10 +178225,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -178779,10 +178867,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -180585,10 +180669,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -181240,10 +181320,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -183114,10 +183190,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -183769,10 +183841,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -185571,10 +185639,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -186226,10 +186290,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -188067,10 +188127,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -188715,10 +188771,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -190358,10 +190410,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -190956,10 +191004,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -192846,10 +192890,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -193440,10 +193480,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -195328,10 +195364,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -195983,10 +196015,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -197723,10 +197751,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -198382,10 +198406,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -200127,10 +200147,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -200786,10 +200802,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -202516,10 +202528,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -203173,10 +203181,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -204778,10 +204782,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -215523,8 +215523,6 @@ components: enum: - all - collaborators_only - has_commit_comments: - type: boolean forks_count: type: integer mirror_url: diff --git a/descriptions-next/api.github.com/dereferenced/api.github.com.2022-11-28.deref.json b/descriptions-next/api.github.com/dereferenced/api.github.com.2022-11-28.deref.json index 7c7884306..ad2c28e48 100644 --- a/descriptions-next/api.github.com/dereferenced/api.github.com.2022-11-28.deref.json +++ b/descriptions-next/api.github.com/dereferenced/api.github.com.2022-11-28.deref.json @@ -9118,14 +9118,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -32157,14 +32149,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -36519,14 +36503,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -39693,9 +39669,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "forks_count": { "type": "integer" }, @@ -56323,14 +56296,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -58996,14 +58961,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -67430,14 +67387,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -71792,14 +71741,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -74966,9 +74907,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "forks_count": { "type": "integer" }, @@ -78417,9 +78355,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -79809,9 +79744,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -92363,14 +92295,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -94178,14 +94102,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -97135,9 +97051,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -99820,14 +99733,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -100900,14 +100805,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -103450,9 +103347,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -105251,9 +105145,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -106163,6 +106054,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": { @@ -106439,6 +106382,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": { @@ -106666,6 +106661,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": { @@ -119037,9 +119084,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -122199,9 +122243,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -126159,9 +126200,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -132153,9 +132191,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -133627,9 +133662,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -136917,14 +136949,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -141279,14 +141303,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -144453,9 +144469,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "forks_count": { "type": "integer" }, @@ -159475,14 +159488,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -163116,9 +163121,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -165542,9 +165544,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -169631,14 +169630,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -171193,14 +171184,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -172782,14 +172765,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -174119,9 +174094,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -178031,9 +178003,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -179411,9 +179380,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -182817,9 +182783,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -185126,9 +185089,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -185747,6 +185707,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", @@ -185776,6 +185747,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" @@ -185928,7 +185939,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" ], @@ -185994,12 +186005,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": { @@ -186017,13 +186028,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" ] }, @@ -186054,6 +186114,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" + } } } } @@ -186097,6 +186168,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", @@ -186130,6 +186212,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" @@ -186461,6 +186583,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", @@ -186490,6 +186623,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" @@ -186558,7 +186731,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" ], @@ -186656,16 +186829,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 + ] + } } } } @@ -191219,14 +191455,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -195274,14 +195502,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -196446,14 +196666,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -202810,14 +203022,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -206865,14 +207069,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -208037,14 +208233,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -220041,9 +220229,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -221377,12 +221562,6 @@ "all" ] }, - "has_commit_comments": { - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "type": "boolean" }, @@ -222170,14 +222349,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -223497,14 +223668,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -224473,14 +224636,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -241715,9 +241870,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -249340,9 +249492,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -252719,12 +252868,6 @@ "all" ] }, - "has_commit_comments": { - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "type": "boolean" }, @@ -253512,14 +253655,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -254839,14 +254974,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -255815,14 +255942,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -257915,12 +258034,6 @@ "all" ] }, - "has_commit_comments": { - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "type": "boolean" }, @@ -258708,14 +258821,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -260035,14 +260140,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -261011,14 +261108,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -268483,14 +268572,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -269572,14 +269653,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -272523,9 +272596,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -273448,9 +273518,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -275487,9 +275554,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -276412,9 +276476,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -279295,9 +279356,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -280220,9 +280278,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -287601,9 +287656,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -288526,9 +288578,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -325366,9 +325415,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -327356,9 +327402,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -328856,9 +328899,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -330694,9 +330734,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -346060,9 +346097,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -348229,9 +348263,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -350034,9 +350065,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -353864,9 +353892,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -362477,14 +362502,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -363649,14 +363666,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -368830,9 +368839,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -370259,9 +370265,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -396144,14 +396147,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -400506,14 +400501,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -403680,9 +403667,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "forks_count": { "type": "integer" }, @@ -407036,9 +407020,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -408310,12 +408291,6 @@ "all" ] }, - "has_commit_comments": { - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "type": "boolean" }, @@ -409103,14 +409078,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -410430,14 +410397,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -411406,14 +411365,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -423816,9 +423767,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -425379,9 +425327,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -428538,14 +428483,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -432874,14 +432811,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -443380,14 +443309,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -449318,14 +449239,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -455052,14 +454965,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -459620,14 +459525,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -463939,14 +463836,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -468055,14 +467944,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -474561,14 +474442,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -478764,14 +478637,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -483051,14 +482916,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -487360,14 +487217,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -505108,14 +504957,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -510464,14 +510305,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -514677,14 +514510,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -518858,14 +518683,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -523144,14 +522961,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -538128,14 +537937,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -549577,9 +549378,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -556551,14 +556349,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -557723,14 +557513,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -561364,14 +561146,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -562529,14 +562303,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -569635,14 +569401,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -570800,14 +570558,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -574709,14 +574459,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -575874,14 +575616,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -578636,9 +578370,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -580441,9 +580172,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -588116,14 +587844,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -589288,14 +589008,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -593015,14 +592727,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -594187,14 +593891,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -603040,6 +602736,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": { @@ -603932,6 +603654,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": { @@ -606365,6 +606113,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": { @@ -638467,12 +638241,6 @@ "all" ] }, - "has_commit_comments": { - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "type": "boolean" }, @@ -639260,14 +639028,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -640587,14 +640347,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -641563,14 +641315,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -647497,9 +647241,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -649014,12 +648755,6 @@ "all" ] }, - "has_commit_comments": { - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "type": "boolean" }, @@ -649807,14 +649542,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -651134,14 +650861,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -652110,14 +651829,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -653769,9 +653480,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -656169,9 +655877,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -657862,9 +657567,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -660500,14 +660202,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -663389,9 +663083,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -669102,9 +668793,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -674626,9 +674314,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -676986,9 +676671,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -678791,9 +678473,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -680905,9 +680584,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -683066,9 +682742,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -685043,9 +684716,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -687933,12 +687603,6 @@ "all" ] }, - "has_commit_comments": { - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "type": "boolean" }, @@ -688726,14 +688390,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -690053,14 +689709,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -691029,14 +690677,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -693619,9 +693259,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -695684,9 +695321,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -697484,9 +697118,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -703491,14 +703122,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -706625,14 +706248,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -713023,14 +712638,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -714647,14 +714254,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -716249,14 +715848,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -717745,9 +717336,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -719390,9 +718978,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -720709,9 +720294,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -723370,14 +722952,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -724730,12 +724304,6 @@ "all" ] }, - "has_commit_comments": { - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "type": "boolean" }, @@ -725523,14 +725091,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -726850,14 +726410,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -727826,14 +727378,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -729731,9 +729275,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -733130,14 +732671,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -734250,14 +733783,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -735681,9 +735206,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -739981,14 +739503,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -744036,14 +743550,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -745208,14 +744714,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -750142,9 +749640,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -753432,14 +752927,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -757794,14 +757281,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -760968,9 +760447,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "forks_count": { "type": "integer" }, @@ -766469,14 +765945,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -770831,14 +770299,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -774005,9 +773465,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "forks_count": { "type": "integer" }, @@ -779516,14 +778973,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -783878,14 +783327,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -787052,9 +786493,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "forks_count": { "type": "integer" }, @@ -793843,9 +793281,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -795223,9 +794658,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -804005,14 +803437,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -808060,14 +807484,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -809232,14 +808648,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -820398,14 +819806,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -824760,14 +824160,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -827934,9 +827326,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "forks_count": { "type": "integer" }, @@ -833431,14 +832820,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -837793,14 +837174,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -840967,9 +840340,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "forks_count": { "type": "integer" }, @@ -844347,9 +843717,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -846962,14 +846329,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -847947,14 +847306,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -848951,9 +848302,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -850781,14 +850129,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -852783,14 +852123,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -854785,14 +854117,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -856967,14 +856291,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -859317,14 +858633,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -861916,9 +861224,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -864206,14 +863511,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -866970,9 +866267,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -869260,14 +868554,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -872024,9 +871310,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -874314,14 +873597,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -877091,9 +876366,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -879381,14 +878653,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -882506,14 +881770,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -885320,14 +884576,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -888128,14 +887376,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -890622,14 +889862,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -893243,14 +892475,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -895689,14 +894913,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -898221,14 +897437,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -900671,14 +899879,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -903063,14 +902263,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -905551,14 +904743,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -907791,14 +906975,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -909814,14 +908990,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -913997,14 +913165,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -916185,14 +915345,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -919178,14 +918330,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -922170,14 +921314,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -925162,14 +924298,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -928154,14 +927282,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -931146,14 +930266,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -934138,14 +933250,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -937130,14 +936234,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -940122,14 +939218,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -942177,14 +941265,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -944232,14 +943312,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -946891,14 +945963,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -951561,14 +950625,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -952726,14 +951782,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -954695,14 +953743,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -956878,14 +955918,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -960023,14 +959055,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -963106,14 +962130,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -967649,14 +966665,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -971296,14 +970304,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -973857,14 +972857,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -976355,14 +975347,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -979069,14 +978053,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -981784,14 +980760,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -984518,14 +983486,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -987017,14 +985977,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -989514,14 +988466,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -992038,14 +990982,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -994578,14 +993514,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -997076,14 +996004,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -999573,14 +998493,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1002070,14 +1000982,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1004356,14 +1003260,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1006583,14 +1005479,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1009183,14 +1008071,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1011723,14 +1010603,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1014221,14 +1013093,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1016718,14 +1015582,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1019654,14 +1018510,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1021970,14 +1020818,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1025011,14 +1023851,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1028150,14 +1026982,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1031194,14 +1030018,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1034265,14 +1033081,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1037450,14 +1036258,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1040601,14 +1039401,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1042761,14 +1041553,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1045805,14 +1044589,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1050339,14 +1049115,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1054865,14 +1053633,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1059409,14 +1058169,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1063943,14 +1062695,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1068476,14 +1067220,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1071400,14 +1070136,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1075273,14 +1074001,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1077836,14 +1076556,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1079112,14 +1077824,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1082035,14 +1080739,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1085908,14 +1084604,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1088471,14 +1087159,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1089747,14 +1088427,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1092670,14 +1091342,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1095233,14 +1093897,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1097519,14 +1096175,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1100382,14 +1099030,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1103305,14 +1101945,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1105868,14 +1104500,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1108154,14 +1106778,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1111017,14 +1109633,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1115507,14 +1114115,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1120119,14 +1118719,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1124502,14 +1123094,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1129079,14 +1127663,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1133539,14 +1132115,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1137969,14 +1136537,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1142360,14 +1140920,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1146935,14 +1145487,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1150376,11 +1148920,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", @@ -1154340,14 +1152879,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1158722,14 +1157253,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1163109,14 +1161632,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1166589,11 +1165104,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean" - }, "homepage": { "type": [ "string", @@ -1170526,14 +1169036,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1174983,14 +1173485,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1179474,14 +1177968,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1183906,14 +1182392,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1188295,14 +1186773,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1192677,14 +1191147,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1197133,14 +1195595,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1199180,14 +1197634,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1201225,14 +1199671,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1203313,14 +1201751,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1205560,14 +1203990,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1207809,14 +1206231,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1210055,14 +1208469,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1212296,14 +1210702,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1214541,14 +1212939,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1216676,14 +1215066,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1218815,14 +1217197,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1220920,14 +1219294,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1223024,14 +1221390,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1225263,14 +1223621,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1227442,14 +1225792,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1229489,14 +1227831,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1231620,14 +1229954,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1233819,14 +1232145,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1236014,14 +1234332,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1238210,14 +1236520,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1240448,14 +1238750,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1242644,14 +1240938,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1244747,14 +1243033,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1246850,14 +1245128,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1249000,14 +1247270,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1251149,14 +1249411,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1253318,14 +1251572,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1255568,14 +1253814,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1257731,14 +1255969,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1260634,14 +1258864,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1263282,14 +1261504,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1265431,14 +1263645,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1270814,14 +1269020,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1273173,14 +1271371,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1275344,14 +1273534,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1277523,14 +1275705,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1279717,14 +1277891,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1282021,14 +1280187,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1284195,14 +1282353,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1286250,14 +1284400,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1288309,14 +1286451,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1290381,14 +1288515,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1292436,14 +1290562,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1294610,14 +1292728,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1296789,14 +1294899,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1298994,14 +1297096,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1301167,14 +1299261,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1316407,14 +1314493,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1318320,11 +1316398,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean" - }, "homepage": { "type": [ "string", @@ -1319173,11 +1317246,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean" - }, "homepage": { "type": [ "string", @@ -1321631,14 +1319699,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1323429,11 +1321489,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "has_pages": { "type": "boolean" }, @@ -1324289,11 +1322344,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -1326749,14 +1324799,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1328560,11 +1326602,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -1329407,11 +1327444,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -1331867,14 +1329899,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1335074,14 +1333098,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1336239,14 +1334255,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1338267,14 +1336275,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1341474,14 +1339474,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1342639,14 +1340631,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1344667,14 +1342651,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1346769,11 +1344745,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean" - }, "homepage": { "type": [ "string", @@ -1347616,11 +1345587,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean" - }, "homepage": { "type": [ "string", @@ -1350062,14 +1348028,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1351871,11 +1349829,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -1352718,11 +1350671,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -1355183,14 +1353131,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1358452,14 +1356392,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1359617,14 +1357549,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1361645,14 +1359569,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1363455,11 +1361371,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -1364302,11 +1362213,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -1366750,14 +1364656,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1368606,11 +1366504,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -1369459,11 +1367352,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -1371918,14 +1369806,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1373730,11 +1371610,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -1374583,11 +1372458,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -1377041,14 +1374911,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1379143,11 +1377005,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean" - }, "homepage": { "type": [ "string", @@ -1379990,11 +1377847,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean" - }, "homepage": { "type": [ "string", @@ -1382436,14 +1380288,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1385642,14 +1383486,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1386807,14 +1384643,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1388835,14 +1386663,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1392042,14 +1389862,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1393207,14 +1391019,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1395235,14 +1393039,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1398442,14 +1396238,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1399607,14 +1397395,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1401635,14 +1399415,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1403817,11 +1401589,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -1404652,11 +1402419,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -1406975,14 +1404737,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1409152,11 +1406906,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -1409987,11 +1407736,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -1412300,14 +1410044,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1414498,11 +1412234,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -1415333,11 +1413064,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -1417647,14 +1415373,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1419454,11 +1417172,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -1420289,11 +1418002,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -1422614,14 +1420322,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1427679,14 +1425379,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1429708,11 +1427400,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -1430555,11 +1428242,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -1433019,14 +1430701,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1434842,11 +1432516,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -1435689,11 +1433358,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -1438153,14 +1435817,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1440118,11 +1437774,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -1440965,11 +1438616,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -1443422,14 +1441068,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1445248,11 +1442886,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -1446095,11 +1443728,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -1448543,14 +1446171,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1450487,11 +1448107,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -1451325,11 +1448940,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -1453651,14 +1451261,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1455667,11 +1453269,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -1456466,11 +1454063,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -1458752,14 +1456344,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1460952,11 +1458536,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -1461745,11 +1459324,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -1464020,14 +1461594,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1466234,11 +1463800,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -1467081,11 +1464642,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -1469539,14 +1467095,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1471457,11 +1469005,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -1472310,11 +1469853,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -1474769,14 +1472307,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1476624,11 +1474154,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -1477477,11 +1475002,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -1479935,14 +1477455,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1481743,11 +1479255,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -1482593,11 +1480100,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -1485039,14 +1482541,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1486652,11 +1484146,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -1489338,14 +1486827,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1491889,14 +1489370,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1494336,14 +1491809,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1496784,14 +1494249,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1499285,14 +1496742,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1501739,14 +1499188,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1504189,14 +1501630,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1506636,14 +1504069,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1509086,14 +1506511,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1511088,14 +1508505,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1515081,14 +1512490,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1519074,14 +1516475,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1521077,14 +1518470,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1523080,14 +1520465,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1525091,14 +1522468,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1527152,14 +1524521,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1529149,14 +1526510,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1531158,14 +1528511,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1533161,14 +1530506,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1535191,14 +1532528,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1537195,14 +1534524,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1540519,14 +1537840,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1543843,14 +1541156,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1550265,14 +1547570,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1552269,14 +1549566,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1554445,14 +1551734,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1556631,14 +1553912,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1558806,14 +1556079,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1560981,14 +1558246,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1563996,14 +1561253,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1566843,14 +1564092,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1569948,14 +1567189,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1572971,14 +1570204,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1575818,14 +1573043,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1578665,14 +1575882,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1581680,14 +1578889,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1584527,14 +1581728,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1586375,14 +1583568,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1588593,14 +1585778,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1590820,14 +1587997,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1593047,14 +1590216,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1595143,12 +1592304,6 @@ "all" ] }, - "has_commit_comments": { - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "type": "boolean" }, @@ -1595936,14 +1593091,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1597263,14 +1594410,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1598239,14 +1595378,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1600171,14 +1597302,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1602496,14 +1599619,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1604838,14 +1601953,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1607168,14 +1604275,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1609556,14 +1606655,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1611941,14 +1609032,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1614267,14 +1611350,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1616277,14 +1613352,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1618783,14 +1615850,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1621739,14 +1618798,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1624302,14 +1621353,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1626588,14 +1623631,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1629451,14 +1626486,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1632376,14 +1629403,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1634939,14 +1631958,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1637225,14 +1634236,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1640088,14 +1637091,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1643013,14 +1640008,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1645576,14 +1642563,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1647862,14 +1644841,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1650725,14 +1647696,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1653650,14 +1650613,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1656213,14 +1653168,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1658499,14 +1655446,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1661362,14 +1658301,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1663360,14 +1660291,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1672175,14 +1669098,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1674180,14 +1671095,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1676185,14 +1673092,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1679244,14 +1676143,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1682341,14 +1679232,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1685261,14 +1682144,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1688182,14 +1685057,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1691489,14 +1688356,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1694778,14 +1691637,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, diff --git a/descriptions-next/api.github.com/dereferenced/api.github.com.2022-11-28.deref.yaml b/descriptions-next/api.github.com/dereferenced/api.github.com.2022-11-28.deref.yaml index db4032f6a..7849905ea 100644 --- a/descriptions-next/api.github.com/dereferenced/api.github.com.2022-11-28.deref.yaml +++ b/descriptions-next/api.github.com/dereferenced/api.github.com.2022-11-28.deref.yaml @@ -3415,12 +3415,6 @@ paths: - collaborators_only examples: - all - has_commit_comments: - description: Whether commit comments are enabled. - default: true - type: boolean - examples: - - true archived: description: Whether the repository is archived. default: false @@ -12385,8 +12379,6 @@ paths: enum: - all - collaborators_only - has_commit_comments: - type: boolean forks_count: type: integer mirror_url: @@ -17339,8 +17331,6 @@ paths: enum: - all - collaborators_only - has_commit_comments: - type: boolean archived: type: boolean disabled: @@ -25756,6 +25746,8 @@ paths: created: '2011-01-26T19:14:43Z' updated_at: '2011-01-26T19:14:43Z' attestation_id: 456 + '403': *27 + '404': *6 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -25917,6 +25909,8 @@ paths: items: *161 examples: default: *162 + '403': *27 + '404': *6 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -26083,6 +26077,8 @@ paths: status: active created_at: '2023-10-01T12:00:00Z' updated_at: '2023-10-01T12:00:00Z' + '403': *27 + '404': *6 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -39304,6 +39300,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 @@ -39334,6 +39339,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 @@ -39371,6 +39406,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: @@ -39431,11 +39467,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 @@ -39458,11 +39497,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: @@ -39489,6 +39575,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 @@ -39523,6 +39618,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 @@ -39558,6 +39662,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 @@ -39683,6 +39817,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: @@ -39768,12 +39903,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 @@ -43917,10 +44111,6 @@ paths: - collaborators_only examples: - all - has_commit_comments: - type: boolean - examples: - - true archived: type: boolean disabled: @@ -92334,6 +92524,7 @@ paths: responses: '204': description: Response + '404': *6 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -92451,6 +92642,7 @@ paths: schema: *570 examples: default: *574 + '404': *6 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -92636,6 +92828,7 @@ paths: responses: '204': description: Response + '404': *6 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -99052,8 +99245,6 @@ paths: enum: - all - collaborators_only - has_commit_comments: - type: boolean archived: type: boolean disabled: @@ -111116,12 +111307,6 @@ webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - default: true - type: boolean - examples: - - true archived: description: Whether the repository is archived. default: false @@ -146007,10 +146192,6 @@ 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 @@ -150492,10 +150673,6 @@ webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - default: true - type: boolean homepage: type: - string @@ -162295,10 +162472,6 @@ webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - default: true - type: boolean homepage: type: - string @@ -162960,10 +163133,6 @@ webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - default: true - type: boolean homepage: type: - string @@ -164746,10 +164915,6 @@ webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true has_pages: type: boolean has_projects: @@ -165417,10 +165582,6 @@ webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -167214,10 +167375,6 @@ webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -167875,10 +168032,6 @@ webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -169907,10 +170060,6 @@ webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - default: true - type: boolean homepage: type: - string @@ -170566,10 +170715,6 @@ webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - default: true - type: boolean homepage: type: - string @@ -172346,10 +172491,6 @@ webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -173007,10 +173148,6 @@ webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -174935,10 +175072,6 @@ webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -175596,10 +175729,6 @@ webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -177382,10 +177511,6 @@ webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -178047,10 +178172,6 @@ webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -179843,10 +179964,6 @@ webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -180508,10 +180625,6 @@ webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -182934,10 +183047,6 @@ webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -183585,10 +183694,6 @@ webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -185567,10 +185672,6 @@ webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -186218,10 +186319,6 @@ webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -187901,10 +187998,6 @@ webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -188552,10 +188645,6 @@ webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -190236,10 +190325,6 @@ webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -190887,10 +190972,6 @@ webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -195113,10 +195194,6 @@ webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -195769,10 +195846,6 @@ webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -197581,10 +197654,6 @@ webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -198244,10 +198313,6 @@ webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -200167,10 +200232,6 @@ webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -200830,10 +200891,6 @@ webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -202638,10 +202695,6 @@ webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -203301,10 +203354,6 @@ webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -205189,10 +205238,6 @@ webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -205842,10 +205887,6 @@ webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -207536,10 +207577,6 @@ webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -208138,10 +208175,6 @@ webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -210094,10 +210127,6 @@ webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -210692,10 +210721,6 @@ webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -212646,10 +212671,6 @@ webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -213307,10 +213328,6 @@ webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -215099,10 +215116,6 @@ webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -215764,10 +215777,6 @@ webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -217560,10 +217569,6 @@ webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -218225,10 +218230,6 @@ webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -220009,10 +220010,6 @@ webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -220672,10 +220669,6 @@ webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -222333,10 +222326,6 @@ webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string diff --git a/descriptions-next/api.github.com/dereferenced/api.github.com.2026-03-10.deref.json b/descriptions-next/api.github.com/dereferenced/api.github.com.2026-03-10.deref.json index 614bdfd97..f97bd73c3 100644 --- a/descriptions-next/api.github.com/dereferenced/api.github.com.2026-03-10.deref.json +++ b/descriptions-next/api.github.com/dereferenced/api.github.com.2026-03-10.deref.json @@ -9037,14 +9037,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -31859,14 +31851,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -36031,14 +36015,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -39194,9 +39170,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "forks_count": { "type": "integer" }, @@ -52679,14 +52652,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -55163,14 +55128,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -63407,14 +63364,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -67579,14 +67528,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -70742,9 +70683,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "forks_count": { "type": "integer" }, @@ -74190,9 +74128,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -75579,9 +75514,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -88179,14 +88111,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -89975,14 +89899,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -92919,9 +92835,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -95595,14 +95508,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -96656,14 +96561,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -99193,9 +99090,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -100991,9 +100885,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -101903,6 +101794,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": { @@ -102179,6 +102122,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": { @@ -102406,6 +102401,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": { @@ -114733,9 +114780,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -117892,9 +117936,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -121849,9 +121890,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -127805,9 +127843,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -129276,9 +129311,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -132387,14 +132419,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -136559,14 +136583,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -139722,9 +139738,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "forks_count": { "type": "integer" }, @@ -154565,14 +154578,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -158267,9 +158272,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -160690,9 +160692,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -171475,9 +171474,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -172852,9 +172848,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -176255,9 +176248,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -178561,9 +178551,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -179182,6 +179169,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", @@ -179211,6 +179209,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" @@ -179363,7 +179401,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" ], @@ -179429,12 +179467,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": { @@ -179452,13 +179490,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" ] }, @@ -179489,6 +179576,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" + } } } } @@ -179532,6 +179630,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", @@ -179565,6 +179674,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" @@ -179896,6 +180045,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", @@ -179925,6 +180085,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" @@ -179993,7 +180193,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" ], @@ -180091,16 +180291,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 + ] + } } } } @@ -184475,14 +184738,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -188326,14 +188581,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -189479,14 +189726,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -195652,14 +195891,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -199503,14 +199734,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -200656,14 +200879,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -212645,9 +212860,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -213975,12 +214187,6 @@ "all" ] }, - "has_commit_comments": { - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "type": "boolean" }, @@ -214759,14 +214965,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -216061,14 +216259,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -217018,14 +217208,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -234292,9 +234474,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -241905,9 +242084,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -245244,12 +245420,6 @@ "all" ] }, - "has_commit_comments": { - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "type": "boolean" }, @@ -246028,14 +246198,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -247330,14 +247492,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -248287,14 +248441,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -250371,12 +250517,6 @@ "all" ] }, - "has_commit_comments": { - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "type": "boolean" }, @@ -251155,14 +251295,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -252457,14 +252589,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -253414,14 +253538,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -260867,14 +260983,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -261937,14 +262045,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -264875,9 +264975,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -265797,9 +265894,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -267833,9 +267927,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -268755,9 +268846,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -271635,9 +271723,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -272557,9 +272642,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -279928,9 +280010,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -280850,9 +280929,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -317668,9 +317744,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -319655,9 +319728,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -321152,9 +321222,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -322987,9 +323054,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -338348,9 +338412,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -340514,9 +340575,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -342316,9 +342374,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -346143,9 +346198,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -354563,14 +354615,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -355716,14 +355760,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -360882,9 +360918,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -362308,9 +362341,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -387930,14 +387960,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -392102,14 +392124,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -395265,9 +395279,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "forks_count": { "type": "integer" }, @@ -398618,9 +398629,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -399886,12 +399894,6 @@ "all" ] }, - "has_commit_comments": { - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "type": "boolean" }, @@ -400670,14 +400672,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -401972,14 +401966,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -402929,14 +402915,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -415326,9 +415304,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -416886,9 +416861,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -419866,14 +419838,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -424005,14 +423969,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -434321,14 +434277,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -440069,14 +440017,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -445613,14 +445553,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -449984,14 +449916,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -454113,14 +454037,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -458039,14 +457955,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -464355,14 +464263,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -468368,14 +468268,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -472465,14 +472357,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -476584,14 +476468,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -494142,14 +494018,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -499308,14 +499176,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -503331,14 +503191,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -507322,14 +507174,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -511418,14 +511262,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -526212,14 +526048,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -537647,9 +537475,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -544428,14 +544253,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -545581,14 +545398,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -549017,14 +548826,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -550163,14 +549964,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -557064,14 +556857,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -558210,14 +557995,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -561914,14 +561691,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -563060,14 +562829,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -565807,9 +565568,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -567609,9 +567367,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -575091,14 +574846,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -576244,14 +575991,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -579766,14 +579505,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -580919,14 +580650,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -589760,6 +589483,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": { @@ -590652,6 +590401,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": { @@ -593085,6 +592860,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": { @@ -625031,12 +624832,6 @@ "all" ] }, - "has_commit_comments": { - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "type": "boolean" }, @@ -625815,14 +625610,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -627117,14 +626904,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -628074,14 +627853,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -633995,9 +633766,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -635506,12 +635274,6 @@ "all" ] }, - "has_commit_comments": { - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "type": "boolean" }, @@ -636290,14 +636052,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -637592,14 +637346,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -638549,14 +638295,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -640195,9 +639933,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -642592,9 +642327,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -644282,9 +644014,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -646736,14 +646465,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -649614,9 +649335,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -655324,9 +655042,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -660836,9 +660551,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -663193,9 +662905,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -664995,9 +664704,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -667106,9 +666812,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -669264,9 +668967,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -671238,9 +670938,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -674122,12 +673819,6 @@ "all" ] }, - "has_commit_comments": { - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "type": "boolean" }, @@ -674906,14 +674597,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -676208,14 +675891,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -677165,14 +676840,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -679742,9 +679409,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -681804,9 +681468,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -683601,9 +683262,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -689599,14 +689257,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -692544,14 +692194,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -703519,9 +703161,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -704835,9 +704474,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -707487,14 +707123,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -708831,12 +708459,6 @@ "all" ] }, - "has_commit_comments": { - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "type": "boolean" }, @@ -709615,14 +709237,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -710917,14 +710531,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -711874,14 +711480,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -713841,9 +713439,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -717306,14 +716901,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -718407,14 +717994,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -719825,9 +719404,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -723946,14 +723522,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -727797,14 +727365,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -728950,14 +728510,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -733831,9 +733383,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -736942,14 +736491,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -741114,14 +740655,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -744277,9 +743810,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "forks_count": { "type": "integer" }, @@ -749599,14 +749129,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -753771,14 +753293,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -756934,9 +756448,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "forks_count": { "type": "integer" }, @@ -762266,14 +761777,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -766438,14 +765941,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -769601,9 +769096,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "forks_count": { "type": "integer" }, @@ -776205,9 +775697,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -777582,9 +777071,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -786185,14 +785671,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -790036,14 +789514,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -791189,14 +790659,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -802164,14 +801626,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -806336,14 +805790,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -809499,9 +808945,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "forks_count": { "type": "integer" }, @@ -814817,14 +814260,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -818989,14 +818424,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -822152,9 +821579,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "forks_count": { "type": "integer" }, @@ -825529,9 +824953,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -828135,14 +827556,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -829101,14 +828514,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -830092,9 +829497,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -831922,14 +831324,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -833912,14 +833306,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -835902,14 +835288,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -838072,14 +837450,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -840410,14 +839780,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -842994,9 +842356,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -845284,14 +844643,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -848033,9 +847384,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -850323,14 +849671,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -853072,9 +852412,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -855362,14 +854699,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -858124,9 +857453,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -860414,14 +859740,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -863527,14 +862845,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -866329,14 +865639,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -869125,14 +868427,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -871607,14 +870901,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -874216,14 +873502,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -876650,14 +875928,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -879170,14 +878440,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -881608,14 +880870,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -883988,14 +883242,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -886464,14 +885710,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -888692,14 +887930,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -890703,14 +889933,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -894874,14 +894096,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -897050,14 +896264,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -900003,14 +899209,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -902955,14 +902153,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -905907,14 +905097,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -908859,14 +908041,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -911811,14 +910985,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -914763,14 +913929,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -917715,14 +916873,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -920667,14 +919817,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -922710,14 +921852,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -924753,14 +923887,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -927400,14 +926526,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -931865,14 +930983,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -933011,14 +932121,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -934968,14 +934070,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -937139,14 +936233,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -940272,14 +939358,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -943343,14 +942421,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -947874,14 +946944,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -951509,14 +950571,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -954058,14 +953112,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -956544,14 +955590,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -959246,14 +958284,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -961949,14 +960979,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -964671,14 +963693,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -967158,14 +966172,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -969643,14 +968649,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -972155,14 +971153,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -974683,14 +973673,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -977169,14 +976151,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -979654,14 +978628,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -982139,14 +981105,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -984413,14 +983371,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -986628,14 +985578,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -989216,14 +988158,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -991744,14 +990678,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -994230,14 +993156,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -996715,14 +995633,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -999639,14 +998549,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1001943,14 +1000845,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1004972,14 +1003866,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1008099,14 +1006985,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1011131,14 +1010009,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1014190,14 +1013060,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1017363,14 +1016225,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1020502,14 +1019356,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1022650,14 +1021496,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1025682,14 +1024520,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1030204,14 +1029034,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1034718,14 +1033540,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1039250,14 +1038064,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1043772,14 +1042578,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1048293,14 +1047091,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1051026,14 +1049816,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1054709,14 +1053491,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1057252,14 +1056026,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1058518,14 +1057284,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1061250,14 +1060008,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1064933,14 +1063683,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1067476,14 +1066218,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1068742,14 +1067476,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1071474,14 +1070200,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1074017,14 +1072735,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1076114,14 +1074824,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1078966,14 +1077668,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1081698,14 +1080392,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1084241,14 +1082927,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1086338,14 +1085016,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1089190,14 +1087860,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1093668,14 +1092330,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1098268,14 +1096922,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1102639,14 +1101285,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1107204,14 +1105842,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1111652,14 +1110282,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1116070,14 +1114692,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1120449,14 +1119063,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1125012,14 +1123618,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1128441,11 +1127039,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", @@ -1132405,14 +1130998,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1136775,14 +1135360,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1141150,14 +1139727,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1144618,11 +1143187,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean" - }, "homepage": { "type": [ "string", @@ -1148555,14 +1147119,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1153000,14 +1151556,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1157479,14 +1156027,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1161899,14 +1160439,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1166276,14 +1164808,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1170646,14 +1169170,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1175090,14 +1173606,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1177125,14 +1175633,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1179158,14 +1177658,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1181234,14 +1179726,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1183469,14 +1181953,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1185706,14 +1184182,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1187940,14 +1186408,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1190169,14 +1188629,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1192402,14 +1190854,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1194525,14 +1192969,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1196652,14 +1195088,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1198745,14 +1197173,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1200837,14 +1199257,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1203064,14 +1201476,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1205231,14 +1203635,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1207266,14 +1205662,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1209385,14 +1207773,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1211572,14 +1209952,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1213755,14 +1212127,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1215939,14 +1214303,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1218165,14 +1216521,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1220349,14 +1218697,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1222440,14 +1220780,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1224531,14 +1222863,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1226669,14 +1224993,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1228806,14 +1227122,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1230963,14 +1229271,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1233201,14 +1231501,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1235352,14 +1233644,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1238243,14 +1236527,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1240879,14 +1239155,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1243016,14 +1241284,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1248387,14 +1246647,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1250734,14 +1248986,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1252893,14 +1251137,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1255060,14 +1253296,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1257242,14 +1255470,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1259534,14 +1257754,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1261696,14 +1259908,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1263739,14 +1261943,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1265786,14 +1263982,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1267846,14 +1266034,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1269889,14 +1268069,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1272051,14 +1270223,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1274218,14 +1272382,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1276411,14 +1274567,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1278572,14 +1276720,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1293800,14 +1291940,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1295701,11 +1293833,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean" - }, "homepage": { "type": [ "string", @@ -1296549,11 +1294676,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean" - }, "homepage": { "type": [ "string", @@ -1298995,14 +1297117,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1300781,11 +1298895,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "has_pages": { "type": "boolean" }, @@ -1301636,11 +1299745,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -1304084,14 +1302188,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1305883,11 +1303979,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -1306725,11 +1304816,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -1309173,14 +1307259,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1312175,14 +1310253,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1313321,14 +1311391,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1315337,14 +1313399,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1318339,14 +1316393,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1319485,14 +1317531,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1321501,14 +1319539,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1323591,11 +1321621,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean" - }, "homepage": { "type": [ "string", @@ -1324438,11 +1322463,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean" - }, "homepage": { "type": [ "string", @@ -1326877,14 +1324897,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1328674,11 +1326686,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -1329521,11 +1327528,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -1331979,14 +1329981,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1335043,14 +1333037,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1336189,14 +1334175,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1338205,14 +1336183,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1340003,11 +1337973,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -1340850,11 +1338815,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -1343291,14 +1341251,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1345135,11 +1343087,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -1345983,11 +1343930,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -1348430,14 +1346372,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1350230,11 +1348164,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -1351078,11 +1349007,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -1353524,14 +1351448,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1355614,11 +1353530,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean" - }, "homepage": { "type": [ "string", @@ -1356461,11 +1354372,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean" - }, "homepage": { "type": [ "string", @@ -1358900,14 +1356806,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1361901,14 +1359799,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1363047,14 +1360937,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1365063,14 +1362945,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1368065,14 +1365939,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1369211,14 +1367077,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1371227,14 +1369085,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1374229,14 +1372079,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1375375,14 +1373217,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1377391,14 +1375225,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1379561,11 +1377387,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -1380391,11 +1378212,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -1382702,14 +1380518,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1384867,11 +1382675,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -1385697,11 +1383500,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -1387998,14 +1385796,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1390184,11 +1387974,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -1391014,11 +1388799,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -1393316,14 +1391096,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1395111,11 +1392883,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -1395941,11 +1393708,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -1398254,14 +1396016,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1403300,14 +1401054,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1405317,11 +1403063,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -1406159,11 +1403900,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -1408611,14 +1406347,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1410422,11 +1408150,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -1411264,11 +1408987,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -1413716,14 +1411434,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1415669,11 +1413379,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -1416511,11 +1414216,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -1418956,14 +1416656,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1420770,11 +1418462,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -1421612,11 +1419299,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -1424048,14 +1421730,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1425980,11 +1423654,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -1426813,11 +1424482,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -1429127,14 +1426791,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1431131,11 +1428787,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -1431930,11 +1429581,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -1434209,14 +1431855,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1436397,11 +1434035,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -1437190,11 +1434823,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -1439458,14 +1437086,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1441660,11 +1439280,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -1442502,11 +1440117,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -1444948,14 +1442558,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1446854,11 +1444456,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -1447702,11 +1445299,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -1450149,14 +1447741,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1451992,11 +1449576,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -1452840,11 +1450419,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -1455286,14 +1452860,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1457082,11 +1454648,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -1457927,11 +1455488,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -1460361,14 +1457917,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1461962,11 +1459510,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -1464648,14 +1462191,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1467187,14 +1464722,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1469622,14 +1467149,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1472058,14 +1469577,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1474547,14 +1472058,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1476989,14 +1474492,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1479427,14 +1476922,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1481862,14 +1479349,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1484300,14 +1481779,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1486290,14 +1483761,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1490241,14 +1487704,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1494192,14 +1491647,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1496183,14 +1493630,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1498174,14 +1495613,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1500173,14 +1497604,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1502222,14 +1499645,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1504207,14 +1501622,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1506204,14 +1503611,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1508195,14 +1505594,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1510213,14 +1507604,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1512205,14 +1509588,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1515517,14 +1512892,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1518829,14 +1516196,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1525239,14 +1522598,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1527231,14 +1524582,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1529395,14 +1526738,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1531569,14 +1528904,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1533732,14 +1531059,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1535895,14 +1533214,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1538898,14 +1536209,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1541733,14 +1539036,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1544826,14 +1542121,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1547837,14 +1545124,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1550672,14 +1547951,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1553507,14 +1550778,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1556510,14 +1553773,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1559345,14 +1556600,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1561181,14 +1558428,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1563387,14 +1560626,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1565583,14 +1562814,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1567779,14 +1565002,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1569838,12 +1567053,6 @@ "all" ] }, - "has_commit_comments": { - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "type": "boolean" }, @@ -1570622,14 +1567831,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1571924,14 +1569125,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1572881,14 +1570074,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1574803,14 +1571988,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1577116,14 +1574293,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1579446,14 +1576615,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1581764,14 +1578925,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1584140,14 +1581293,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1586513,14 +1583658,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1588827,14 +1585964,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1590825,14 +1587954,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1593319,14 +1590440,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1596084,14 +1593197,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1598627,14 +1595732,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1600724,14 +1597821,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1603576,14 +1600665,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1606310,14 +1603391,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1608853,14 +1605926,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1610950,14 +1608015,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1613802,14 +1610859,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1616536,14 +1613585,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1619079,14 +1616120,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1621176,14 +1618209,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1624028,14 +1621053,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1626762,14 +1623779,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1629305,14 +1626314,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1631402,14 +1628403,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1634254,14 +1631247,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1636240,14 +1633225,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1645043,14 +1642020,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1647036,14 +1644005,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1649029,14 +1645990,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1652076,14 +1649029,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1655161,14 +1652106,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1658069,14 +1655006,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1660978,14 +1657907,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1664273,14 +1661194,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1667550,14 +1664463,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, diff --git a/descriptions-next/api.github.com/dereferenced/api.github.com.2026-03-10.deref.yaml b/descriptions-next/api.github.com/dereferenced/api.github.com.2026-03-10.deref.yaml index 295af1ebd..522efcf9b 100644 --- a/descriptions-next/api.github.com/dereferenced/api.github.com.2026-03-10.deref.yaml +++ b/descriptions-next/api.github.com/dereferenced/api.github.com.2026-03-10.deref.yaml @@ -3376,12 +3376,6 @@ paths: - collaborators_only examples: - all - has_commit_comments: - description: Whether commit comments are enabled. - default: true - type: boolean - examples: - - true archived: description: Whether the repository is archived. default: false @@ -12313,8 +12307,6 @@ paths: enum: - all - collaborators_only - has_commit_comments: - type: boolean forks_count: type: integer mirror_url: @@ -17029,8 +17021,6 @@ paths: enum: - all - collaborators_only - has_commit_comments: - type: boolean archived: type: boolean disabled: @@ -25436,6 +25426,8 @@ paths: created: '2011-01-26T19:14:43Z' updated_at: '2011-01-26T19:14:43Z' attestation_id: 456 + '403': *27 + '404': *6 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -25597,6 +25589,8 @@ paths: items: *161 examples: default: *162 + '403': *27 + '404': *6 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -25763,6 +25757,8 @@ paths: status: active created_at: '2023-10-01T12:00:00Z' updated_at: '2023-10-01T12:00:00Z' + '403': *27 + '404': *6 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -38950,6 +38946,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 @@ -38980,6 +38985,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 @@ -39017,6 +39052,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: @@ -39077,11 +39113,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 @@ -39104,11 +39143,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: @@ -39135,6 +39221,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 @@ -39169,6 +39264,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 @@ -39204,6 +39308,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 @@ -39329,6 +39463,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: @@ -39414,12 +39549,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 @@ -43547,10 +43741,6 @@ paths: - collaborators_only examples: - all - has_commit_comments: - type: boolean - examples: - - true archived: type: boolean disabled: @@ -91872,6 +92062,7 @@ paths: responses: '204': description: Response + '404': *6 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -91989,6 +92180,7 @@ paths: schema: *570 examples: default: *574 + '404': *6 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -92174,6 +92366,7 @@ paths: responses: '204': description: Response + '404': *6 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -98585,8 +98778,6 @@ paths: enum: - all - collaborators_only - has_commit_comments: - type: boolean archived: type: boolean disabled: @@ -110793,12 +110984,6 @@ webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - default: true - type: boolean - examples: - - true archived: description: Whether the repository is archived. default: false @@ -145673,10 +145858,6 @@ 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 @@ -150158,10 +150339,6 @@ webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - default: true - type: boolean homepage: type: - string @@ -161961,10 +162138,6 @@ webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - default: true - type: boolean homepage: type: - string @@ -162619,10 +162792,6 @@ webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - default: true - type: boolean homepage: type: - string @@ -164393,10 +164562,6 @@ webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true has_pages: type: boolean has_projects: @@ -165057,10 +165222,6 @@ webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -166842,10 +167003,6 @@ webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -167496,10 +167653,6 @@ webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -169516,10 +169669,6 @@ webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - default: true - type: boolean homepage: type: - string @@ -170175,10 +170324,6 @@ webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - default: true - type: boolean homepage: type: - string @@ -171950,10 +172095,6 @@ webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -172611,10 +172752,6 @@ webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -174534,10 +174671,6 @@ webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -175195,10 +175328,6 @@ webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -176976,10 +177105,6 @@ webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -177634,10 +177759,6 @@ webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -179418,10 +179539,6 @@ webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -180076,10 +180193,6 @@ webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -182490,10 +182603,6 @@ webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -183134,10 +183243,6 @@ webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -185104,10 +185209,6 @@ webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -185748,10 +185849,6 @@ webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -187419,10 +187516,6 @@ webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -188063,10 +188156,6 @@ webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -189735,10 +189824,6 @@ webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -190379,10 +190464,6 @@ webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -194588,10 +194669,6 @@ webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -195237,10 +195314,6 @@ webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -197037,10 +197110,6 @@ webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -197693,10 +197762,6 @@ webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -199604,10 +199669,6 @@ webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -200260,10 +200321,6 @@ webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -202056,10 +202113,6 @@ webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -202712,10 +202765,6 @@ webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -204588,10 +204637,6 @@ webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -205234,10 +205279,6 @@ webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -206916,10 +206957,6 @@ webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -207518,10 +207555,6 @@ webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -209469,10 +209502,6 @@ webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -210067,10 +210096,6 @@ webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -212016,10 +212041,6 @@ webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -212670,10 +212691,6 @@ webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -214450,10 +214467,6 @@ webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -215108,10 +215121,6 @@ webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -216892,10 +216901,6 @@ webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -217550,10 +217555,6 @@ webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -219322,10 +219323,6 @@ webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -219978,10 +219975,6 @@ webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -221627,10 +221620,6 @@ webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string diff --git a/descriptions-next/api.github.com/dereferenced/api.github.com.deref.json b/descriptions-next/api.github.com/dereferenced/api.github.com.deref.json index 92deb8009..f8310dac2 100644 --- a/descriptions-next/api.github.com/dereferenced/api.github.com.deref.json +++ b/descriptions-next/api.github.com/dereferenced/api.github.com.deref.json @@ -9244,14 +9244,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -32411,14 +32403,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -36936,14 +36920,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -40273,9 +40249,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "forks_count": { "type": "integer" }, @@ -57151,14 +57124,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -59927,14 +59892,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -68524,14 +68481,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -73049,14 +72998,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -76386,9 +76327,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "forks_count": { "type": "integer" }, @@ -79837,9 +79775,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -81240,9 +81175,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -93957,14 +93889,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -95875,14 +95799,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -98935,9 +98851,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -101631,14 +101544,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -102814,14 +102719,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -105467,9 +105364,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -107279,9 +107173,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -108202,6 +108093,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": { @@ -108478,6 +108421,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": { @@ -108705,6 +108700,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": { @@ -121132,9 +121179,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -124305,9 +124349,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -128276,9 +128317,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -134321,9 +134359,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -135806,9 +135841,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -139107,14 +139139,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -143632,14 +143656,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -146969,9 +146985,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "forks_count": { "type": "integer" }, @@ -161991,14 +162004,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -165880,9 +165885,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -168317,9 +168319,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -172502,14 +172501,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -174734,14 +174725,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -176993,14 +176976,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -179000,9 +178975,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -183507,9 +183479,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -184898,9 +184867,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -188315,9 +188281,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -190635,9 +190598,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -191267,6 +191227,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", @@ -191296,6 +191267,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" @@ -191448,7 +191459,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" ], @@ -191514,12 +191525,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": { @@ -191537,13 +191548,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" ] }, @@ -191574,6 +191634,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" + } } } } @@ -191617,6 +191688,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", @@ -191650,6 +191732,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" @@ -191981,6 +192103,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", @@ -192010,6 +192143,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" @@ -192078,7 +192251,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" ], @@ -192176,16 +192349,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 + ] + } } } } @@ -196739,14 +196975,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -200957,14 +201185,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -202232,14 +202452,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -208782,14 +208994,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -213000,14 +213204,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -214275,14 +214471,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -226465,9 +226653,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -227812,12 +227997,6 @@ "all" ] }, - "has_commit_comments": { - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "type": "boolean" }, @@ -228605,14 +228784,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -230035,14 +230206,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -231114,14 +231277,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -248602,9 +248757,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -256258,9 +256410,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -259747,12 +259896,6 @@ "all" ] }, - "has_commit_comments": { - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "type": "boolean" }, @@ -260540,14 +260683,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -261970,14 +262105,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -263049,14 +263176,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -265272,12 +265391,6 @@ "all" ] }, - "has_commit_comments": { - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "type": "boolean" }, @@ -266065,14 +266178,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -267495,14 +267600,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -268574,14 +268671,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -276169,14 +276258,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -277361,14 +277442,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -280415,9 +280488,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -281351,9 +281421,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -283401,9 +283468,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -284337,9 +284401,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -287231,9 +287292,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -288167,9 +288225,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -295575,9 +295630,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -296511,9 +296563,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -333389,9 +333438,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -335390,9 +335436,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -336901,9 +336944,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -338750,9 +338790,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -354152,9 +354189,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -356332,9 +356366,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -358148,9 +358179,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -361989,9 +362017,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -370613,14 +370638,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -371888,14 +371905,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -377255,9 +377264,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -378695,9 +378701,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -404675,14 +404678,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -409200,14 +409195,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -412537,9 +412524,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "forks_count": { "type": "integer" }, @@ -415893,9 +415877,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -417178,12 +417159,6 @@ "all" ] }, - "has_commit_comments": { - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "type": "boolean" }, @@ -417971,14 +417946,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -419401,14 +419368,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -420480,14 +420439,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -433013,9 +432964,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -434587,9 +434535,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -437757,14 +437702,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -442256,14 +442193,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -452944,14 +452873,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -459045,14 +458966,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -464942,14 +464855,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -469673,14 +469578,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -474174,14 +474071,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -478453,14 +478342,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -485122,14 +485003,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -489488,14 +489361,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -493938,14 +493803,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -498410,14 +498267,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -516321,14 +516170,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -521840,14 +521681,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -526216,14 +526049,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -530560,14 +530385,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -535009,14 +534826,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -550156,14 +549965,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -561768,9 +561569,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -568753,14 +568551,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -570028,14 +569818,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -573855,14 +573637,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -575123,14 +574897,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -582437,14 +582203,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -583705,14 +583463,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -587822,14 +587572,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -589090,14 +588832,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -592060,9 +591794,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -593876,9 +593607,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -601562,14 +601290,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -602837,14 +602557,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -606750,14 +606462,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -608025,14 +607729,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -617064,6 +616760,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": { @@ -617956,6 +617678,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": { @@ -620389,6 +620137,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": { @@ -652681,12 +652455,6 @@ "all" ] }, - "has_commit_comments": { - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "type": "boolean" }, @@ -653474,14 +653242,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -654904,14 +654664,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -655983,14 +655735,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -662040,9 +661784,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -663568,12 +663309,6 @@ "all" ] }, - "has_commit_comments": { - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "type": "boolean" }, @@ -664361,14 +664096,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -665791,14 +665518,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -666870,14 +666589,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -668652,9 +668363,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -671063,9 +670771,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -672767,9 +672472,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -675416,14 +675118,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -678442,9 +678136,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -684155,9 +683846,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -689775,9 +689463,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -692146,9 +691831,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -693962,9 +693644,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -696087,9 +695766,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -698259,9 +697935,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -700247,9 +699920,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -703148,12 +702818,6 @@ "all" ] }, - "has_commit_comments": { - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "type": "boolean" }, @@ -703941,14 +703605,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -705371,14 +705027,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -706450,14 +706098,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -709163,9 +708803,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -711239,9 +710876,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -713050,9 +712684,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -719068,14 +718699,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -722305,14 +721928,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -728866,14 +728481,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -731160,14 +730767,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -733432,14 +733031,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -735598,9 +735189,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -737838,9 +737426,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -739168,9 +738753,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -741840,14 +741422,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -743303,12 +742877,6 @@ "all" ] }, - "has_commit_comments": { - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "type": "boolean" }, @@ -744096,14 +743664,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -745526,14 +745086,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -746605,14 +746157,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -748718,9 +748262,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -752213,14 +751754,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -753436,14 +752969,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -754970,9 +754495,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -759281,14 +758803,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -763499,14 +763013,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -764774,14 +764280,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -769950,9 +769448,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -773251,14 +772746,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -777776,14 +777263,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -781113,9 +780592,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "forks_count": { "type": "integer" }, @@ -786614,14 +786090,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -791139,14 +790607,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -794476,9 +793936,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "forks_count": { "type": "integer" }, @@ -799987,14 +799444,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -804512,14 +803961,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -807849,9 +807290,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "forks_count": { "type": "integer" }, @@ -814682,9 +814120,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -816073,9 +815508,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -824866,14 +824298,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -829084,14 +828508,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -830359,14 +829775,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -841711,14 +841119,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -846236,14 +845636,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -849573,9 +848965,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "forks_count": { "type": "integer" }, @@ -855070,14 +854459,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -859595,14 +858976,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -862932,9 +862305,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "forks_count": { "type": "integer" }, @@ -866312,9 +865682,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -868938,14 +868305,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -870026,14 +869385,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -871133,9 +870484,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -872974,14 +872322,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -875001,14 +874341,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -877028,14 +876360,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -879235,14 +878559,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -881610,14 +880926,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -884234,9 +883542,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -886535,14 +885840,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -889324,9 +888621,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -891625,14 +890919,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -894414,9 +893700,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -896715,14 +895998,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -899517,9 +898792,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "type": "boolean" - }, "archived": { "type": "boolean" }, @@ -901818,14 +901090,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -904968,14 +904232,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -907807,14 +907063,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -910640,14 +909888,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -913159,14 +912399,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -915805,14 +915037,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -918276,14 +917500,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -920833,14 +920049,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -923308,14 +922516,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -925725,14 +924925,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -928238,14 +927430,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -930503,14 +929687,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -932551,14 +931727,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -936759,14 +935927,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -938972,14 +938132,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -942015,14 +941167,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -945057,14 +944201,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -948099,14 +947235,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -951141,14 +950269,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -954183,14 +953303,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -957225,14 +956337,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -960267,14 +959371,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -963309,14 +962405,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -965389,14 +964477,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -967469,14 +966549,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -970153,14 +969225,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -974848,14 +973912,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -976116,14 +975172,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -978293,14 +977341,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -980501,14 +979541,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -983671,14 +982703,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -986779,14 +985803,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -991347,14 +990363,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -995019,14 +994027,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -997605,14 +996605,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1000128,14 +999120,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1002867,14 +1001851,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1005607,14 +1004583,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1008366,14 +1007334,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1010890,14 +1009850,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1013412,14 +1012364,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1015961,14 +1014905,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1018526,14 +1017462,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1021049,14 +1019977,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1023571,14 +1022491,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1026093,14 +1025005,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1028404,14 +1027308,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1030656,14 +1029552,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1033281,14 +1032169,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1035846,14 +1034726,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1038369,14 +1037241,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1040891,14 +1039755,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1043852,14 +1042708,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1046193,14 +1045041,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1049259,14 +1048099,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1052423,14 +1051255,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1055492,14 +1054316,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1058588,14 +1057404,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1061798,14 +1060606,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1064974,14 +1063774,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1067159,14 +1065951,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1070228,14 +1069012,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1074787,14 +1073563,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1079338,14 +1078106,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1083907,14 +1082667,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1088466,14 +1087218,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1093024,14 +1091768,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1095973,14 +1094709,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1100009,14 +1098737,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1102735,14 +1101455,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1104114,14 +1102826,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1107062,14 +1105766,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1111098,14 +1109794,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1113824,14 +1112512,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1115203,14 +1113883,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1118151,14 +1116823,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1120877,14 +1119541,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1123266,14 +1121922,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1126292,14 +1124940,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1129240,14 +1127880,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1131966,14 +1130598,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1134355,14 +1132979,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1137381,14 +1135997,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1141896,14 +1140504,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1146533,14 +1145133,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1150941,14 +1149533,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1155543,14 +1154127,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1160028,14 +1158604,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1164483,14 +1163051,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1168899,14 +1167459,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1173499,14 +1172051,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1176965,11 +1175509,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", @@ -1180929,14 +1179468,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1185336,14 +1183867,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1189748,14 +1188271,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1193253,11 +1191768,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean" - }, "homepage": { "type": [ "string", @@ -1197190,14 +1195700,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1201672,14 +1200174,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1206188,14 +1204682,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1210645,14 +1209131,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1215059,14 +1213537,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1219466,14 +1217936,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1223947,14 +1222409,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1226019,14 +1224473,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1228089,14 +1226535,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1230202,14 +1228640,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1232474,14 +1230904,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1234748,14 +1233170,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1237019,14 +1235433,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1239285,14 +1237691,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1241555,14 +1239953,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1243715,14 +1242105,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1245879,14 +1244261,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1248009,14 +1246383,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1250138,14 +1248504,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1252402,14 +1250760,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1254606,14 +1252956,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1256678,14 +1255020,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1258834,14 +1257168,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1261058,14 +1259384,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1263278,14 +1261596,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1265499,14 +1263809,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1267762,14 +1266064,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1269983,14 +1268277,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1272111,14 +1270397,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1274239,14 +1272517,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1276414,14 +1274684,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1278588,14 +1276850,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1280782,14 +1279036,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1283057,14 +1281303,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1285245,14 +1283483,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1288173,14 +1286403,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1290846,14 +1289068,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1293020,14 +1291234,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1298428,14 +1296634,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1300812,14 +1299010,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1303008,14 +1301198,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1305212,14 +1303394,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1307431,14 +1305605,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1309760,14 +1307926,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1311959,14 +1310117,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1314039,14 +1312189,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1316123,14 +1314265,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1318220,14 +1316354,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1320300,14 +1318426,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1322499,14 +1320617,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1324703,14 +1322813,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1326933,14 +1325035,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1329131,14 +1327225,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1344396,14 +1342482,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1346334,11 +1344412,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean" - }, "homepage": { "type": [ "string", @@ -1347187,11 +1345260,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean" - }, "homepage": { "type": [ "string", @@ -1349645,14 +1347713,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1351498,11 +1349558,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "has_pages": { "type": "boolean" }, @@ -1352358,11 +1350413,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -1354818,14 +1352868,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1356684,11 +1354726,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -1357531,11 +1355568,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -1359991,14 +1358023,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1363253,14 +1361277,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1364521,14 +1362537,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1366757,14 +1364765,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1369989,14 +1367989,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1371257,14 +1369249,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1373493,14 +1371477,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1375620,11 +1373596,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean" - }, "homepage": { "type": [ "string", @@ -1376467,11 +1374438,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean" - }, "homepage": { "type": [ "string", @@ -1378961,14 +1376927,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1380795,11 +1378753,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -1381642,11 +1379595,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -1384107,14 +1382055,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1387417,14 +1385357,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1388685,14 +1386617,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1390921,14 +1388845,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1392756,11 +1390672,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -1393603,11 +1391514,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -1396051,14 +1393957,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1397948,11 +1395846,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -1398801,11 +1396694,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -1401260,14 +1399148,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1403127,11 +1401007,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -1403980,11 +1401855,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -1406438,14 +1404308,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1408595,11 +1406457,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean" - }, "homepage": { "type": [ "string", @@ -1409442,11 +1407299,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean" - }, "homepage": { "type": [ "string", @@ -1411936,14 +1409788,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1415167,14 +1413011,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1416435,14 +1414271,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1418671,14 +1416499,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1421903,14 +1419723,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1423171,14 +1420983,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1425407,14 +1423211,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1428639,14 +1426435,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1429907,14 +1427695,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1432143,14 +1429923,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1434350,11 +1432122,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -1435185,11 +1432952,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -1437508,14 +1435270,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1439740,11 +1437494,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -1440575,11 +1438324,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -1442888,14 +1440632,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1445141,11 +1442877,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -1445976,11 +1443707,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -1448290,14 +1446016,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1450152,11 +1447870,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -1450987,11 +1448700,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -1453312,14 +1451020,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1458432,14 +1456132,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1460502,11 +1458194,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -1461349,11 +1459036,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -1463813,14 +1461495,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1465661,11 +1463335,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -1466508,11 +1464177,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -1468972,14 +1466636,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1471008,11 +1468664,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -1471855,11 +1469506,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -1474312,14 +1471958,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1476163,11 +1473801,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -1477010,11 +1474643,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -1479458,14 +1477086,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1481473,11 +1479093,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -1482311,11 +1479926,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -1484637,14 +1482247,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1486708,11 +1484310,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -1487507,11 +1485104,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -1489793,14 +1487385,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1492034,11 +1489618,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -1492827,11 +1490406,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -1495102,14 +1492676,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1497357,11 +1494923,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -1498204,11 +1495765,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -1500662,14 +1498218,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1502635,11 +1500183,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -1503488,11 +1501031,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -1505947,14 +1503485,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1507857,11 +1505387,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -1508710,11 +1506235,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -1511168,14 +1508688,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1513031,11 +1510543,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -1513881,11 +1511388,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -1516327,14 +1513829,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1517995,11 +1515489,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "type": "boolean", - "default": true - }, "homepage": { "type": [ "string", @@ -1520681,14 +1518170,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1523257,14 +1520738,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1525729,14 +1523202,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1528202,14 +1525667,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1530728,14 +1528185,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1533207,14 +1530656,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1535682,14 +1533123,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1538154,14 +1535587,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1540629,14 +1538054,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1542656,14 +1540073,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1546712,14 +1544121,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1550768,14 +1548169,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1552796,14 +1550189,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1554824,14 +1552209,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1556860,14 +1554237,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1558946,14 +1556315,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1560968,14 +1558329,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1563002,14 +1560355,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1565030,14 +1562375,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1567085,14 +1564422,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1569114,14 +1566443,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1572463,14 +1569784,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1575812,14 +1573125,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1582259,14 +1579564,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1584288,14 +1581585,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1586489,14 +1583778,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1588700,14 +1585981,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1590900,14 +1588173,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1593100,14 +1590365,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1596140,14 +1593397,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1599012,14 +1596261,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1602142,14 +1599383,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1605190,14 +1602423,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1608062,14 +1605287,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1610934,14 +1608151,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1613974,14 +1611183,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1616846,14 +1614047,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1618719,14 +1615912,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1620962,14 +1618147,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1623238,14 +1620415,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1625514,14 +1622683,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1627651,12 +1624812,6 @@ "all" ] }, - "has_commit_comments": { - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "type": "boolean" }, @@ -1628444,14 +1625599,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1629874,14 +1627021,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1630953,14 +1628092,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1633008,14 +1630139,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1635358,14 +1632481,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1637725,14 +1634840,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1640080,14 +1637187,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1642493,14 +1639592,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1644903,14 +1641994,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1647254,14 +1644337,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1649289,14 +1646364,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1651820,14 +1648887,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1654801,14 +1651860,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1657527,14 +1654578,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1659916,14 +1656959,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1662942,14 +1659977,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1665892,14 +1662919,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1668618,14 +1665637,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1671007,14 +1668018,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1674033,14 +1671036,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1676983,14 +1673978,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1679709,14 +1676696,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1682098,14 +1679077,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1685124,14 +1682095,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1688074,14 +1685037,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1690800,14 +1687755,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1693189,14 +1690136,6 @@ "all" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1696215,14 +1693154,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1698238,14 +1695169,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1707078,14 +1704001,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1709108,14 +1706023,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1711138,14 +1708045,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1714222,14 +1711121,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1717344,14 +1714235,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1720289,14 +1717172,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1723235,14 +1720110,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1726567,14 +1723434,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, @@ -1729881,14 +1726740,6 @@ "collaborators_only" ] }, - "has_commit_comments": { - "description": "Whether commit comments are enabled.", - "default": true, - "type": "boolean", - "examples": [ - true - ] - }, "archived": { "description": "Whether the repository is archived.", "default": false, diff --git a/descriptions-next/api.github.com/dereferenced/api.github.com.deref.yaml b/descriptions-next/api.github.com/dereferenced/api.github.com.deref.yaml index 2de6a1ebc..415572f2e 100644 --- a/descriptions-next/api.github.com/dereferenced/api.github.com.deref.yaml +++ b/descriptions-next/api.github.com/dereferenced/api.github.com.deref.yaml @@ -3474,12 +3474,6 @@ paths: - collaborators_only examples: - all - has_commit_comments: - description: Whether commit comments are enabled. - default: true - type: boolean - examples: - - true archived: description: Whether the repository is archived. default: false @@ -12595,8 +12589,6 @@ paths: enum: - all - collaborators_only - has_commit_comments: - type: boolean forks_count: type: integer mirror_url: @@ -17586,8 +17578,6 @@ paths: enum: - all - collaborators_only - has_commit_comments: - type: boolean archived: type: boolean disabled: @@ -26037,6 +26027,8 @@ paths: created: '2011-01-26T19:14:43Z' updated_at: '2011-01-26T19:14:43Z' attestation_id: 456 + '403': *27 + '404': *6 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -26198,6 +26190,8 @@ paths: items: *161 examples: default: *162 + '403': *27 + '404': *6 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -26364,6 +26358,8 @@ paths: status: active created_at: '2023-10-01T12:00:00Z' updated_at: '2023-10-01T12:00:00Z' + '403': *27 + '404': *6 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -39663,6 +39659,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 @@ -39693,6 +39698,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 @@ -39730,6 +39765,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: @@ -39790,11 +39826,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 @@ -39817,11 +39856,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: @@ -39848,6 +39934,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 @@ -39882,6 +39977,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 @@ -39917,6 +40021,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 @@ -40042,6 +40176,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: @@ -40127,12 +40262,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 @@ -44348,10 +44542,6 @@ paths: - collaborators_only examples: - all - has_commit_comments: - type: boolean - examples: - - true archived: type: boolean disabled: @@ -93095,6 +93285,7 @@ paths: responses: '204': description: Response + '404': *6 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -93212,6 +93403,7 @@ paths: schema: *570 examples: default: *574 + '404': *6 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -93397,6 +93589,7 @@ paths: responses: '204': description: Response + '404': *6 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -99841,8 +100034,6 @@ paths: enum: - all - collaborators_only - has_commit_comments: - type: boolean archived: type: boolean disabled: @@ -111964,12 +112155,6 @@ webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - default: true - type: boolean - examples: - - true archived: description: Whether the repository is archived. default: false @@ -146869,10 +147054,6 @@ 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 @@ -151354,10 +151535,6 @@ webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - default: true - type: boolean homepage: type: - string @@ -163157,10 +163334,6 @@ webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - default: true - type: boolean homepage: type: - string @@ -163822,10 +163995,6 @@ webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - default: true - type: boolean homepage: type: - string @@ -165623,10 +165792,6 @@ webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true has_pages: type: boolean has_projects: @@ -166294,10 +166459,6 @@ webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -168106,10 +168267,6 @@ webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -168767,10 +168924,6 @@ webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -170814,10 +170967,6 @@ webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - default: true - type: boolean homepage: type: - string @@ -171473,10 +171622,6 @@ webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - default: true - type: boolean homepage: type: - string @@ -173295,10 +173440,6 @@ webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -173956,10 +174097,6 @@ webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -175892,10 +176029,6 @@ webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -176553,10 +176686,6 @@ webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -178347,10 +178476,6 @@ webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -179012,10 +179137,6 @@ webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -180823,10 +180944,6 @@ webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -181488,10 +181605,6 @@ webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -183929,10 +184042,6 @@ webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -184580,10 +184689,6 @@ webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -186577,10 +186682,6 @@ webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -187228,10 +187329,6 @@ webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -188926,10 +189023,6 @@ webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -189577,10 +189670,6 @@ webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -191276,10 +191365,6 @@ webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -191927,10 +192012,6 @@ webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -196176,10 +196257,6 @@ webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -196832,10 +196909,6 @@ webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -198644,10 +198717,6 @@ webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -199307,10 +199376,6 @@ webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -201253,10 +201318,6 @@ webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -201916,10 +201977,6 @@ webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -203724,10 +203781,6 @@ webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -204387,10 +204440,6 @@ webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -206298,10 +206347,6 @@ webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -206951,10 +206996,6 @@ webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -208660,10 +208701,6 @@ webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -209262,10 +209299,6 @@ webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -211226,10 +211259,6 @@ webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -211824,10 +211853,6 @@ webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -213786,10 +213811,6 @@ webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - type: boolean - default: true homepage: type: - string @@ -214447,10 +214468,6 @@ webhooks: enum: - all - collaborators_only - has_commit_comments: - description: Whether commit comments are enabled. - {"code":"deadline_exceeded","msg":"operation timed out"}