Argo Workflows · JSON Structure

Argo Workflows Io Argoproj Workflow V1Alpha1 Outputs Structure

Outputs hold parameters, artifacts, and results from a step

Type: object Properties: 4
CNCFContainersData ProcessingKubernetesMachine LearningOpen SourceWorkflow Engine

io.argoproj.workflow.v1alpha1.Outputs is a JSON Structure definition published by Argo Workflows, describing 4 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

artifacts exitCode parameters result

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-workflows/refs/heads/main/json-structure/argo-workflows-io-argoproj-workflow-v1alpha1-outputs-structure.json",
  "name": "io.argoproj.workflow.v1alpha1.Outputs",
  "description": "Outputs hold parameters, artifacts, and results from a step",
  "type": "object",
  "properties": {
    "artifacts": {
      "description": "Artifacts holds the list of output artifacts produced by a step",
      "type": "array",
      "items": {
        "$ref": "#/definitions/io.argoproj.workflow.v1alpha1.Artifact"
      },
      "x-kubernetes-patch-merge-key": "name",
      "x-kubernetes-patch-strategy": "merge"
    },
    "exitCode": {
      "description": "ExitCode holds the exit code of a script template",
      "type": "string"
    },
    "parameters": {
      "description": "Parameters holds the list of output parameters produced by a step",
      "type": "array",
      "items": {
        "$ref": "#/definitions/io.argoproj.workflow.v1alpha1.Parameter"
      },
      "x-kubernetes-patch-merge-key": "name",
      "x-kubernetes-patch-strategy": "merge"
    },
    "result": {
      "description": "Result holds the result (stdout) of a script or container template, or the response body of an HTTP template",
      "type": "string"
    }
  }
}