Argo · JSON Structure

Argo Workflows Workflow List Structure

WorkflowList schema from Argo API

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

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

Properties

apiVersion metadata items

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-workflow-list-structure.json",
  "name": "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"
      }
    }
  }
}