Argo · JSON Structure

Argo Workflows Arguments Structure

Arguments to pass to a template

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

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

Properties

parameters artifacts

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-arguments-structure.json",
  "name": "Arguments",
  "description": "Arguments to pass to a template",
  "type": "object",
  "properties": {
    "parameters": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Parameter"
      }
    },
    "artifacts": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Artifact"
      }
    }
  }
}