Production rules · Transcript
TXT-015
Hard rule priority 94 domain: transcript accuracy risk
Rationale
Names, dates, quantities, and negation merit a higher verification threshold.
IF — conditions (all must hold)
- transcript.high_risk_token_confidence lt 0.92
THEN — actions
- add_flag "HIGH_RISK_TOKEN_LOW_CONFIDENCE"
- require_human "verify_names_dates_numbers_negation"
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
{
"id": "TXT-015",
"domain": "transcript",
"priority": 94,
"hard": true,
"logic": "all",
"when": [
{
"path": "transcript.high_risk_token_confidence",
"op": "lt",
"value": 0.92
}
],
"then": [
{
"op": "add_flag",
"value": "HIGH_RISK_TOKEN_LOW_CONFIDENCE"
},
{
"op": "require_human",
"value": "verify_names_dates_numbers_negation"
}
],
"rationale": "Names, dates, quantities, and negation merit a higher verification threshold.",
"tags": [
"accuracy",
"risk"
]
}