Argo · JSON Structure

Argo Workflows Node Status Structure

Status of a workflow node

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

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

Properties

id name displayName type templateName phase startedAt finishedAt message children inputs outputs

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-workflows-node-status-structure.json",
  "name": "NodeStatus",
  "description": "Status of a workflow node",
  "type": "object",
  "properties": {
    "id": {
      "type": "string"
    },
    "name": {
      "type": "string"
    },
    "displayName": {
      "type": "string"
    },
    "type": {
      "type": "string",
      "enum": [
        "Pod",
        "Steps",
        "StepGroup",
        "DAG",
        "TaskGroup",
        "Retry",
        "Skipped",
        "Suspend"
      ]
    },
    "templateName": {
      "type": "string"
    },
    "phase": {
      "type": "string"
    },
    "startedAt": {
      "type": "datetime"
    },
    "finishedAt": {
      "type": "datetime"
    },
    "message": {
      "type": "string"
    },
    "children": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "inputs": {
      "$ref": "#/components/schemas/Inputs"
    },
    "outputs": {
      "$ref": "#/components/schemas/Outputs"
    }
  }
}