Argo · Schema

WorkflowStep

A step in a steps template

CNCFCI/CDGitOpsKubernetesOpen SourceProgressive DeliveryWorkflow Engine

Properties

Name Type Description
name string
template string
arguments object
when string
withItems array
withParam string
continueOn object
View JSON Schema on GitHub

JSON Schema

argo-workflows-workflow-step-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/argo/refs/heads/main/json-schema/argo-workflows-workflow-step-schema.json",
  "title": "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"
        }
      }
    }
  }
}