Argo · JSON Structure

Argo Cd Repository Structure

A registered Git or Helm chart repository.

Type: object Properties: 4
CNCFCI/CDGitOpsKubernetesOpen SourceProgressive DeliveryWorkflow Engine

Repository is a JSON Structure definition published by Argo, describing 4 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

repo type name connectionState

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/argo/refs/heads/main/json-structure/argo-cd-repository-structure.json",
  "name": "Repository",
  "description": "A registered Git or Helm chart repository.",
  "type": "object",
  "properties": {
    "repo": {
      "type": "uri",
      "description": "Repository URL."
    },
    "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."
        }
      }
    }
  }
}