-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add address-based and refactor AML confidence settings (#1697)
* Add address-based AML confidence settings * Update description phrasing * Update phrasing and key * Change structure * Restructure entire schema * Simplify address matching * Update descriptions * FIx descriptions * Fix new lint rule --------- Co-authored-by: Alexander Shkarpetin <[email protected]>
- Loading branch information
1 parent
7b1a39c
commit 4484c8b
Showing
2 changed files
with
67 additions
and
82 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
type: object | ||
properties: | ||
addressMatch: | ||
type: object | ||
description: Match for the customer's city or region, or both, is found. | ||
properties: | ||
matchingCountry: | ||
$ref: ./AmlConfidence.yaml | ||
mismatchingCountry: | ||
$ref: ./AmlConfidence.yaml | ||
noCountry: | ||
$ref: ./AmlConfidence.yaml | ||
addressMismatch: | ||
type: object | ||
description: Match for the customer's city or region, or both, is not found. | ||
properties: | ||
matchingCountry: | ||
$ref: ./AmlConfidence.yaml | ||
mismatchingCountry: | ||
$ref: ./AmlConfidence.yaml | ||
noCountry: | ||
$ref: ./AmlConfidence.yaml | ||
noAddress: | ||
type: object | ||
description: No city and no region is available to match against. | ||
properties: | ||
matchingCountry: | ||
$ref: ./AmlConfidence.yaml | ||
mismatchingCountry: | ||
$ref: ./AmlConfidence.yaml | ||
noCountry: | ||
$ref: ./AmlConfidence.yaml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters