{ "$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-cron-workflow-status-schema.json", "title": "io.argoproj.workflow.v1alpha1.CronWorkflowStatus", "description": "CronWorkflowStatus is the status of a CronWorkflow", "type": "object", "properties": { "active": { "description": "Active is a list of active workflows stemming from this CronWorkflow", "type": "array", "items": { "$ref": "#/definitions/io.k8s.api.core.v1.ObjectReference" } }, "conditions": { "description": "Conditions is a list of conditions the CronWorkflow may have", "type": "array", "items": { "$ref": "#/definitions/io.argoproj.workflow.v1alpha1.Condition" } }, "failed": { "description": "v3.6 and after: Failed counts how many times child workflows failed", "type": "integer" }, "lastScheduledTime": { "description": "LastScheduleTime is the last time the CronWorkflow was scheduled", "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time" }, "phase": { "description": "v3.6 and after: Phase is an enum of Active or Stopped. It changes to Stopped when stopStrategy.expression is true", "type": "string" }, "succeeded": { "description": "v3.6 and after: Succeeded counts how many times child workflows succeeded", "type": "integer" } } }