Argo Workflows · Schema

io.argoproj.workflow.v1alpha1.Column

Column is a custom column that will be exposed in the Workflow List View.

CNCFContainersData ProcessingKubernetesMachine-LearningOpen-SourceWorkflow Engine

Properties

Name Type Description
key string The key of the label or annotation, e.g., "workflows.argoproj.io/completed".
name string The name of this column, e.g., "Workflow Completed".
type string The type of this column, "label" or "annotation".
View JSON Schema on GitHub

JSON Schema

argo-workflows-io-argoproj-workflow-v1alpha1-column-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/argo-workflows/refs/heads/main/json-schema/argo-workflows-io-argoproj-workflow-v1alpha1-column-schema.json",
  "title": "io.argoproj.workflow.v1alpha1.Column",
  "description": "Column is a custom column that will be exposed in the Workflow List View.",
  "type": "object",
  "properties": {
    "key": {
      "description": "The key of the label or annotation, e.g., \"workflows.argoproj.io/completed\".",
      "type": "string"
    },
    "name": {
      "description": "The name of this column, e.g., \"Workflow Completed\".",
      "type": "string"
    },
    "type": {
      "description": "The type of this column, \"label\" or \"annotation\".",
      "type": "string"
    }
  },
  "required": [
    "name",
    "type",
    "key"
  ]
}