Schema
RuleDecision
Type:
string
Outcome applied when this rule matches a request.
deny always wins: if any rule in the policy matches with decision: deny, the request is denied even if other rules match with decision: allow.All schema constraints and annotations
{
"description": "Outcome applied when this rule matches a request. `deny` always wins: if any rule in the policy matches with `decision: deny`, the request is denied even if other rules match with `decision: allow`.\n",
"enum": [
"allow",
"deny"
],
"examples": [
"allow"
],
"type": "string"
}