Argo CD · JSON Structure

Argo Cd V1Alpha1 Resource Node Structure

ResourceNode contains information about a live Kubernetes resource and its relationships with other resources.

Type: object Properties: 7
Continuous DeliveryContainersDeploymentGitOpsKubernetesCNCFOpen Source

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

Properties

createdAt health images info networkingInfo parentRefs resourceVersion

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-cd/refs/heads/main/json-structure/argo-cd-v1alpha1-resource-node-structure.json",
  "name": "v1alpha1ResourceNode",
  "description": "ResourceNode contains information about a live Kubernetes resource and its relationships with other resources.",
  "type": "object",
  "properties": {
    "createdAt": {
      "$ref": "#/definitions/v1Time"
    },
    "health": {
      "$ref": "#/definitions/v1alpha1HealthStatus"
    },
    "images": {
      "description": "Images lists container images associated with the resource.\nThis is primarily useful for pods and other workload resources.",
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "info": {
      "description": "Info provides additional metadata or annotations about the resource.",
      "type": "array",
      "items": {
        "$ref": "#/definitions/v1alpha1InfoItem"
      }
    },
    "networkingInfo": {
      "$ref": "#/definitions/v1alpha1ResourceNetworkingInfo"
    },
    "parentRefs": {
      "description": "ParentRefs lists the parent resources that reference this resource.\nThis helps in understanding ownership and hierarchical relationships.",
      "type": "array",
      "items": {
        "$ref": "#/definitions/v1alpha1ResourceRef"
      }
    },
    "resourceVersion": {
      "description": "ResourceVersion indicates the version of the resource, used to track changes.",
      "type": "string"
    }
  },
  "allOf": [
    {
      "$ref": "#/definitions/v1alpha1ResourceRef"
    }
  ]
}