Argo · Schema

CronWorkflow

A scheduled workflow resource

CNCFCI/CDGitOpsKubernetesOpen SourceProgressive DeliveryWorkflow Engine

Properties

Name Type Description
apiVersion string
kind string
metadata object
spec object
status object
View JSON Schema on GitHub

JSON Schema

argo-workflows-cron-workflow-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-cron-workflow-schema.json",
  "title": "CronWorkflow",
  "description": "A scheduled workflow resource",
  "type": "object",
  "properties": {
    "apiVersion": {
      "type": "string",
      "default": "argoproj.io/v1alpha1"
    },
    "kind": {
      "type": "string",
      "default": "CronWorkflow"
    },
    "metadata": {
      "$ref": "#/components/schemas/ObjectMeta"
    },
    "spec": {
      "$ref": "#/components/schemas/CronWorkflowSpec"
    },
    "status": {
      "$ref": "#/components/schemas/CronWorkflowStatus"
    }
  }
}