Argo · Schema

CronWorkflowStatus

Status of a cron workflow

CNCFCI/CDGitOpsKubernetesOpen SourceProgressive DeliveryWorkflow Engine

Properties

Name Type Description
active array
lastScheduledTime string
conditions array
View JSON Schema on GitHub

JSON Schema

argo-workflows-cron-workflow-status-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-status-schema.json",
  "title": "CronWorkflowStatus",
  "description": "Status of a cron workflow",
  "type": "object",
  "properties": {
    "active": {
      "type": "array",
      "items": {
        "type": "object"
      }
    },
    "lastScheduledTime": {
      "type": "string",
      "format": "date-time"
    },
    "conditions": {
      "type": "array",
      "items": {
        "type": "object"
      }
    }
  }
}