Production rules · Audio
AUD-010
Hard rule priority 100 domain: audio rights
Rationale
Uncleared music cannot be published.
IF — conditions (all must hold)
- audio.music_rights in ["unknown","uncleared"]
THEN — actions
- add_flag "MUSIC_RIGHTS_BLOCK"
- 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
{
"id": "AUD-010",
"domain": "audio",
"priority": 100,
"hard": true,
"logic": "all",
"when": [
{
"path": "audio.music_rights",
"op": "in",
"value": [
"unknown",
"uncleared"
]
}
],
"then": [
{
"op": "add_flag",
"value": "MUSIC_RIGHTS_BLOCK"
},
{
"op": "block",
"value": "publish"
}
],
"rationale": "Uncleared music cannot be published.",
"tags": [
"rights"
]
}