Bow Tie Kreative VIDEO Grammar

Production rules · QA

QAG-011

Hard rule priority 100 domain: qa gate

Rationale

Any blocker prevents publication.

IF — conditions (all must hold)

  • qa.blocker_count gt 0

THEN — actions

  • block "publish"

This is a hard rule: when it matches it participates in blocking — the pipeline may not proceed until the condition is repaired or a human accepts the risk.

Full record

rules/production_rules.json
{
  "id": "QAG-011",
  "domain": "qa",
  "priority": 100,
  "hard": true,
  "logic": "all",
  "when": [
    {
      "path": "qa.blocker_count",
      "op": "gt",
      "value": 0
    }
  ],
  "then": [
    {
      "op": "block",
      "value": "publish"
    }
  ],
  "rationale": "Any blocker prevents publication.",
  "tags": [
    "gate"
  ]
}

This rule as JSON → · Evaluate a context →