{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/argo-cd/refs/heads/main/json-schema/argo-cd-v1alpha1-scm-provider-generator-gitea-schema.json", "title": "v1alpha1SCMProviderGeneratorGitea", "description": "SCMProviderGeneratorGitea defines a connection info specific to Gitea.", "type": "object", "properties": { "allBranches": { "description": "Scan all branches instead of just the default branch.", "type": "boolean" }, "api": { "description": "The Gitea URL to talk to. For example https://gitea.mydomain.com/.", "type": "string" }, "excludeArchivedRepos": { "description": "Exclude repositories that are archived.", "type": "boolean" }, "insecure": { "type": "boolean", "title": "Allow self-signed TLS / Certificates; default: false" }, "owner": { "description": "Gitea organization or user to scan. Required.", "type": "string" }, "tokenRef": { "$ref": "#/definitions/v1alpha1SecretRef" } } }