Apache Airflow · Schema

TriggerRule

Trigger rule. *Changed in version 2.2.0*: 'none_failed_min_one_success' is added as a possible value.

ApacheDAGData PipelineETLOpen SourceOrchestrationPythonSchedulingWorkflow
View JSON Schema on GitHub

JSON Schema

openapi.yaml-trigger-rule-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/apache-airflow/refs/heads/main/json-schema/openapi.yaml-trigger-rule-schema.json",
  "title": "TriggerRule",
  "description": "Trigger rule.\n\n*Changed in version 2.2.0*: 'none_failed_min_one_success' is added as a possible value.\n",
  "type": "string",
  "enum": [
    "all_success",
    "all_failed",
    "all_done",
    "one_success",
    "one_failed",
    "none_failed",
    "none_skipped",
    "none_failed_or_skipped",
    "none_failed_min_one_success",
    "dummy"
  ]
}