Argo · Schema

Parameter

A workflow parameter

CNCFCI/CDGitOpsKubernetesOpen SourceProgressive DeliveryWorkflow Engine

Properties

Name Type Description
name string
value string
default string
enum array
description string
globalName string
View JSON Schema on GitHub

JSON Schema

argo-workflows-parameter-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-parameter-schema.json",
  "title": "Parameter",
  "description": "A workflow parameter",
  "type": "object",
  "properties": {
    "name": {
      "type": "string"
    },
    "value": {
      "type": "string"
    },
    "default": {
      "type": "string"
    },
    "enum": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "description": {
      "type": "string"
    },
    "globalName": {
      "type": "string"
    }
  }
}