Alloy recognizes that not all Personally Identifiable Information (PII) should be matched in the same way. PII like a first name can be variable e.g. Sam vs. Sammy. While PII like an SSN will always need to be matched exactly. This is why Alloy offers both Matched (fuzzy matching) and Match Score=1 (exact match) match-types when interacting with our List service (Allowlist/Denylist).
Let’s start by looking at the difference between the two match-types.
Matched Attribute (Fluid PII; Fuzzy Matching)
Matched attributes are boolean values (TRUE/FALSE) and use fuzzy matching (Jaro Winkler distance is used in the code). Conceptually, you can think of fuzzy matching as being similar enough to the matching-target, but not necessarily an exact match.
Example: You want to automatically deny an application with the name Will Williams, but the applicant submits using full name Willy Williams. Using Matched logic will allow you to flag this very close, but not exact match that could be expected with fluid PII like names.
Match Score Attribute (Non-Fluid PII; Exact Matching)
Match Score=1 will require an exact 1:1 match and is best for things like phone numbers or SSN.
Example: You want to automatically deny an application with a specific SSN. Using Match Score=1 will require an exact match and will only flag when that condition is met.
Now let’s look at these concepts within a workflow. In this example I have created a very simple workflow. The workflow uses Alloy List Service Denylist with two rules; which can set a tag named ‘Denylist Denied.’
Tag ‘Denylist Denied’ would be set if A) a “close enough” match against Denylist full name is found (Matched logic) OR B) and exact match (Match Score=1) against Denylist SSN is found.
Now you should have a better understanding of the match-type logic available within Alloy’s List service. Fluid data like first name should use Matched (fuzzy) and static data like SSN should use Match Score=1.
For more information on the Alloy List Service click here. To learn how to add Alloy List Service to your workflow click here.
If you have questions or need additional help please contact Alloy’s Support team at support@alloy.co.
Comments
0 comments
Article is closed for comments.