Argo · Schema

WorkflowList

WorkflowList schema from Argo API

CNCFCI/CDGitOpsKubernetesOpen SourceProgressive DeliveryWorkflow Engine

Properties

Name Type Description
apiVersion string
metadata object
items array
View JSON Schema on GitHub

JSON Schema

argo-workflows-workflow-list-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-list-schema.json",
  "title": "WorkflowList",
  "description": "WorkflowList schema from Argo API",
  "type": "object",
  "properties": {
    "apiVersion": {
      "type": "string"
    },
    "metadata": {
      "type": "object",
      "properties": {
        "resourceVersion": {
          "type": "string"
        },
        "continue": {
          "type": "string"
        }
      }
    },
    "items": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Workflow"
      }
    }
  }
}