[KYC-Match]: Having a match with true
should be defined as a perfect match with a score of 100
#191
-
When I want to implement this API, what should be the expectation:
From my PoV this should be the way, as otherwise it would not be a "match". What is your opinion about that? Thanks in advance. |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 5 replies
-
This is by definition the case. The matchscore is only returned is the match result is false, and is somewhere between 0 and 99. |
Beta Was this translation helpful? Give feedback.
-
Thank you @maxl2287 , @HuubAppelboom . I agree with you. The match score is expected to be between 0 and 99, but the Match API Yaml says "minimum: 0, maximum: 100". This should be corrected to 'maximum: 99', shouldn't it? BR |
Beta Was this translation helpful? Give feedback.
-
@ToshiWakayama-KDDI In practice you would never return 100 (because then there would be a match). The documentation is correct, here it states: But you may want to update the definitions of the response body, there it says currently integer (MatchScoreResult) [ 0 .. 100 ], which should be [0..99]. Or will that confuse people and think that 99 = perfect match ?? Regards |
Beta Was this translation helpful? Give feedback.
I think we can solve any ambiguity simply by adding in the documentation that "A perfect match is defined as score 100".