Question
We see in the verifyMatchs the following
"and": [
{
"and": [
{
"and": [
{
"exact": {
"HICN": {
"match": true,
"ignoreInToken": false <<<=====
}
},
"exactOrNull": {
"MBIN": {
"match": false,
"ignoreInToken": true <<<====
},
"SSN": {
"match": true,
"ignoreInToken": true <<=====
}
}
}
]
}
How could ignoreInToken be defined as true when we don't see that setting in ignoreInToken statement
"ignoreInToken": [
"configuration/entityTypes/Individual/attributes/FirstName",
"configuration/entityTypes/Individual/attributes/FullName",
"configuration/entityTypes/Individual/attributes/LastName"
],
Answer
An exactOrNull setting will automatically makes the attribute go to ignoreInToken
Comments
Please sign in to leave a comment.