Bow Tie Kreative VIDEO Grammar

Production rules · Podcast

POD-007

Hard rule priority 86 domain: podcast sync

Rationale

Remote capture drift becomes perceptible and compounds over time.

IF — conditions (all must hold)

  • podcast.remote_drift_ms gt 40

THEN — actions

  • add_flag "REMOTE_SYNC_DRIFT"
  • propose "resync_by_segments"

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": "POD-007",
  "domain": "podcast",
  "priority": 86,
  "hard": true,
  "logic": "all",
  "when": [
    {
      "path": "podcast.remote_drift_ms",
      "op": "gt",
      "value": 40
    }
  ],
  "then": [
    {
      "op": "add_flag",
      "value": "REMOTE_SYNC_DRIFT"
    },
    {
      "op": "propose",
      "value": "resync_by_segments"
    }
  ],
  "rationale": "Remote capture drift becomes perceptible and compounds over time.",
  "tags": [
    "sync"
  ]
}

This rule as JSON → · Evaluate a context →