Argo · Schema

Repository

A registered Git or Helm chart repository.

CNCFCI/CDGitOpsKubernetesOpen SourceProgressive DeliveryWorkflow Engine

Properties

Name Type Description
repo string Repository URL.
type string Repository type.
name string Human-readable repository name.
connectionState object Current connection status.
View JSON Schema on GitHub

JSON Schema

argo-cd-repository-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/argo/refs/heads/main/json-schema/argo-cd-repository-schema.json",
  "title": "Repository",
  "description": "A registered Git or Helm chart repository.",
  "type": "object",
  "properties": {
    "repo": {
      "type": "string",
      "description": "Repository URL.",
      "format": "uri"
    },
    "type": {
      "type": "string",
      "description": "Repository type.",
      "enum": [
        "git",
        "helm"
      ]
    },
    "name": {
      "type": "string",
      "description": "Human-readable repository name."
    },
    "connectionState": {
      "type": "object",
      "description": "Current connection status.",
      "properties": {
        "status": {
          "type": "string",
          "description": "Connection status (Successful, Failed, Unknown)."
        },
        "message": {
          "type": "string",
          "description": "Status message."
        }
      }
    }
  }
}