Production rules · Clip
CLP-010
Hard rule priority 100 domain: clip rights
Rationale
Unknown rights block external use.
IF — conditions (all must hold)
- clip.rights_status in ["unknown","uncleared"]
THEN — actions
- add_flag "RIGHTS_REVIEW"
- block "external_use"
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": "CLP-010",
"domain": "clip",
"priority": 100,
"hard": true,
"logic": "all",
"when": [
{
"path": "clip.rights_status",
"op": "in",
"value": [
"unknown",
"uncleared"
]
}
],
"then": [
{
"op": "add_flag",
"value": "RIGHTS_REVIEW"
},
{
"op": "block",
"value": "external_use"
}
],
"rationale": "Unknown rights block external use.",
"tags": [
"rights"
]
}