Argo CD · JSON Structure

Argo Cd V1 Event Structure

Event is a report of an event somewhere in the cluster. Events have a limited retention time and triggers and messages may evolve with time. Event consumers should not rely on the timing of an event with a given Reason reflecting a consistent underlying trigger, or the continued existence of events with that Reason. Events should be treated as informative, best-effort, supplemental data.

Type: object Properties: 15
Continuous DeliveryContainersDeploymentGitOpsKubernetesCNCFOpen Source

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

Properties

action count eventTime firstTimestamp involvedObject lastTimestamp message metadata reason related reportingComponent reportingInstance series source type

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-v1-event-structure.json",
  "name": "v1Event",
  "description": "Event is a report of an event somewhere in the cluster.  Events\nhave a limited retention time and triggers and messages may evolve\nwith time.  Event consumers should not rely on the timing of an event\nwith a given Reason reflecting a consistent underlying trigger, or the\ncontinued existence of events with that Reason.  Events should be\ntreated as informative, best-effort, supplemental data.",
  "type": "object",
  "properties": {
    "action": {
      "type": "string",
      "name": "What action was taken/failed regarding to the Regarding object.\n+optional"
    },
    "count": {
      "type": "int32",
      "name": "The number of times this event has occurred.\n+optional"
    },
    "eventTime": {
      "$ref": "#/definitions/v1MicroTime"
    },
    "firstTimestamp": {
      "$ref": "#/definitions/v1Time"
    },
    "involvedObject": {
      "$ref": "#/definitions/v1ObjectReference"
    },
    "lastTimestamp": {
      "$ref": "#/definitions/v1Time"
    },
    "message": {
      "type": "string",
      "name": "A human-readable description of the status of this operation.\nTODO: decide on maximum length.\n+optional"
    },
    "metadata": {
      "$ref": "#/definitions/v1ObjectMeta"
    },
    "reason": {
      "type": "string",
      "name": "This should be a short, machine understandable string that gives the reason\nfor the transition into the object's current status.\nTODO: provide exact specification for format.\n+optional"
    },
    "related": {
      "$ref": "#/definitions/v1ObjectReference"
    },
    "reportingComponent": {
      "type": "string",
      "name": "Name of the controller that emitted this Event, e.g. `kubernetes.io/kubelet`.\n+optional"
    },
    "reportingInstance": {
      "type": "string",
      "name": "ID of the controller instance, e.g. `kubelet-xyzf`.\n+optional"
    },
    "series": {
      "$ref": "#/definitions/v1EventSeries"
    },
    "source": {
      "$ref": "#/definitions/v1EventSource"
    },
    "type": {
      "type": "string",
      "name": "Type of this event (Normal, Warning), new types could be added in the future\n+optional"
    }
  }
}