Reltio Connect

 View Only
  • 1.  Data Filter In Match Rule

    Posted 08-18-2025 02:10

    Hi All,

    We have requirement to implement Match rule with below conditions:

     Email should be exact and have suffix of @[value]"."[com or org]

    Email should not be null or blank

    ID should be Exact and should not have string of same characters.

    Could you please suggest how it can be implemented in Match rule. 



    ------------------------------
    S Gupta
    Humana
    ------------------------------


  • 2.  RE: Data Filter In Match Rule

    Reltio Employee
    Posted 08-18-2025 05:58

    Hi,

    One clarification. What do you mean by "ID should not have string of same characters"? Please share some examples



    ------------------------------
    Thanks,
    Snehil Kamal
    Senior Solution Architect
    Reltio
    Bangalore
    ------------------------------



  • 3.  RE: Data Filter In Match Rule

    Posted 08-18-2025 06:05

    Id values such as '444444' or 'AAAAAA' are not allowed.



    ------------------------------
    S Gupta
    Humana
    ------------------------------



  • 4.  RE: Data Filter In Match Rule
    Best Answer

    Reltio Employee
    Posted 08-19-2025 07:02

    Please try this on different string pairs

    POST https://test.reltio.com/reltio/tools/matching/compare

    {
        "fuzzy": true,
        "comparatorClass": {
            "attribute": "configuration/entityTypes/Contact/attributes/Email",
            "parameters": [
                {
                    "parameter": "groups",
                    "values": [
                        {
                            "pattern": "\\.(com|org)$",
                            "className": "com.reltio.match.comparator.AlwaysTrueComparator"
                        },
                         {
                            "pattern": "^(?!([A-Za-z0-9])\\1+@)(?<local>[A-Za-z0-9]+)(?=@)",
                            "className": "com.reltio.match.comparator.BasicStringComparator"
                        }
                    ]
                }
            ],
            "class": "com.reltio.match.comparator.CustomComparator"
        },
        "first": "snehil@gmail.com",
        "second": "snehil@gmail.org"
    }



    ------------------------------
    Thanks,
    Snehil Kamal
    Senior Solution Architect
    Reltio
    Bangalore
    ------------------------------



  • 5.  RE: Data Filter In Match Rule

    Posted 08-20-2025 10:10

    Hi Snehil,

    Thank you for your detailed response, it is very helpful. I just want to clarify the requirement once more:

    • For Email,the condition is only that it should be an exact match and must have suffix @[value]"."[com or org].
    • The additional condition of not having a string of same characters is not applicable to Email. Instead ,this condition should apply to another attribute say Phone number, where the value should not consist of the same characters. Valid Number- 112344 Not Valid- 111111, aaaaaa

    Could you please help to adjust implementation accordingly.



    ------------------------------
    S Gupta
    Humana
    ------------------------------