
Explanation:
NO
No
Yes
In the Content contains condition, Microsoft Purview DLP lets you combine conditions using logical operators:
* "Any of these" = logical OR
* "All of these" = logical AND
From the exhibit, the rule is effectively:
* Group1 (All of these / AND)
* Credit Card Number: 1 to 5 instances
* SWIFT Code: 1 to 2 instances
* OR
* Group2 (Any of these)
* Credit Card Number: 10 to Any instances
So the rule matches if:
(Credit Card is 1-5 AND SWIFT is 1-2) OR (Credit Card is #10) .
Evaluate each document against the rule
Document1 : Credit Card = 3, SWIFT = 3
* Group1 requires SWIFT 1-2 , but Document1 has 3 # Group1 = false
* Group2 requires Credit Card #10 , but Document1 has 3 # Group2 = false Result: DLP1 does NOT apply # No Document2 : Credit Card = 7, SWIFT = 2
* Group1 requires Credit Card 1-5 , but Document2 has 7 # Group1 = false
* Group2 requires Credit Card #10 , but Document2 has 7 # Group2 = false Result: DLP1 does NOT apply # No Document3 : Credit Card = 15, SWIFT = 0
* Group2 requires Credit Card #10 , and Document3 has 15 # Group2 = true Result: DLP1 DOES apply
# Yes