Production rules · Transcript
TXT-010
Hard rule priority 99 domain: transcript accuracy
Rationale
Unknown words must be marked rather than invented.
IF — conditions (all must hold)
- transcript.inaudible eq true
THEN — actions
- set transcript.status "uncertain"
- add_flag "INAUDIBLE_TEXT"
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-010",
"domain": "transcript",
"priority": 99,
"hard": true,
"logic": "all",
"when": [
{
"path": "transcript.inaudible",
"op": "eq",
"value": true
}
],
"then": [
{
"op": "set",
"path": "transcript.status",
"value": "uncertain"
},
{
"op": "add_flag",
"value": "INAUDIBLE_TEXT"
}
],
"rationale": "Unknown words must be marked rather than invented.",
"tags": [
"accuracy"
]
}