{ "$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." } } } } }