Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add address-based and refactor AML confidence settings #1697

Merged
merged 15 commits into from
Dec 13, 2023
Merged
40 changes: 40 additions & 0 deletions openapi/components/schemas/AmlSettings.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,46 @@ properties:
$ref: ./AmlConfidence.yaml
noCountry:
$ref: ./AmlConfidence.yaml
cityAndRegionMatch:
type: object
description: Exact match of the customer's city and region of residence and exact name is found.
mikerebilly marked this conversation as resolved.
Show resolved Hide resolved
properties:
matchingCountry:
$ref: ./AmlConfidence.yaml
mismatchingCountry:
$ref: ./AmlConfidence.yaml
noCountry:
$ref: ./AmlConfidence.yaml
cityMatchAndRegionMismatch:
type: object
description: Exact match of the customer's city of residence and fuzzy, or inexact name match is found, but the region of residence does not match.
mikerebilly marked this conversation as resolved.
Show resolved Hide resolved
properties:
matchingCountry:
$ref: ./AmlConfidence.yaml
mismatchingCountry:
$ref: ./AmlConfidence.yaml
noCountry:
$ref: ./AmlConfidence.yaml
cityMatchAndNoRegion:
type: object
description: Exact match of the customer's city of residence and fuzzy, or inexact name match is found, but the region of residence is not provided.
mikerebilly marked this conversation as resolved.
Show resolved Hide resolved
properties:
matchingCountry:
$ref: ./AmlConfidence.yaml
mismatchingCountry:
$ref: ./AmlConfidence.yaml
noCountry:
$ref: ./AmlConfidence.yaml
noCityAndRegionMatch:
type: object
description: Exact match of the customer's region of residence and exact name match is found, but the city of residence is not provided.
mikerebilly marked this conversation as resolved.
Show resolved Hide resolved
properties:
matchingCountry:
$ref: ./AmlConfidence.yaml
mismatchingCountry:
$ref: ./AmlConfidence.yaml
noCountry:
$ref: ./AmlConfidence.yaml
priority:
type: object
description: |-
Expand Down