4.1.1 Add Parameters to the Notebooks
An admin user can configure the parameters of the notebook as described in the following table.
Table 4-1 Configure Parameter for Notebook
Type | Parameter | Description | Example Code Snippet to Override |
---|---|---|---|
Generic Configuration | ENABLE_GRAPH_ANALYS IS | It enables graph analysis if the value is set to “true”.
The value is either true or false.
NOTE: Set the value as “false” for the ECM case narrative notebook. Set the value as “True” for the ECM Integration L1 and Special Investigation notebooks. |
To disable it in the ECM Integration L1
notebook.
|
Generic Configuration |
ENABLE_ENTITY_SEARCH |
It enables additional entity search if the value is set
to “true”. The value is either true or false.
By default, it is set to true. |
To disable it in ECM Integration L1
notebook.
|
Generic Configuration | RISK_PROHIBITED_LIST_O F_BUSINESS | It indicates the prohibited list of businesses. For example, Bank. | To update the
list.
Or
|
Generic Configuration | TAX_HAVEN_COUNTRY_LI ST | It indicates the list of countries having taxes. For example: CHE, BHS, ANB, US, etc. | To update the
list.
|
Generic Configuration | DATE_DISPLAY_FORMAT | It indicates the date format to display in the
narrative/tabular format. The format isYYYY-MMM-DD.
NOTE: For more information on formatting the string, see the DateTimeFormatter. |
Set the date format as
follows.
|
Generic Configuration | ENABLE_LOG | It enables logs in to the paragraph output if the value is set to “true”. The value is true or false. It helps to debug the notebook. By default, set it to false. | To enable:
|
Generic Configuration | HIGH_RISK_MIN_SCORE_ BOUNDARY | It indicates the risk score. If the values are more than HIGH_RISK_MIN_SCORE_BOUNDARY,it is considered as high risk. The values are 7 - 10. | To set the minimum score boundary to
6:
|
Sub Graph Loading | NODE_PROVIDER_EXPAN D_EXCLUSION_LIST | It indicates subgraph loading for investigation;
neighbors of the node providers mentioned in this list will be excluded
from subsequent loading.
The values are:
|
To override the exclusion list:
Or
|
Sub Graph Loading | INITIAL_LOAD_HOPS | It indicates the number of hops to load for the initial
step while creating the sub graph. The recommended values are between 0
to 2.The default value is 1.
Note:This affects the sub graph loading time. For example: The value can be set to 0 to load entities without any edges. |
To override the value:
|
Real-time Matching
NOTE: It is applicable for Entity Search only. |
SEARCH_TYPE | It indicates the search type for matching. The value is fuzzy. | To update it to "exact":
|
Real-time Matching
NOTE: It is applicable for Entity Search only. |
NAME_SEARCH_METHOD | It indicates the scoring method for the name search. The
values are:
|
To update the scoring method to “jaroWinkler”:
|
Real-time Matching
NOTE: It is applicable for Entity Search only. |
ADDRESS_SEARCH_METHOD | It indicates the scoring method for address search. The
values are:
|
To update the scoring method to “jaroWinkler”:
|
Real-time Matching
NOTE: It is applicable for Entity Search only. |
CONFIGURABLE_CED | CED for address matching, where CED stands for Character
Edit Distance.
Comparison is good for matching textual values that may be misspelled and thus have one or two character differences between each other. The value is auto. For more information, see the OFS Compliance Studio Matching Guide. |
To set the value to
2:
|
Real-time Matching
NOTE: It is applicable for Entity Search only. |
SLIDER_MIN_THRESHOLD | It indicates the match score minimum value on the slider. For example, 50. | To set the minimum value to
70%:
|
Real-time Matching
NOTE: It is applicable for Entity Search only. |
SLIDER_MAX_THRESHOLD | It indicates match score maximum value on the slider. For example, 100. | To set the maximum value to
90%:
|
Real-time Matching
NOTE: It is applicable for Entity Search only. |
SLIDER_THRESHOLD_STEP | It indicates the slider step size. For example, 5. | To set the slider step to
10%:
|
Real-time Matching
NOTE: It is applicable for Entity Search only. |
SLIDER_THRESHOLD_DEFAULT | It indicates the match score default value on the slider. For example, 50. | To set the max value to
80%:
|
Status Code Mapping | STATUS_CODE_MAPPING | It indicates the value of the status code. It is used to
show Account and Customer status in the narrative paragraph. The status
codes are as follows:
|
To set the more
mapping:
To override the mapping:
|
Color and Weight for Risk Factor and Red Flags | DEFAULT_SCORE_FONT_ COLOUR | It indicates the default score font color .For example,
seagreen.
For more information, see Color Names for other color code. |
To set the default color to
blue:
|
Color and Weight for Risk Factor and Red Flags | HIGHLIGHTED_SCORE_FO NT_COLOUR | It indicates the highlighted score font color. For example, crimson. | To set the default color to
red:
|
Color and Weight for Risk Factor and Red Flags | DEFAULT_SCORE_FONT_ WEIGHT | It indicates the default score font weight. The supported values are normal and bold. For example, normal. | To set the default font to
bold:
|
Color and Weight for Risk Factor and Red Flags | HIGHLIGHTED_SCORE_FO NT_WEIGHT | It indicates the highlighted score font weight. The supported values are normal and bold. For example, bold. | To set the highlighted font to
normal:
|
Color and Weight for Risk Factor and Red Flags | HIGHLIGHTED_SCORE_MI N_VALUE |
It indicates the highlighted score minimum value. If the value is less than HIGHLIGHTED_SCORE_MIN_VALUE, it will be displayed with default color and weight. The minimum value is 6. |
To set the min value to highlight as
3:
|
Disposition Score | DISPOSITION_COLOUR_M AP | It indicates a color map for disposition.
To set the color depending on score boundaries, add the minimum score as 1 and color in the hashmap. The higher value for the boundary will be less than the next boundary. For example, the color and its boundary values are:
|
To override the color:
|
Disposition Score | RECOMMENDATION_CLO SE_MESSAGE | It indicates the default recommendation message. This is
recommended when the disposition score is less than the first declared
range.
For example, Close Case (Reason: False Positive) |
To update the recommendation close
message:
|
Disposition Score | DISPOSITION_RECOMME NDATION_MAP | It indicates a recommendation map for disposition.
To set the message depending on score boundaries, add the minimum score as 1 and the message in the hashmap. The higher value for the boundary will be less than the next boundary. For example, the message and its boundary values are:
If mapping is 0, the minimum value is 0 and maximum value is 25 for Close Case (Reason: False Positive) message. If mapping is 25, the minimum value is 26 and maximum value is 51 for Low Risk Network message. If mapping is 51, the minimum value is 52 and maximum value is 76 for Medium Risk Network message.If mapping is 76, the minimum value is 77 and maximum value is 100 for Potential High Risk Network message. |
To override the recommendation message:
ihub.config.DISPOSITION_RECOMMENDATION_MAP = new
HashMap<>;
ihub.config.DISPOSITION_RECOMMENDATION_MAP.put(0,"CloseCase (Reason:
FalsePositive)"); ihub.config.DISPOSITION_RECOMMENDATION_MAP.put(24,
"Low RiskNetwork");
ihub.config.DISPOSITION_RECOMMENDATION_MAP.put(39, "Medium
RiskNetwork"); ihub.config.DISPOSITION_RECOMMENDATION_MAP.put(59,
"Potential HighRisk Network");
ihub.config.DISPOSITION_RECOMMENDATION_MAP.put(74, "High Risk
Network"); ihub.config.DISPOSITION_RECOMMENDATION_MAP.put(89, "Very
High Risk Network"); |
Disposition Score | COUNTRY_SEPARATOR | It indicates the delimiter for the attribute "Country". The value is ~ ; | - |
Advance Configuration
NOTE: The parameters should be updated only when the graph pipeline is customized. |
GRAPH_NAME | It indicates the PG graph name.
For example, FINANCIAL_CRIME_GLOBAL_GRAPH. |
- |
Advance Configuration
NOTE: The parameters should be updated only when the graph pipeline is customized. |
GRAPH_PIPELINE_ID | It indicates the graph pipeline ID.
For example, 853e4164-XXXX-XXXX- XXXX-XXXXXXXXXXXX |
- |
Advance Configuration
NOTE: The parameters should be updated only when the graph pipeline is customized. |
RESULT_CASE_GRAPH | It indicates the subgraph name. For example, caseGraph. | - |
Advance Configuration
NOTE: The parameters should be updated only when the graph pipeline is customized. |
SEPARATOR | It indicates the separator used in the graph pipeline. For example,~ | - |
Advance Configuration
NOTE: The parameters should be updated only when the graph pipeline is customized. |
KEY_COLUMN_ID | It indicates the key attribute for the node name. For example, id. | - |