Argo · JSON Structure

Argo Workflows Workflow Step Structure

A step in a steps template

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

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

Properties

name template arguments when withItems withParam continueOn

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-workflow-step-structure.json",
  "name": "WorkflowStep",
  "description": "A step in a steps template",
  "type": "object",
  "properties": {
    "name": {
      "type": "string"
    },
    "template": {
      "type": "string"
    },
    "arguments": {
      "$ref": "#/components/schemas/Arguments"
    },
    "when": {
      "type": "string"
    },
    "withItems": {
      "type": "array",
      "items": {}
    },
    "withParam": {
      "type": "string"
    },
    "continueOn": {
      "type": "object",
      "properties": {
        "error": {
          "type": "boolean"
        },
        "failed": {
          "type": "boolean"
        }
      }
    }
  }
}