{
"$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-cluster-info-schema.json",
"title": "v1alpha1ClusterInfo",
"description": "v1alpha1ClusterInfo schema from Argo CD API",
"type": "object",
"properties": {
"apiVersions": {
"type": "array",
"title": "APIVersions contains list of API versions supported by the cluster",
"items": {
"type": "string"
}
},
"applicationsCount": {
"type": "integer",
"format": "int64",
"title": "ApplicationsCount is the number of applications managed by Argo CD on the cluster"
},
"cacheInfo": {
"$ref": "#/definitions/v1alpha1ClusterCacheInfo"
},
"connectionState": {
"$ref": "#/definitions/v1alpha1ConnectionState"
},
"serverVersion": {
"type": "string",
"title": "ServerVersion contains information about the Kubernetes version of the cluster"
}
}
}