@1aboveio/skills 0.20.2 → 0.20.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (85) hide show
  1. package/README.md +14 -6
  2. package/package.json +1 -1
  3. package/runtime/skills/distribution/generated/recipes.json +220 -25
  4. package/runtime/skills/distribution/scripts/bundles.mjs +167 -48
  5. package/runtime/skills/engineering/engineering-runtime/scripts/workflow-coherence.mjs +4 -0
  6. package/runtime/skills/engineering/engineering-runtime/scripts/workflow-policy.mjs +1 -1
  7. package/skills/compliance/compliance-audit/LICENSE +3 -0
  8. package/skills/compliance/compliance-audit/SKILL.md +466 -0
  9. package/skills/compliance/compliance-audit/references/findings-schema.md +290 -0
  10. package/skills/compliance/compliance-audit/references/vars-checklist.md +1068 -0
  11. package/skills/compliance/compliance-audit/references/vars-findings-schema.md +395 -0
  12. package/skills/compliance/compliance-audit/scripts/reconcile_tracker.py +454 -0
  13. package/skills/compliance/compliance-audit/scripts/test_validate_tracker.py +90 -0
  14. package/skills/compliance/compliance-audit/scripts/validate_tracker.py +752 -0
  15. package/skills/compliance/doc-authenticity/LICENSE +3 -0
  16. package/skills/compliance/doc-authenticity/SKILL.md +158 -0
  17. package/skills/compliance/doc-authenticity/references/agreement.md +66 -0
  18. package/skills/compliance/doc-authenticity/references/bank-statement.md +150 -0
  19. package/skills/compliance/doc-authenticity/references/forensic-signals.md +157 -0
  20. package/skills/compliance/doc-authenticity/references/image-signals.md +114 -0
  21. package/skills/compliance/doc-authenticity/references/invoice.md +66 -0
  22. package/skills/compliance/doc-authenticity/references/issuer-profiles.md +86 -0
  23. package/skills/compliance/doc-authenticity/references/verdict-and-report.md +95 -0
  24. package/skills/compliance/doc-authenticity/references/verdict.schema.json +81 -0
  25. package/skills/compliance/doc-authenticity/scripts/image_forensics.py +294 -0
  26. package/skills/compliance/doc-authenticity/scripts/pdf_forensics.py +401 -0
  27. package/skills/compliance/doc-authenticity/scripts/validate_codes.py +224 -0
  28. package/skills/compliance/doc-authenticity/scripts/validate_verdict.py +308 -0
  29. package/skills/compliance/report-writing/LICENSE +3 -0
  30. package/skills/compliance/report-writing/SKILL.md +206 -0
  31. package/skills/compliance/report-writing/references/audit-report-template.md +121 -0
  32. package/skills/compliance/report-writing/references/external-assessment-template.md +167 -0
  33. package/skills/compliance/report-writing/references/management-report-template.md +145 -0
  34. package/skills/compliance/report-writing/references/vars-report-template.md +224 -0
  35. package/skills/document-utils/doc-to-md/LICENSE +3 -0
  36. package/skills/document-utils/doc-to-md/SKILL.md +77 -0
  37. package/skills/document-utils/doc-to-md/scripts/convert.py +157 -0
  38. package/skills/document-utils/reg-parser/LICENSE +3 -0
  39. package/skills/document-utils/reg-parser/SKILL.md +201 -0
  40. package/skills/document-utils/reg-parser/references/checklist-schema.md +223 -0
  41. package/skills/document-utils/reg-parser/references/checklists/hk-amlo-checklist.json +1306 -0
  42. package/skills/document-utils/reg-parser/references/checklists/hk-amlo-checklist.md +469 -0
  43. package/skills/document-utils/reg-parser/references/checklists/hk-fi-corporate-onboarding-cdd-checklist.json +634 -0
  44. package/skills/document-utils/reg-parser/references/checklists/hk-fi-corporate-onboarding-cdd-checklist.md +233 -0
  45. package/skills/document-utils/reg-parser/references/checklists/hk-mso-guideline-checklist.json +2194 -0
  46. package/skills/document-utils/reg-parser/references/checklists/hk-mso-guideline-checklist.md +771 -0
  47. package/skills/document-utils/reg-parser/references/checklists/kyc-aml-checklist.md +258 -0
  48. package/skills/document-utils/reg-parser/references/checklists/visa-vars-checklist.md +1058 -0
  49. package/skills/document-utils/reg-parser/references/mandates/hk-amlo-cap615.md +389 -0
  50. package/skills/document-utils/reg-parser/references/mandates/visa-vars.md +205 -0
  51. package/skills/document-utils/reg-parser/scripts/compare_checklist.py +228 -0
  52. package/skills/document-utils/reg-parser/scripts/dump_checklist.py +348 -0
  53. package/skills/document-utils/reg-parser/scripts/preprocess-mandate.sh +171 -0
  54. package/skills/document-utils/reg-parser/scripts/test_quarantine.sh +102 -0
  55. package/skills/document-utils/reg-parser/scripts/validate_checklist.py +532 -0
  56. package/skills/document-utils/reg-parser/scripts/validate_mandate.py +242 -0
  57. package/skills/engineering/engineering-runtime/coherence/workflow.json +16 -16
  58. package/skills/engineering/engineering-runtime/scripts/workflow-coherence.mjs +4 -0
  59. package/skills/engineering/engineering-runtime/scripts/workflow-policy.mjs +1 -1
  60. package/skills/payment/similar-domain/LICENSE +3 -0
  61. package/skills/payment/similar-domain/SKILL.md +178 -0
  62. package/skills/payment/similar-domain/references/entities.md +58 -0
  63. package/skills/payment/similar-domain/references/fingerprints.md +82 -0
  64. package/skills/payment/similar-domain/references/pivots.md +66 -0
  65. package/skills/payment/similar-domain/references/report-template.md +76 -0
  66. package/skills/payment/similar-domain/references/scoring.md +61 -0
  67. package/skills/payment/similar-domain/references/terminology.md +37 -0
  68. package/skills/payment/similar-domain/references/workflow.md +79 -0
  69. package/skills/payment/tld-detection/SKILL.md +76 -21
  70. package/skills/payment/tld-detection/references/clean.md +1 -1
  71. package/skills/payment/tld-detection/references/clustering.md +21 -6
  72. package/skills/payment/tld-detection/references/decision.md +7 -2
  73. package/skills/payment/tld-detection/references/fx-conversion.md +229 -0
  74. package/skills/payment/tld-detection/references/report-template.md +63 -27
  75. package/skills/payment/tld-detection/references/streams.md +90 -0
  76. package/skills/payment/tld-detection/references/terminology.md +15 -7
  77. package/skills/payment/tld-detection/references/workflow.md +1 -1
  78. package/skills/payment/tld-detection/scripts/detect_streams.py +542 -0
  79. package/skills/engineering/ensure-coverage/evals/evals.json +0 -125
  80. package/skills/engineering/rush-issues/evals/evals.json +0 -65
  81. package/skills/engineering/rush-release/evals/evals.json +0 -58
  82. package/skills/fullstack/shadcn/evals/evals.json +0 -90
  83. package/skills/payment/fraud-analysis/evals/evals.json +0 -40
  84. package/skills/payment/tld-detection/evals/evals.json +0 -107
  85. package/skills/payment/tld-detection/tests/test_detect_ladders.py +0 -132
@@ -0,0 +1,2194 @@
1
+ {
2
+ "metadata": {
3
+ "name": "HK CCE Guideline for MSOs — AML/CFT Compliance Checklist",
4
+ "regulation": "Guideline on Anti-Money Laundering and Counter-Financing of Terrorism (For Money Service Operators), Commissioner of Customs and Excise, June 2023, issued under section 7 of AMLO (Cap. 615)",
5
+ "version": "1.0",
6
+ "scope": "Operational AML/CFT obligations imposed on Money Service Operators (MSOs) in Hong Kong by the CCE Guideline, covering risk-based approach, AML/CFT systems, CDD, ongoing monitoring, TF/financial sanctions/PF, suspicious transaction reporting, record-keeping, staff training, wire transfers, and remittance transactions. Per paragraph 1.6, both 'must' and 'should' in the Guideline denote mandatory requirements.",
7
+ "date": "2026-05-15",
8
+ "summary": {
9
+ "categories": 12,
10
+ "total_items": 52,
11
+ "critical": 33,
12
+ "major": 19,
13
+ "minor": 0
14
+ }
15
+ },
16
+ "categories": [
17
+ {
18
+ "id": "CAT-01",
19
+ "title": "Risk-Based Approach and Risk Assessment",
20
+ "item_ids": [
21
+ "CAT-01-001",
22
+ "CAT-01-002",
23
+ "CAT-01-003",
24
+ "CAT-01-004",
25
+ "CAT-01-005"
26
+ ]
27
+ },
28
+ {
29
+ "id": "CAT-02",
30
+ "title": "AML/CFT Systems and Governance",
31
+ "item_ids": [
32
+ "CAT-02-001",
33
+ "CAT-02-002",
34
+ "CAT-02-003",
35
+ "CAT-02-004",
36
+ "CAT-02-005",
37
+ "CAT-02-006"
38
+ ]
39
+ },
40
+ {
41
+ "id": "CAT-03",
42
+ "title": "Customer Due Diligence — Identification and Verification",
43
+ "item_ids": [
44
+ "CAT-03-001",
45
+ "CAT-03-002",
46
+ "CAT-03-003",
47
+ "CAT-03-004",
48
+ "CAT-03-005",
49
+ "CAT-03-006",
50
+ "CAT-03-007",
51
+ "CAT-03-008",
52
+ "CAT-03-009",
53
+ "CAT-03-010",
54
+ "CAT-03-011",
55
+ "CAT-03-012",
56
+ "CAT-03-013"
57
+ ]
58
+ },
59
+ {
60
+ "id": "CAT-04",
61
+ "title": "Simplified and Enhanced Due Diligence",
62
+ "item_ids": [
63
+ "CAT-04-001",
64
+ "CAT-04-002",
65
+ "CAT-04-003",
66
+ "CAT-04-004",
67
+ "CAT-04-005",
68
+ "CAT-04-006"
69
+ ]
70
+ },
71
+ {
72
+ "id": "CAT-05",
73
+ "title": "Reliance on Intermediaries",
74
+ "item_ids": [
75
+ "CAT-05-001",
76
+ "CAT-05-002"
77
+ ]
78
+ },
79
+ {
80
+ "id": "CAT-06",
81
+ "title": "Pre-existing Customers and Ongoing Monitoring",
82
+ "item_ids": [
83
+ "CAT-06-001",
84
+ "CAT-06-002",
85
+ "CAT-06-003"
86
+ ]
87
+ },
88
+ {
89
+ "id": "CAT-07",
90
+ "title": "Terrorist Financing, Financial Sanctions and Proliferation Financing",
91
+ "item_ids": [
92
+ "CAT-07-001",
93
+ "CAT-07-002"
94
+ ]
95
+ },
96
+ {
97
+ "id": "CAT-08",
98
+ "title": "Suspicious Transaction Reporting and Law Enforcement Requests",
99
+ "item_ids": [
100
+ "CAT-08-001",
101
+ "CAT-08-002",
102
+ "CAT-08-003",
103
+ "CAT-08-004",
104
+ "CAT-08-005",
105
+ "CAT-08-006"
106
+ ]
107
+ },
108
+ {
109
+ "id": "CAT-09",
110
+ "title": "Record-keeping",
111
+ "item_ids": [
112
+ "CAT-09-001",
113
+ "CAT-09-002",
114
+ "CAT-09-003"
115
+ ]
116
+ },
117
+ {
118
+ "id": "CAT-10",
119
+ "title": "Staff Training",
120
+ "item_ids": [
121
+ "CAT-10-001",
122
+ "CAT-10-002"
123
+ ]
124
+ },
125
+ {
126
+ "id": "CAT-11",
127
+ "title": "Wire Transfers",
128
+ "item_ids": [
129
+ "CAT-11-001",
130
+ "CAT-11-002",
131
+ "CAT-11-003"
132
+ ]
133
+ },
134
+ {
135
+ "id": "CAT-12",
136
+ "title": "Remittance Transactions",
137
+ "item_ids": [
138
+ "CAT-12-001"
139
+ ]
140
+ }
141
+ ],
142
+ "items": [
143
+ {
144
+ "id": "CAT-01-001",
145
+ "title": "Adopt a risk-based approach for AML/CFT Systems",
146
+ "category": "CAT-01",
147
+ "risk_domain": null,
148
+ "risk_sub_domain": null,
149
+ "risk_statement": null,
150
+ "parent_control": null,
151
+ "requirement": "An MSO must adopt a risk-based approach (RBA) in the design and implementation of its AML/CFT policies, procedures and controls (AML/CFT Systems), so that preventive measures are commensurate with the nature and level of identified ML/TF risks.",
152
+ "source": "Guideline §2.1; §1.6 (mandatory language)",
153
+ "severity": "critical",
154
+ "verification": [
155
+ {
156
+ "prefix": null,
157
+ "text": "AML/CFT policy explicitly adopts an RBA",
158
+ "children": [],
159
+ "section": "mandatory"
160
+ },
161
+ {
162
+ "prefix": null,
163
+ "text": "Documented linkage between risk-assessment outputs and the design of preventive controls",
164
+ "children": [],
165
+ "section": "mandatory"
166
+ },
167
+ {
168
+ "prefix": null,
169
+ "text": "Senior management has approved the RBA framework",
170
+ "children": [],
171
+ "section": "mandatory"
172
+ }
173
+ ],
174
+ "evidence": [
175
+ "AML/CFT policy",
176
+ "Risk-assessment-to-control mapping document",
177
+ "Senior management approval record"
178
+ ]
179
+ },
180
+ {
181
+ "id": "CAT-01-002",
182
+ "title": "Conduct an institutional ML/TF risk assessment",
183
+ "category": "CAT-01",
184
+ "risk_domain": null,
185
+ "risk_sub_domain": null,
186
+ "risk_statement": null,
187
+ "parent_control": null,
188
+ "requirement": "An MSO must conduct an institutional ML/TF risk assessment to identify, assess and understand its ML/TF risks across its customers; the countries/jurisdictions its customers are from or in; the countries/jurisdictions of its operations; and its products, services, transactions and delivery channels. The assessment must be documented, consider all relevant risk factors, be approved by senior management, kept up-to-date, and be available to the CCE on request.",
189
+ "source": "Guideline §2.2, §2.3, §2.4, §2.10",
190
+ "severity": "critical",
191
+ "verification": [
192
+ {
193
+ "prefix": null,
194
+ "text": "Documented institutional risk assessment exists, covering customers, geographies, products/services/transactions, and delivery channels",
195
+ "children": [],
196
+ "section": "mandatory"
197
+ },
198
+ {
199
+ "prefix": null,
200
+ "text": "Senior-management approval recorded",
201
+ "children": [],
202
+ "section": "mandatory"
203
+ },
204
+ {
205
+ "prefix": null,
206
+ "text": "Risk-assessment methodology documented (qualitative and quantitative analysis, sources)",
207
+ "children": [],
208
+ "section": "mandatory"
209
+ },
210
+ {
211
+ "prefix": null,
212
+ "text": "Mechanism in place to provide the assessment to the CCE on request",
213
+ "children": [],
214
+ "section": "mandatory"
215
+ },
216
+ {
217
+ "prefix": null,
218
+ "text": "Supporting records retained (risk factors, sources, evaluation of AML/CFT Systems adequacy)",
219
+ "children": [],
220
+ "section": "mandatory"
221
+ }
222
+ ],
223
+ "evidence": [
224
+ "Institutional ML/TF risk assessment report",
225
+ "Senior management approval record",
226
+ "Risk-assessment methodology document"
227
+ ]
228
+ },
229
+ {
230
+ "id": "CAT-01-003",
231
+ "title": "Refresh the institutional risk assessment",
232
+ "category": "CAT-01",
233
+ "risk_domain": null,
234
+ "risk_sub_domain": null,
235
+ "risk_statement": null,
236
+ "parent_control": null,
237
+ "requirement": "An MSO must conduct its institutional ML/TF risk assessment every two years and upon trigger events material to the MSO's business and risk exposure (such as significant AML/CFT Systems breaches, new customer segments or delivery channels, new products/services, or significant operational changes); review results must be documented and approved by senior management.",
238
+ "source": "Guideline §2.9",
239
+ "severity": "major",
240
+ "verification": [
241
+ {
242
+ "prefix": null,
243
+ "text": "Refresh cadence (≤2 years) embedded in the AML/CFT calendar",
244
+ "children": [],
245
+ "section": "mandatory"
246
+ },
247
+ {
248
+ "prefix": null,
249
+ "text": "Trigger-event criteria documented and operationalised",
250
+ "children": [],
251
+ "section": "mandatory"
252
+ },
253
+ {
254
+ "prefix": null,
255
+ "text": "Each refresh signed off by senior management",
256
+ "children": [],
257
+ "section": "mandatory"
258
+ }
259
+ ],
260
+ "evidence": [
261
+ "Risk-assessment refresh log",
262
+ "Trigger-event register",
263
+ "Approval records for each refresh"
264
+ ]
265
+ },
266
+ {
267
+ "id": "CAT-01-004",
268
+ "title": "Assess ML/TF risks of new products, practices and technologies",
269
+ "category": "CAT-01",
270
+ "risk_domain": null,
271
+ "risk_sub_domain": null,
272
+ "risk_statement": null,
273
+ "parent_control": null,
274
+ "requirement": "An MSO must identify and assess the ML/TF risks that may arise in relation to new products and business practices (including new delivery mechanisms), and the use of new or developing technologies for both new and pre-existing products; the risk assessment must be undertaken before launch and appropriate mitigation measures applied.",
275
+ "source": "Guideline §2.11, §2.12",
276
+ "severity": "major",
277
+ "verification": [
278
+ {
279
+ "prefix": null,
280
+ "text": "Product/process change governance includes pre-launch ML/TF risk assessment",
281
+ "children": [],
282
+ "section": "mandatory"
283
+ },
284
+ {
285
+ "prefix": null,
286
+ "text": "Mitigation measures documented for each new product/practice/technology",
287
+ "children": [],
288
+ "section": "mandatory"
289
+ }
290
+ ],
291
+ "evidence": [
292
+ "New-product/technology launch register",
293
+ "Pre-launch ML/TF risk-assessment files"
294
+ ]
295
+ },
296
+ {
297
+ "id": "CAT-01-005",
298
+ "title": "Conduct customer risk assessment and update over time",
299
+ "category": "CAT-01",
300
+ "risk_domain": null,
301
+ "risk_sub_domain": null,
302
+ "risk_statement": null,
303
+ "parent_control": null,
304
+ "requirement": "An MSO must assess the ML/TF risks associated with each customer or proposed business relationship (the customer risk assessment), with the assessment determining the extent of CDD measures applied; on the basis of a holistic view of CDD information the MSO must finalise the customer risk profile to determine ongoing monitoring intensity, and must review and update the customer risk assessment over time, particularly during ongoing monitoring. Records of customer risk assessments must be kept so that the MSO can demonstrate to the CCE how it assesses customer ML/TF risk and how CDD/monitoring intensity is calibrated.",
305
+ "source": "Guideline §2.13, §2.14, §2.15, §2.16 (s.20(1)(b)(ii), Sch. 2, AMLO)",
306
+ "severity": "critical",
307
+ "verification": [
308
+ {
309
+ "prefix": null,
310
+ "text": "Customer risk-assessment methodology documented and consistent with the institutional risk assessment",
311
+ "children": [],
312
+ "section": "mandatory"
313
+ },
314
+ {
315
+ "prefix": null,
316
+ "text": "Risk rating recorded per customer",
317
+ "children": [],
318
+ "section": "mandatory"
319
+ },
320
+ {
321
+ "prefix": null,
322
+ "text": "Periodic and event-driven update process in place",
323
+ "children": [],
324
+ "section": "mandatory"
325
+ },
326
+ {
327
+ "prefix": null,
328
+ "text": "Records retained and demonstrable to the CCE",
329
+ "children": [],
330
+ "section": "mandatory"
331
+ }
332
+ ],
333
+ "evidence": [
334
+ "Customer risk-assessment methodology",
335
+ "Sample customer files with risk ratings and update history"
336
+ ]
337
+ },
338
+ {
339
+ "id": "CAT-02-001",
340
+ "title": "Establish and maintain AML/CFT Systems",
341
+ "category": "CAT-02",
342
+ "risk_domain": null,
343
+ "risk_sub_domain": null,
344
+ "risk_statement": null,
345
+ "parent_control": null,
346
+ "requirement": "An MSO must take all reasonable measures to ensure proper safeguards exist to mitigate ML/TF risks and to prevent a contravention of any requirement under Part 2 or 3 of Schedule 2 to AMLO, by implementing AML/CFT Systems approved by senior management, monitoring their implementation, enhancing them as necessary, and taking enhanced measures where higher risks are identified.",
347
+ "source": "Guideline §3.1, §3.2; s.23, Sch. 2, AMLO",
348
+ "severity": "critical",
349
+ "verification": [
350
+ {
351
+ "prefix": null,
352
+ "text": "AML/CFT Systems documented and approved by senior management",
353
+ "children": [],
354
+ "section": "mandatory"
355
+ },
356
+ {
357
+ "prefix": null,
358
+ "text": "Monitoring of implementation evidenced (e.g. compliance MI, KPIs)",
359
+ "children": [],
360
+ "section": "mandatory"
361
+ },
362
+ {
363
+ "prefix": null,
364
+ "text": "Enhancement actions tracked",
365
+ "children": [],
366
+ "section": "mandatory"
367
+ },
368
+ {
369
+ "prefix": null,
370
+ "text": "Enhanced measures applied to higher-risk areas",
371
+ "children": [],
372
+ "section": "mandatory"
373
+ }
374
+ ],
375
+ "evidence": [
376
+ "Approved AML/CFT Systems policy",
377
+ "Implementation monitoring reports",
378
+ "Issue/enhancement tracker"
379
+ ]
380
+ },
381
+ {
382
+ "id": "CAT-02-002",
383
+ "title": "Senior management oversight of ML/TF risks",
384
+ "category": "CAT-02",
385
+ "risk_domain": null,
386
+ "risk_sub_domain": null,
387
+ "risk_statement": null,
388
+ "parent_control": null,
389
+ "requirement": "The board of directors (or delegated committee) and senior management of an MSO must have a clear understanding of the MSO's ML/TF risks, ensure they are adequately managed, and receive timely, complete, understandable and accurate management information on ML/TF risks and the AML/CFT Systems; senior management is responsible for implementing effective AML/CFT Systems that adequately manage the identified ML/TF risks.",
390
+ "source": "Guideline §3.6, §3.7",
391
+ "severity": "critical",
392
+ "verification": [
393
+ {
394
+ "prefix": null,
395
+ "text": "Governance arrangement defines board/senior management AML/CFT responsibilities",
396
+ "children": [],
397
+ "section": "mandatory"
398
+ },
399
+ {
400
+ "prefix": null,
401
+ "text": "Regular AML/CFT MI reported to senior management",
402
+ "children": [],
403
+ "section": "mandatory"
404
+ },
405
+ {
406
+ "prefix": null,
407
+ "text": "Minutes evidence senior-management engagement and decisions",
408
+ "children": [],
409
+ "section": "mandatory"
410
+ }
411
+ ],
412
+ "evidence": [
413
+ "AML/CFT governance terms of reference",
414
+ "Senior management MI packs",
415
+ "Meeting minutes covering AML/CFT items"
416
+ ]
417
+ },
418
+ {
419
+ "id": "CAT-02-003",
420
+ "title": "Appoint Compliance Officer and Money Laundering Reporting Officer",
421
+ "category": "CAT-02",
422
+ "risk_domain": null,
423
+ "risk_sub_domain": null,
424
+ "risk_statement": null,
425
+ "parent_control": null,
426
+ "requirement": "An MSO must appoint a Compliance Officer (CO) at management level with overall responsibility for the establishment and maintenance of the AML/CFT Systems, and a senior staff as the Money Laundering Reporting Officer (MLRO) to act as the central reference point for suspicious transaction reporting. So far as practicable, the CO and MLRO must be appropriately qualified, independent of operational/business functions (subject to MSO size), normally based in Hong Kong, of sufficient seniority and authority, with direct access to senior management, conversant with statutory/regulatory requirements and ML/TF risks, able to access relevant information on a timely basis, and equipped with sufficient resources and cover for absences.",
427
+ "source": "Guideline §3.5, §3.7, §3.8, §3.9, §3.10",
428
+ "severity": "critical",
429
+ "verification": [
430
+ {
431
+ "prefix": null,
432
+ "text": "Documented CO and MLRO appointments and job descriptions",
433
+ "children": [],
434
+ "section": "mandatory"
435
+ },
436
+ {
437
+ "prefix": null,
438
+ "text": "Qualifications and independence assessed and recorded",
439
+ "children": [],
440
+ "section": "mandatory"
441
+ },
442
+ {
443
+ "prefix": null,
444
+ "text": "Alternate/deputy CO and MLRO designated",
445
+ "children": [],
446
+ "section": "mandatory"
447
+ },
448
+ {
449
+ "prefix": null,
450
+ "text": "Documented direct reporting line to senior management",
451
+ "children": [],
452
+ "section": "mandatory"
453
+ }
454
+ ],
455
+ "evidence": [
456
+ "Appointment letters and job descriptions",
457
+ "CO/MLRO qualification records",
458
+ "Deputy designation documentation"
459
+ ]
460
+ },
461
+ {
462
+ "id": "CAT-02-004",
463
+ "title": "Independent audit function for AML/CFT Systems",
464
+ "category": "CAT-02",
465
+ "risk_domain": null,
466
+ "risk_sub_domain": null,
467
+ "risk_statement": null,
468
+ "parent_control": null,
469
+ "requirement": "An MSO must establish an independent audit function with a direct line of communication to senior management, with sufficient expertise and resources to perform independent reviews of the MSO's AML/CFT Systems; reviews must cover the adequacy of AML/CFT Systems, the ML/TF risk-assessment framework, RBA application, suspicious transaction reporting effectiveness, the compliance function, and staff awareness, with frequency and extent commensurate with the MSO's business and ML/TF risks.",
470
+ "source": "Guideline §3.11, §3.12, §3.13",
471
+ "severity": "major",
472
+ "verification": [
473
+ {
474
+ "prefix": null,
475
+ "text": "Independent audit charter and reporting line documented",
476
+ "children": [],
477
+ "section": "mandatory"
478
+ },
479
+ {
480
+ "prefix": null,
481
+ "text": "Audit plan covers all §3.12 review areas",
482
+ "children": [],
483
+ "section": "mandatory"
484
+ },
485
+ {
486
+ "prefix": null,
487
+ "text": "Audit reports issued and tracked to remediation",
488
+ "children": [],
489
+ "section": "mandatory"
490
+ }
491
+ ],
492
+ "evidence": [
493
+ "Audit function charter",
494
+ "AML/CFT audit plan and reports",
495
+ "Remediation tracker"
496
+ ]
497
+ },
498
+ {
499
+ "id": "CAT-02-005",
500
+ "title": "Employee screening procedures",
501
+ "category": "CAT-02",
502
+ "risk_domain": null,
503
+ "risk_sub_domain": null,
504
+ "risk_statement": null,
505
+ "parent_control": null,
506
+ "requirement": "An MSO must have adequate and appropriate screening procedures to ensure high standards when hiring employees.",
507
+ "source": "Guideline §3.14",
508
+ "severity": "major",
509
+ "verification": [
510
+ {
511
+ "prefix": null,
512
+ "text": "Pre-employment screening procedure documented",
513
+ "children": [],
514
+ "section": "mandatory"
515
+ },
516
+ {
517
+ "prefix": null,
518
+ "text": "Screening records retained per hire",
519
+ "children": [],
520
+ "section": "mandatory"
521
+ }
522
+ ],
523
+ "evidence": [
524
+ "Employee screening policy",
525
+ "Sample screening records"
526
+ ]
527
+ },
528
+ {
529
+ "id": "CAT-02-006",
530
+ "title": "Group-wide AML/CFT Systems for HK-incorporated MSOs",
531
+ "category": "CAT-02",
532
+ "risk_domain": null,
533
+ "risk_sub_domain": null,
534
+ "risk_statement": null,
535
+ "parent_control": null,
536
+ "requirement": "A Hong Kong-incorporated MSO with overseas branches or subsidiary undertakings that carry on the same business as a financial institution must implement group-wide AML/CFT Systems to apply the requirements set out in the Guideline to those branches/subsidiaries wherever applicable, and must ensure they have procedures to comply with CDD and record-keeping requirements similar to those imposed under Parts 2 and 3 of Schedule 2, to the extent permitted by local law. Where the host jurisdiction's laws do not permit the higher requirements, the MSO must inform the CCE of such failure and take additional measures to effectively mitigate ML/TF risks faced by that branch or subsidiary undertaking.",
537
+ "source": "Guideline §3.15, §3.16, §3.18, §3.19; s.22(1), s.22(2), Sch. 2, AMLO",
538
+ "severity": "major",
539
+ "verification": [
540
+ {
541
+ "prefix": null,
542
+ "text": "Group-wide AML/CFT policy applies Guideline requirements to overseas branches/subsidiaries",
543
+ "children": [],
544
+ "section": "mandatory"
545
+ },
546
+ {
547
+ "prefix": null,
548
+ "text": "Local-law conflict register maintained",
549
+ "children": [],
550
+ "section": "mandatory"
551
+ },
552
+ {
553
+ "prefix": null,
554
+ "text": "Notifications to CCE on file for restricted jurisdictions",
555
+ "children": [],
556
+ "section": "mandatory"
557
+ },
558
+ {
559
+ "prefix": null,
560
+ "text": "Mitigation measures documented for those jurisdictions",
561
+ "children": [],
562
+ "section": "mandatory"
563
+ }
564
+ ],
565
+ "evidence": [
566
+ "Group AML/CFT policy",
567
+ "Local-law conflict inventory",
568
+ "CCE notifications"
569
+ ]
570
+ },
571
+ {
572
+ "id": "CAT-03-001",
573
+ "title": "Apply CDD measures at all required trigger points",
574
+ "category": "CAT-03",
575
+ "risk_domain": null,
576
+ "risk_sub_domain": null,
577
+ "risk_statement": null,
578
+ "parent_control": null,
579
+ "requirement": "An MSO must carry out CDD measures in relation to a customer before establishing a business relationship; before carrying out an occasional transaction of HKD 120,000 or more, a wire transfer of HKD 8,000 or more, or a virtual asset transfer of virtual assets amounting to HKD 8,000 or more (including aggregated linked transactions); when ML/TF is suspected; or when the veracity or adequacy of previously obtained identification information is doubted. The MSO must also be vigilant to series of linked occasional transactions that meet or exceed the thresholds.",
580
+ "source": "Guideline §4.2.1, §4.2.4, §4.2.5; s.3(1) & (1A), Sch. 2, AMLO",
581
+ "severity": "critical",
582
+ "verification": [
583
+ {
584
+ "prefix": null,
585
+ "text": "Onboarding workflow blocks relationship setup until CDD is complete",
586
+ "children": [],
587
+ "section": "mandatory"
588
+ },
589
+ {
590
+ "prefix": null,
591
+ "text": "Transaction systems enforce thresholds and aggregate linked transactions",
592
+ "children": [],
593
+ "section": "mandatory"
594
+ },
595
+ {
596
+ "prefix": null,
597
+ "text": "STR/SAR workflow triggers re-CDD on suspicion",
598
+ "children": [],
599
+ "section": "mandatory"
600
+ },
601
+ {
602
+ "prefix": null,
603
+ "text": "Re-verification process exists for doubted information",
604
+ "children": [],
605
+ "section": "mandatory"
606
+ }
607
+ ],
608
+ "evidence": [
609
+ "CDD trigger procedure",
610
+ "System control specifications",
611
+ "Sample transaction/onboarding audit trails"
612
+ ]
613
+ },
614
+ {
615
+ "id": "CAT-03-002",
616
+ "title": "Identify and verify customer that is a natural person",
617
+ "category": "CAT-03",
618
+ "risk_domain": null,
619
+ "risk_sub_domain": null,
620
+ "risk_statement": null,
621
+ "parent_control": null,
622
+ "requirement": "An MSO must identify a customer that is a natural person by obtaining at least full name, date of birth, nationality, unique identification number and document type; and verify the name, date of birth, unique identification number and document type by reference to documents, data or information from a reliable and independent source (e.g. Hong Kong identity card, valid travel document, or other reliable and independent source). Identification documents should contain a photograph of the customer; exceptions require documented assessment and mitigation of associated risk. Residential address information must be obtained.",
623
+ "source": "Guideline §4.3.1, §4.3.2, §4.3.3, §4.3.4, §4.3.5; s.2(1)(a), Sch. 2, AMLO",
624
+ "severity": "critical",
625
+ "verification": [
626
+ {
627
+ "prefix": null,
628
+ "text": "Natural-person identification fields captured per §4.3.2",
629
+ "children": [],
630
+ "section": "mandatory"
631
+ },
632
+ {
633
+ "prefix": null,
634
+ "text": "Verification documents on file per §4.3.3 with source recorded",
635
+ "children": [],
636
+ "section": "mandatory"
637
+ },
638
+ {
639
+ "prefix": null,
640
+ "text": "Photograph-bearing ID obtained, or documented risk assessment for exception",
641
+ "children": [],
642
+ "section": "mandatory"
643
+ },
644
+ {
645
+ "prefix": null,
646
+ "text": "Residential address recorded",
647
+ "children": [],
648
+ "section": "mandatory"
649
+ }
650
+ ],
651
+ "evidence": [
652
+ "Customer onboarding form",
653
+ "Copy of verified identification document",
654
+ "Risk-assessment record for any non-photo exception"
655
+ ]
656
+ },
657
+ {
658
+ "id": "CAT-03-003",
659
+ "title": "Identify and verify customer that is a legal person",
660
+ "category": "CAT-03",
661
+ "risk_domain": null,
662
+ "risk_sub_domain": null,
663
+ "risk_statement": null,
664
+ "parent_control": null,
665
+ "requirement": "An MSO must identify a customer that is a legal person by obtaining at least full name; date of incorporation/establishment/registration; place of incorporation/establishment/registration (including registered office address); unique identification number (e.g. incorporation number, business registration number) and document type; and principal place of business (if different); and verify name, legal form, current existence and powers that regulate and bind the legal person by reference to documents from a reliable and independent source (e.g. certificate of incorporation, company registry record, certificate of incumbency/good standing, partnership agreement, constitutional document).",
666
+ "source": "Guideline §4.3.6, §4.3.7, §4.3.8, §4.3.9; s.2(1)(a), Sch. 2, AMLO",
667
+ "severity": "critical",
668
+ "verification": [
669
+ {
670
+ "prefix": null,
671
+ "text": "Legal-person identification fields captured per §4.3.6",
672
+ "children": [],
673
+ "section": "mandatory"
674
+ },
675
+ {
676
+ "prefix": null,
677
+ "text": "Verification documents on file per §4.3.7",
678
+ "children": [],
679
+ "section": "mandatory"
680
+ },
681
+ {
682
+ "prefix": null,
683
+ "text": "Current existence verified at the time of verification",
684
+ "children": [],
685
+ "section": "mandatory"
686
+ },
687
+ {
688
+ "prefix": null,
689
+ "text": "For associations/clubs/etc., legitimate purpose evidenced (e.g. constitution)",
690
+ "children": [],
691
+ "section": "mandatory"
692
+ }
693
+ ],
694
+ "evidence": [
695
+ "Certificate of incorporation or registry extract",
696
+ "Constitutional documents",
697
+ "Onboarding memo evidencing current-existence check"
698
+ ]
699
+ },
700
+ {
701
+ "id": "CAT-03-004",
702
+ "title": "Identify and verify customer that is a trust or similar legal arrangement",
703
+ "category": "CAT-03",
704
+ "risk_domain": null,
705
+ "risk_sub_domain": null,
706
+ "risk_statement": null,
707
+ "parent_control": null,
708
+ "requirement": "For a trust or other similar legal arrangement customer, an MSO must obtain at least name of the trust/legal arrangement, date of establishment, governing jurisdiction, unique identification number (if any) and document type, and address of registered office (if applicable); and must verify name, legal form, current existence and powers that regulate and bind the trust by reference to a reliable and independent source (e.g. trust deed, register record, written confirmation from a professional trustee or lawyer who has reviewed the instrument). Where the trustee enters into the relationship on behalf of the trust, the trustee must also be identified and verified per natural- or legal-person requirements.",
709
+ "source": "Guideline §4.3.10, §4.3.11, §4.3.12; s.2(1)(a), Sch. 2, AMLO",
710
+ "severity": "critical",
711
+ "verification": [
712
+ {
713
+ "prefix": null,
714
+ "text": "Trust identification fields captured per §4.3.11",
715
+ "children": [],
716
+ "section": "mandatory"
717
+ },
718
+ {
719
+ "prefix": null,
720
+ "text": "Verification documents on file per §4.3.12",
721
+ "children": [],
722
+ "section": "mandatory"
723
+ },
724
+ {
725
+ "prefix": null,
726
+ "text": "Trustee identified and verified where applicable",
727
+ "children": [],
728
+ "section": "mandatory"
729
+ }
730
+ ],
731
+ "evidence": [
732
+ "Trust deed or equivalent",
733
+ "Trustee identification record"
734
+ ]
735
+ },
736
+ {
737
+ "id": "CAT-03-005",
738
+ "title": "Ensure currency and integrity of identification documents",
739
+ "category": "CAT-03",
740
+ "risk_domain": null,
741
+ "risk_sub_domain": null,
742
+ "risk_statement": null,
743
+ "parent_control": null,
744
+ "requirement": "An MSO must ensure that documents, data or information used to verify the identity of a customer are current at the time they are provided to or obtained by the MSO; must apply anti-fraud procedures commensurate with the risk profile of the person being verified; for in-person CDD must generally have sight of the original identification document and retain a copy (and where original cannot be produced, take appropriate measures to ensure reliability); and where documents are in a foreign language must take appropriate steps to be reasonably satisfied of identity.",
745
+ "source": "Guideline §4.3.14, §4.3.15, §4.3.16, §4.3.17",
746
+ "severity": "major",
747
+ "verification": [
748
+ {
749
+ "prefix": null,
750
+ "text": "Onboarding procedure mandates current-at-time-of-receipt check",
751
+ "children": [],
752
+ "section": "mandatory"
753
+ },
754
+ {
755
+ "prefix": null,
756
+ "text": "Anti-fraud controls (document authenticity checks) applied",
757
+ "children": [],
758
+ "section": "mandatory"
759
+ },
760
+ {
761
+ "prefix": null,
762
+ "text": "Original-sighting procedure for in-person onboarding",
763
+ "children": [],
764
+ "section": "mandatory"
765
+ },
766
+ {
767
+ "prefix": null,
768
+ "text": "Foreign-language handling procedure (translation/independent review)",
769
+ "children": [],
770
+ "section": "mandatory"
771
+ }
772
+ ],
773
+ "evidence": [
774
+ "Onboarding procedure",
775
+ "Document-authentication tooling/process",
776
+ "Sample foreign-language CDD case file"
777
+ ]
778
+ },
779
+ {
780
+ "id": "CAT-03-006",
781
+ "title": "Identify connected parties of legal persons and trusts",
782
+ "category": "CAT-03",
783
+ "risk_domain": null,
784
+ "risk_sub_domain": null,
785
+ "risk_statement": null,
786
+ "parent_control": null,
787
+ "requirement": "Where the customer is a legal person, trust or other similar legal arrangement, an MSO must identify all connected parties of the customer by obtaining their names — namely, directors of a corporation, partners of a partnership, trustees (or equivalents) of a trust, or natural persons holding senior management/executive authority in other cases.",
788
+ "source": "Guideline §4.3.18, §4.3.19",
789
+ "severity": "major",
790
+ "verification": [
791
+ {
792
+ "prefix": null,
793
+ "text": "Connected-party register maintained per entity customer",
794
+ "children": [],
795
+ "section": "mandatory"
796
+ },
797
+ {
798
+ "prefix": null,
799
+ "text": "Onboarding form captures connected-party names",
800
+ "children": [],
801
+ "section": "mandatory"
802
+ }
803
+ ],
804
+ "evidence": [
805
+ "Connected-party listing per customer file"
806
+ ]
807
+ },
808
+ {
809
+ "id": "CAT-03-007",
810
+ "title": "Identify and verify beneficial owners",
811
+ "category": "CAT-03",
812
+ "risk_domain": null,
813
+ "risk_sub_domain": null,
814
+ "risk_statement": null,
815
+ "parent_control": null,
816
+ "requirement": "An MSO must identify any beneficial owner in relation to a customer (using the AMLO definitions and the >25% ownership/voting/control thresholds) and take reasonable measures to verify the beneficial owner's identity. For a customer that is a legal person, the MSO must identify any natural person ultimately holding a controlling ownership interest and any natural person exercising control, and where no such natural person can be identified, must identify natural persons holding senior managing official positions. For a customer that is a trust, identify the settlor, trustee, protector, enforcer, beneficiaries (or class) and any natural person exercising ultimate control. The MSO must understand the ownership and control structure of any legal person or trust customer.",
817
+ "source": "Guideline §4.4.1, §4.4.6, §4.4.7, §4.4.8, §4.4.9, §4.4.10, §4.4.11, §4.4.13, §4.4.14; s.2(1)(b), Sch. 2, AMLO",
818
+ "severity": "critical",
819
+ "verification": [
820
+ {
821
+ "prefix": null,
822
+ "text": "Beneficial-owner identification procedure applies AMLO thresholds and senior-managing-official fallback",
823
+ "children": [],
824
+ "section": "mandatory"
825
+ },
826
+ {
827
+ "prefix": null,
828
+ "text": "Ownership/control structure mapped (e.g. ownership chart)",
829
+ "children": [],
830
+ "section": "mandatory"
831
+ },
832
+ {
833
+ "prefix": null,
834
+ "text": "Reasonable verification measures applied to each beneficial owner",
835
+ "children": [],
836
+ "section": "mandatory"
837
+ },
838
+ {
839
+ "prefix": null,
840
+ "text": "For complex structures, MSO obtains sufficient information to satisfy itself of the legitimate reason for the structure",
841
+ "children": [],
842
+ "section": "mandatory"
843
+ }
844
+ ],
845
+ "evidence": [
846
+ "Beneficial-ownership declaration",
847
+ "Ownership-structure chart",
848
+ "Verification records for each beneficial owner"
849
+ ]
850
+ },
851
+ {
852
+ "id": "CAT-03-008",
853
+ "title": "Bearer-share and nominee-shareholder customers",
854
+ "category": "CAT-03",
855
+ "risk_domain": null,
856
+ "risk_sub_domain": null,
857
+ "risk_statement": null,
858
+ "parent_control": null,
859
+ "requirement": "Where a customer's ownership structure involves bearer shares, the MSO must adopt procedures to establish the identities of beneficial owners of such shares and ensure it is notified of any change of beneficial owner; where bearer shares are deposited with an authorised/registered custodian, the MSO must seek independent evidence of this, including custodian identity and the person entitled, and reconfirm this in periodic review; where not so deposited, the MSO must obtain declarations from each beneficial owner before account opening and annually thereafter, and require the customer to notify any ownership change immediately. For customers with nominee shareholders, the MSO must obtain satisfactory evidence of nominee identities, the persons on whose behalf they act, and the arrangement details, to determine the beneficial owner.",
860
+ "source": "Guideline §4.4.15, §4.4.16, §4.4.17, §4.4.18",
861
+ "severity": "major",
862
+ "verification": [
863
+ {
864
+ "prefix": null,
865
+ "text": "Procedure addresses bearer-share customers (custodian vs non-custodian routes)",
866
+ "children": [],
867
+ "section": "mandatory"
868
+ },
869
+ {
870
+ "prefix": null,
871
+ "text": "Annual declaration captured for non-custodian bearer-share customers",
872
+ "children": [],
873
+ "section": "mandatory"
874
+ },
875
+ {
876
+ "prefix": null,
877
+ "text": "Nominee-shareholder arrangements documented per customer",
878
+ "children": [],
879
+ "section": "mandatory"
880
+ }
881
+ ],
882
+ "evidence": [
883
+ "Bearer-share/nominee policy",
884
+ "Annual declarations and custodian confirmations",
885
+ "Nominee-arrangement records"
886
+ ]
887
+ },
888
+ {
889
+ "id": "CAT-03-009",
890
+ "title": "Identify and verify persons purporting to act on behalf of the customer (PPTA)",
891
+ "category": "CAT-03",
892
+ "risk_domain": null,
893
+ "risk_sub_domain": null,
894
+ "risk_statement": null,
895
+ "parent_control": null,
896
+ "requirement": "If a person is a PPTA, an MSO must identify the person and take reasonable measures to verify the person's identity using documents, data or information from a governmental body, the CCE or another relevant authority, an equivalent foreign authority, or another reliable and independent source recognised by the CCE; and must verify the person's authority to act on behalf of the customer by appropriate documentary evidence (e.g. board resolution or similar written authorisation). The MSO must implement clear policies and procedures for determining who is a PPTA.",
897
+ "source": "Guideline §4.5.1, §4.5.2, §4.5.3, §4.5.4; s.2(1)(d), Sch. 2, AMLO",
898
+ "severity": "critical",
899
+ "verification": [
900
+ {
901
+ "prefix": null,
902
+ "text": "PPTA-identification policy in place",
903
+ "children": [],
904
+ "section": "mandatory"
905
+ },
906
+ {
907
+ "prefix": null,
908
+ "text": "PPTA identity and authority records on file",
909
+ "children": [],
910
+ "section": "mandatory"
911
+ },
912
+ {
913
+ "prefix": null,
914
+ "text": "Authority document (POA/resolution/letter) collected and assessed",
915
+ "children": [],
916
+ "section": "mandatory"
917
+ }
918
+ ],
919
+ "evidence": [
920
+ "PPTA policy",
921
+ "PPTA file with identity and authority records"
922
+ ]
923
+ },
924
+ {
925
+ "id": "CAT-03-010",
926
+ "title": "Understand purpose and intended nature of business relationship",
927
+ "category": "CAT-03",
928
+ "risk_domain": null,
929
+ "risk_sub_domain": null,
930
+ "risk_statement": null,
931
+ "parent_control": null,
932
+ "requirement": "An MSO must understand the purpose and intended nature of the business relationship; the information obtained must be commensurate with the customer's risk profile and the nature of the relationship; where the customer is not a natural person, the MSO must also understand the nature of the customer's business.",
933
+ "source": "Guideline §4.6.1; s.2(1)(c), Sch. 2, AMLO",
934
+ "severity": "major",
935
+ "verification": [
936
+ {
937
+ "prefix": null,
938
+ "text": "Onboarding captures purpose and intended nature",
939
+ "children": [],
940
+ "section": "mandatory"
941
+ },
942
+ {
943
+ "prefix": null,
944
+ "text": "For non-natural-person customers, nature of business recorded",
945
+ "children": [],
946
+ "section": "mandatory"
947
+ }
948
+ ],
949
+ "evidence": [
950
+ "Onboarding questionnaire"
951
+ ]
952
+ },
953
+ {
954
+ "id": "CAT-03-011",
955
+ "title": "Timing of verification — deferral conditions",
956
+ "category": "CAT-03",
957
+ "risk_domain": null,
958
+ "risk_sub_domain": null,
959
+ "risk_statement": null,
960
+ "parent_control": null,
961
+ "requirement": "An MSO must verify the identity of a customer and any beneficial owner before or during the course of establishing a business relationship or conducting transactions for occasional customers. Verification may be completed after relationship establishment only where the risk of ML/TF can be effectively managed, it is necessary not to interrupt normal business conduct, and verification is completed as soon as reasonably practicable. Where deferred verification is permitted, the MSO must adopt risk management policies covering: a reasonable timeframe and follow-up if exceeded; appropriate transaction limits; monitoring of large/complex out-of-norm transactions; periodic senior-management updates on pending completions; and a prohibition on third-party payouts (with conditional carve-outs requiring no suspicion, low risk, senior management approval and watch-list screening).",
962
+ "source": "Guideline §4.7.1, §4.7.2, §4.7.3; s.3(2), (3), Sch. 2, AMLO",
963
+ "severity": "critical",
964
+ "verification": [
965
+ {
966
+ "prefix": null,
967
+ "text": "Deferral policy enumerates the §4.7.1 conditions",
968
+ "children": [],
969
+ "section": "mandatory"
970
+ },
971
+ {
972
+ "prefix": null,
973
+ "text": "Documented limits, monitoring, escalation and third-party-payout controls",
974
+ "children": [],
975
+ "section": "mandatory"
976
+ },
977
+ {
978
+ "prefix": null,
979
+ "text": "Pending-completion reporting to senior management",
980
+ "children": [],
981
+ "section": "mandatory"
982
+ }
983
+ ],
984
+ "evidence": [
985
+ "Deferred-verification procedure",
986
+ "Sample deferral cases with controls evidenced"
987
+ ]
988
+ },
989
+ {
990
+ "id": "CAT-03-012",
991
+ "title": "Refusal and termination when CDD cannot be completed",
992
+ "category": "CAT-03",
993
+ "risk_domain": null,
994
+ "risk_sub_domain": null,
995
+ "risk_statement": null,
996
+ "parent_control": null,
997
+ "requirement": "Where an MSO is unable to comply with the CDD requirements (including deferred verification not completed within the policy timeframe) and ongoing due diligence requirements, it must not establish a business relationship or carry out any occasional transaction with the customer and must terminate the existing business relationship as soon as reasonably practicable (where applicable), refraining from carrying out further transactions except, as far as possible, to return funds/assets in their original form; the MSO must also assess whether the failure provides grounds for ML/TF knowledge or suspicion and consider filing an STR with the JFIU.",
998
+ "source": "Guideline §4.7.4, §4.13.1; s.3(1) & (4), Sch. 2, AMLO; s.25A, DTROP/OSCO; s.12, UNATMO",
999
+ "severity": "critical",
1000
+ "verification": [
1001
+ {
1002
+ "prefix": null,
1003
+ "text": "Refusal/termination workflow documented and operational",
1004
+ "children": [],
1005
+ "section": "mandatory"
1006
+ },
1007
+ {
1008
+ "prefix": null,
1009
+ "text": "Cases logged of refused/terminated relationships",
1010
+ "children": [],
1011
+ "section": "mandatory"
1012
+ },
1013
+ {
1014
+ "prefix": null,
1015
+ "text": "STR-assessment performed and recorded on termination",
1016
+ "children": [],
1017
+ "section": "mandatory"
1018
+ }
1019
+ ],
1020
+ "evidence": [
1021
+ "Refusal/termination procedure",
1022
+ "Termination case files",
1023
+ "STR-assessment records"
1024
+ ]
1025
+ },
1026
+ {
1027
+ "id": "CAT-03-013",
1028
+ "title": "Prohibition on anonymous or fictitious-name accounts",
1029
+ "category": "CAT-03",
1030
+ "risk_domain": null,
1031
+ "risk_sub_domain": null,
1032
+ "risk_statement": null,
1033
+ "parent_control": null,
1034
+ "requirement": "An MSO must not open or maintain any anonymous account or account in a fictitious name for any customer; confidential numbered accounts must be subject to the same CDD and control measures as all other business relationships, and the customer's CDD record must be available to the CCE, other competent authorities, the CO, auditors and other staff with appropriate authority.",
1035
+ "source": "Guideline §4.14.1; s.16, Sch. 2, AMLO",
1036
+ "severity": "critical",
1037
+ "verification": [
1038
+ {
1039
+ "prefix": null,
1040
+ "text": "System controls prevent anonymous/fictitious-name account opening",
1041
+ "children": [],
1042
+ "section": "mandatory"
1043
+ },
1044
+ {
1045
+ "prefix": null,
1046
+ "text": "Confidential numbered accounts (if any) subject to full CDD",
1047
+ "children": [],
1048
+ "section": "mandatory"
1049
+ },
1050
+ {
1051
+ "prefix": null,
1052
+ "text": "CDD records accessible to authorised parties",
1053
+ "children": [],
1054
+ "section": "mandatory"
1055
+ }
1056
+ ],
1057
+ "evidence": [
1058
+ "Account-opening control documentation",
1059
+ "Numbered-account control procedure"
1060
+ ]
1061
+ },
1062
+ {
1063
+ "id": "CAT-04-001",
1064
+ "title": "Apply SDD only where eligibility is established",
1065
+ "category": "CAT-04",
1066
+ "risk_domain": null,
1067
+ "risk_sub_domain": null,
1068
+ "risk_statement": null,
1069
+ "parent_control": null,
1070
+ "requirement": "An MSO applying simplified due diligence (SDD) must do so only after a documented determination that the business relationship or transaction presents a low ML/TF risk; SDD must not be applied or continue to be applied where the risk assessment changes, ML/TF is suspected, or there are doubts about previously obtained information. The MSO is still required to continuously monitor the business relationship (ongoing CDD and transaction monitoring) when applying SDD. Where the MSO chooses not to identify or verify the beneficial owner of a qualifying customer or product (§4.8.9 to §4.8.20), the qualifying category, product, or solicitor's client-account criteria must be evidenced.",
1071
+ "source": "Guideline §4.8.1–§4.8.20; s.4, Sch. 2, AMLO",
1072
+ "severity": "major",
1073
+ "verification": [
1074
+ {
1075
+ "prefix": null,
1076
+ "text": "SDD eligibility test applied and documented before applying simplified measures",
1077
+ "children": [],
1078
+ "section": "mandatory"
1079
+ },
1080
+ {
1081
+ "prefix": null,
1082
+ "text": "Documentary basis for qualifying customer/product category recorded",
1083
+ "children": [],
1084
+ "section": "mandatory"
1085
+ },
1086
+ {
1087
+ "prefix": null,
1088
+ "text": "Ongoing monitoring still applied to SDD customers",
1089
+ "children": [],
1090
+ "section": "mandatory"
1091
+ },
1092
+ {
1093
+ "prefix": null,
1094
+ "text": "SDD discontinuation triggers operational",
1095
+ "children": [],
1096
+ "section": "mandatory"
1097
+ }
1098
+ ],
1099
+ "evidence": [
1100
+ "SDD eligibility memos",
1101
+ "Periodic re-eligibility review",
1102
+ "Monitoring evidence on SDD customers"
1103
+ ]
1104
+ },
1105
+ {
1106
+ "id": "CAT-04-002",
1107
+ "title": "Apply EDD in high-risk situations",
1108
+ "category": "CAT-04",
1109
+ "risk_domain": null,
1110
+ "risk_sub_domain": null,
1111
+ "risk_statement": null,
1112
+ "parent_control": null,
1113
+ "requirement": "An MSO must apply enhanced due diligence (EDD) measures to mitigate and manage high ML/TF risks in any situation that by its nature presents a high ML/TF risk (taking into account the §4.9.5 risk factors) or in any situation specified by the CCE in writing; the extent of EDD must be commensurate with the risk and justifiable to the CCE. Senior-management approval must be obtained to establish a high-risk relationship or continue one subsequently assessed as high-risk, and enhanced ongoing monitoring of that relationship must be conducted. Where applicable EDD measures cannot fully mitigate the risks, the MSO must take other measures to mitigate residual risks.",
1114
+ "source": "Guideline §4.9.1, §4.9.2, §4.9.3, §4.9.4, §4.9.5, §4.9.6; s.10 & s.15, Sch. 2, AMLO",
1115
+ "severity": "critical",
1116
+ "verification": [
1117
+ {
1118
+ "prefix": null,
1119
+ "text": "High-risk identification process operational",
1120
+ "children": [],
1121
+ "section": "mandatory"
1122
+ },
1123
+ {
1124
+ "prefix": null,
1125
+ "text": "Senior-management approval recorded for high-risk relationships (new and continuing)",
1126
+ "children": [],
1127
+ "section": "mandatory"
1128
+ },
1129
+ {
1130
+ "prefix": null,
1131
+ "text": "EDD measures applied and documented proportionate to risk",
1132
+ "children": [],
1133
+ "section": "mandatory"
1134
+ },
1135
+ {
1136
+ "prefix": null,
1137
+ "text": "Enhanced ongoing monitoring evidenced",
1138
+ "children": [],
1139
+ "section": "mandatory"
1140
+ },
1141
+ {
1142
+ "prefix": null,
1143
+ "text": "Residual-risk mitigation documented where EDD does not fully mitigate",
1144
+ "children": [],
1145
+ "section": "mandatory"
1146
+ }
1147
+ ],
1148
+ "evidence": [
1149
+ "High-risk customer policy",
1150
+ "Senior-management approval records",
1151
+ "EDD case files"
1152
+ ]
1153
+ },
1154
+ {
1155
+ "id": "CAT-04-003",
1156
+ "title": "Detect and apply EDD to non-Hong Kong PEPs",
1157
+ "category": "CAT-04",
1158
+ "risk_domain": null,
1159
+ "risk_sub_domain": null,
1160
+ "risk_statement": null,
1161
+ "parent_control": null,
1162
+ "requirement": "An MSO must establish and maintain effective procedures (e.g. publicly available information and/or commercially available databases) for determining whether a customer or a beneficial owner is a non-Hong Kong PEP; when such status is known, before establishing or continuing a business relationship the MSO must obtain senior-management approval, take reasonable measures to establish source of wealth and source of funds, and conduct enhanced ongoing monitoring. For former non-Hong Kong PEPs, the EDD carve-out may be applied only with senior-management approval and based on a documented risk assessment that the PEP no longer presents a high ML/TF risk.",
1163
+ "source": "Guideline §4.9.7, §4.9.8, §4.9.9, §4.9.10, §4.9.11, §4.9.12; s.19(1), s.5(3)(b), s.10(1) & (2), s.10(3), Sch. 2, AMLO",
1164
+ "severity": "critical",
1165
+ "verification": [
1166
+ {
1167
+ "prefix": null,
1168
+ "text": "PEP-detection procedure documented (sources, screening cadence, escalation)",
1169
+ "children": [],
1170
+ "section": "mandatory"
1171
+ },
1172
+ {
1173
+ "prefix": null,
1174
+ "text": "Senior-management approval and SoW/SoF records on file for each PEP",
1175
+ "children": [],
1176
+ "section": "mandatory"
1177
+ },
1178
+ {
1179
+ "prefix": null,
1180
+ "text": "Enhanced monitoring applied to PEP relationships",
1181
+ "children": [],
1182
+ "section": "mandatory"
1183
+ },
1184
+ {
1185
+ "prefix": null,
1186
+ "text": "Former-PEP carve-out supported by risk-assessment records",
1187
+ "children": [],
1188
+ "section": "mandatory"
1189
+ }
1190
+ ],
1191
+ "evidence": [
1192
+ "PEP-detection procedure",
1193
+ "PEP case files with approvals and SoW/SoF documents",
1194
+ "Former-PEP risk-assessment memos"
1195
+ ]
1196
+ },
1197
+ {
1198
+ "id": "CAT-04-004",
1199
+ "title": "Detect and apply EDD to Hong Kong and international organisation PEPs",
1200
+ "category": "CAT-04",
1201
+ "risk_domain": null,
1202
+ "risk_sub_domain": null,
1203
+ "risk_statement": null,
1204
+ "parent_control": null,
1205
+ "requirement": "An MSO must take reasonable measures to determine whether a customer or beneficial owner is a Hong Kong PEP or international organisation PEP, and must apply the EDD measures in §4.9.10 in any of the following: before establishing a high-risk relationship with such a PEP customer/beneficial owner; when continuing an existing relationship with such a PEP that subsequently becomes high-risk; or when continuing an existing high-risk relationship where the MSO subsequently learns the customer/beneficial owner is such a PEP. The former-PEP carve-out for these PEP types is subject to senior-management approval and a documented risk assessment.",
1206
+ "source": "Guideline §4.9.13, §4.9.14, §4.9.15, §4.9.16, §4.9.17, §4.9.18; s.15, Sch. 2, AMLO",
1207
+ "severity": "critical",
1208
+ "verification": [
1209
+ {
1210
+ "prefix": null,
1211
+ "text": "PEP-detection procedure covers HK and international organisation PEPs",
1212
+ "children": [],
1213
+ "section": "mandatory"
1214
+ },
1215
+ {
1216
+ "prefix": null,
1217
+ "text": "EDD trigger conditions per §4.9.17 operationalised",
1218
+ "children": [],
1219
+ "section": "mandatory"
1220
+ },
1221
+ {
1222
+ "prefix": null,
1223
+ "text": "Former-PEP carve-out supported by risk-assessment records",
1224
+ "children": [],
1225
+ "section": "mandatory"
1226
+ }
1227
+ ],
1228
+ "evidence": [
1229
+ "PEP-detection procedure",
1230
+ "HK/IO PEP case files with approvals and SoW/SoF documents"
1231
+ ]
1232
+ },
1233
+ {
1234
+ "id": "CAT-04-005",
1235
+ "title": "Non-face-to-face customer additional measures",
1236
+ "category": "CAT-04",
1237
+ "risk_domain": null,
1238
+ "risk_sub_domain": null,
1239
+ "risk_statement": null,
1240
+ "parent_control": null,
1241
+ "requirement": "Where a customer has not been physically present for identification purposes, an MSO must carry out at least one of: further verification using documents/data not previously used; supplementary measures to verify obtained information; or routing the first payment through an account opened in the customer's name with an authorised institution or an equivalent foreign institution. This requirement does not apply where the MSO has verified the customer's identity based on data from a digital identification system recognised by the CCE. The MSO must demonstrate to the CCE that the supplementary measure(s) adequately guard against impersonation risk, and should mitigate increased risk where non-natural-person customers establish a relationship via a non-face-to-face channel.",
1242
+ "source": "Guideline §4.10.1, §4.10.2, §4.10.3, §4.10.4, §4.10.5; s.9(1), s.9(2), Sch. 2, AMLO",
1243
+ "severity": "critical",
1244
+ "verification": [
1245
+ {
1246
+ "prefix": null,
1247
+ "text": "Non-face-to-face onboarding workflow applies at least one §4.10.1 measure",
1248
+ "children": [],
1249
+ "section": "mandatory"
1250
+ },
1251
+ {
1252
+ "prefix": null,
1253
+ "text": "Selected measure(s) recorded per customer",
1254
+ "children": [],
1255
+ "section": "mandatory"
1256
+ },
1257
+ {
1258
+ "prefix": null,
1259
+ "text": "Digital-ID-system exemption applied only where CCE-recognised",
1260
+ "children": [],
1261
+ "section": "mandatory"
1262
+ },
1263
+ {
1264
+ "prefix": null,
1265
+ "text": "Demonstrable case for adequacy of supplementary measures",
1266
+ "children": [],
1267
+ "section": "mandatory"
1268
+ }
1269
+ ],
1270
+ "evidence": [
1271
+ "Non-face-to-face onboarding procedure",
1272
+ "Sample case files",
1273
+ "Digital ID system approval reference"
1274
+ ]
1275
+ },
1276
+ {
1277
+ "id": "CAT-04-006",
1278
+ "title": "Jurisdictions subject to FATF call and CCE notices",
1279
+ "category": "CAT-04",
1280
+ "risk_domain": null,
1281
+ "risk_sub_domain": null,
1282
+ "risk_statement": null,
1283
+ "parent_control": null,
1284
+ "requirement": "An MSO must apply EDD measures, proportionate to the risks, to business relationships and transactions with natural and legal persons (including FIs) from jurisdictions for which this is called for by the FATF; where mandatory EDD or countermeasures are called for by FATF, or in circumstances independent of any FATF call but considered higher risk, the MSO must comply with general obligations under section 15 of Schedule 2 or specific countermeasures specified by the CCE in writing. The MSO must also document its assessment of jurisdictional equivalence and review such assessments on a regular basis and upon trigger events.",
1285
+ "source": "Guideline §4.15.1, §4.15.2, §4.16.1, §4.16.2, §4.16.3; s.15, s.4(3)(b)(i), s.4(3)(d)(iii), s.4(3)(f), s.9(1)(c)(ii), s.18(3)(c), Sch. 2, AMLO",
1286
+ "severity": "major",
1287
+ "verification": [
1288
+ {
1289
+ "prefix": null,
1290
+ "text": "FATF-call register maintained and applied in onboarding/monitoring",
1291
+ "children": [],
1292
+ "section": "mandatory"
1293
+ },
1294
+ {
1295
+ "prefix": null,
1296
+ "text": "CCE notice handling procedure documented",
1297
+ "children": [],
1298
+ "section": "mandatory"
1299
+ },
1300
+ {
1301
+ "prefix": null,
1302
+ "text": "Jurisdictional-equivalence assessments documented and reviewed",
1303
+ "children": [],
1304
+ "section": "mandatory"
1305
+ }
1306
+ ],
1307
+ "evidence": [
1308
+ "FATF-call and CCE-notice register",
1309
+ "Jurisdictional-equivalence assessment records"
1310
+ ]
1311
+ },
1312
+ {
1313
+ "id": "CAT-05-001",
1314
+ "title": "Reliance on intermediaries — formal requirements",
1315
+ "category": "CAT-05",
1316
+ "risk_domain": null,
1317
+ "risk_sub_domain": null,
1318
+ "risk_statement": null,
1319
+ "parent_control": null,
1320
+ "requirement": "When an MSO relies on an intermediary to perform any part of CDD measures specified in section 2 of Schedule 2, the MSO must obtain written confirmation from the intermediary that it agrees to act as the MSO's intermediary and which part of the CDD measures it will perform, and must be satisfied that the intermediary will on request provide copies of any document, or a record of any data or information, obtained in the course of CDD without delay. Immediately after the intermediary has carried out a measure, the MSO must obtain the data or information collected; the MSO must ensure the intermediary will, if requested within the §20 retention period, supply copies of underlying documents/records as soon as reasonably practicable. The ultimate responsibility for ensuring CDD requirements are met remains with the MSO.",
1321
+ "source": "Guideline §4.11.1, §4.11.3, §4.11.4, §4.11.5, §4.11.6, §4.11.7; s.18(1), s.18(4)(a), s.18(4)(b), Sch. 2, AMLO",
1322
+ "severity": "major",
1323
+ "verification": [
1324
+ {
1325
+ "prefix": null,
1326
+ "text": "Written intermediary consent on file",
1327
+ "children": [],
1328
+ "section": "mandatory"
1329
+ },
1330
+ {
1331
+ "prefix": null,
1332
+ "text": "Information-on-demand workflow operational",
1333
+ "children": [],
1334
+ "section": "mandatory"
1335
+ },
1336
+ {
1337
+ "prefix": null,
1338
+ "text": "Sample testing of intermediary's CDD information supply",
1339
+ "children": [],
1340
+ "section": "mandatory"
1341
+ },
1342
+ {
1343
+ "prefix": null,
1344
+ "text": "Procedure for intermediary review/termination on reliability concerns",
1345
+ "children": [],
1346
+ "section": "mandatory"
1347
+ }
1348
+ ],
1349
+ "evidence": [
1350
+ "Intermediary register",
1351
+ "Signed intermediary consents",
1352
+ "Sample-test records"
1353
+ ]
1354
+ },
1355
+ {
1356
+ "id": "CAT-05-002",
1357
+ "title": "Intermediary eligibility — domestic, overseas and related foreign FIs",
1358
+ "category": "CAT-05",
1359
+ "risk_domain": null,
1360
+ "risk_sub_domain": null,
1361
+ "risk_statement": null,
1362
+ "parent_control": null,
1363
+ "requirement": "An MSO may rely only on intermediaries that fall within the eligible categories: domestic intermediaries (intermediary FI, accounting professional, estate agent, legal professional, or TCSP licensee — with the further satisfaction that an accounting professional/estate agent/legal professional/TCSP licensee has adequate ML/TF procedures and is required to comply with relevant Schedule 2 requirements with respect to the customer); overseas intermediaries that fall within the §4.11.10 categories, are registered/licensed/regulated in an equivalent jurisdiction, have measures in place to ensure compliance with requirements similar to Schedule 2, and are supervised for compliance by an authority performing functions similar to those of any of the RAs; or related foreign FIs satisfying the §4.11.12 group, group-policy and group-level supervision tests. The MSO must take appropriate measures to ascertain eligibility for each intermediary type.",
1364
+ "source": "Guideline §4.11.8, §4.11.9, §4.11.10, §4.11.11, §4.11.12, §4.11.13, §4.11.14; s.18(3)(a), (3)(b), (3)(c), (3)(d), (3A), (7), Sch. 2, AMLO",
1365
+ "severity": "major",
1366
+ "verification": [
1367
+ {
1368
+ "prefix": null,
1369
+ "text": "Eligibility category and qualifying basis documented for each intermediary",
1370
+ "children": [],
1371
+ "section": "mandatory"
1372
+ },
1373
+ {
1374
+ "prefix": null,
1375
+ "text": "Evidence retained of supervision and AML/CFT compliance for overseas intermediaries",
1376
+ "children": [],
1377
+ "section": "mandatory"
1378
+ },
1379
+ {
1380
+ "prefix": null,
1381
+ "text": "For related-FI reliance, group policy and group-level supervision documented",
1382
+ "children": [],
1383
+ "section": "mandatory"
1384
+ }
1385
+ ],
1386
+ "evidence": [
1387
+ "Intermediary onboarding due-diligence files",
1388
+ "Group-policy documentation",
1389
+ "Supervision-evidence references"
1390
+ ]
1391
+ },
1392
+ {
1393
+ "id": "CAT-06-001",
1394
+ "title": "Pre-existing customer event-driven CDD",
1395
+ "category": "CAT-06",
1396
+ "risk_domain": null,
1397
+ "risk_sub_domain": null,
1398
+ "risk_statement": null,
1399
+ "parent_control": null,
1400
+ "requirement": "An MSO must perform CDD measures in respect of pre-existing customers (with whom the business relationship was established before AMLO came into effect on 1 April 2012) when a transaction is unusual/suspicious or inconsistent with the MSO's knowledge of the customer; when a material change occurs in the way the customer's account is operated; when ML/TF is suspected; or when the veracity or adequacy of previously obtained identification information is doubted. Trigger events include dormant-account reactivation or a change in beneficial ownership/control. Ongoing monitoring under section 5 of Schedule 2 also applies to pre-existing customers.",
1401
+ "source": "Guideline §4.12.1, §4.12.2, §4.12.3; s.5, s.6, Sch. 2, AMLO",
1402
+ "severity": "critical",
1403
+ "verification": [
1404
+ {
1405
+ "prefix": null,
1406
+ "text": "Pre-existing-customer inventory maintained",
1407
+ "children": [],
1408
+ "section": "mandatory"
1409
+ },
1410
+ {
1411
+ "prefix": null,
1412
+ "text": "Event-driven CDD workflow operational",
1413
+ "children": [],
1414
+ "section": "mandatory"
1415
+ },
1416
+ {
1417
+ "prefix": null,
1418
+ "text": "Ongoing monitoring applied to pre-existing customers",
1419
+ "children": [],
1420
+ "section": "mandatory"
1421
+ }
1422
+ ],
1423
+ "evidence": [
1424
+ "Pre-existing-customer register",
1425
+ "Triggered-CDD case files"
1426
+ ]
1427
+ },
1428
+ {
1429
+ "id": "CAT-06-002",
1430
+ "title": "Ongoing monitoring — CDD record refresh and transaction monitoring",
1431
+ "category": "CAT-06",
1432
+ "risk_domain": null,
1433
+ "risk_sub_domain": null,
1434
+ "risk_statement": null,
1435
+ "parent_control": null,
1436
+ "requirement": "An MSO must continuously monitor its business relationship with each customer through ongoing CDD (periodic and trigger-event reviews to ensure documents, data and information are up-to-date and relevant) and transaction monitoring (appropriate scrutiny against the customer's known profile, risk profile and source of funds, and identification of complex, unusually large or unusual-pattern transactions with no apparent economic or lawful purpose, with findings recorded in writing). High-risk customers must be subject to a minimum of annual review (more frequent if necessary), and findings of monitoring steps and rationale of decisions must be documented and available to the CCE and auditors.",
1437
+ "source": "Guideline §5.1, §5.2, §5.3, §5.10, §5.11, §5.12, §5.13, §5.14; s.5(1), s.5(3), (4), (5), s.19(3), Sch. 2, AMLO",
1438
+ "severity": "critical",
1439
+ "verification": [
1440
+ {
1441
+ "prefix": null,
1442
+ "text": "Periodic-review policy with risk-rated cadence (≤1 year for high-risk)",
1443
+ "children": [],
1444
+ "section": "mandatory"
1445
+ },
1446
+ {
1447
+ "prefix": null,
1448
+ "text": "Transaction-monitoring system scrutinises against customer profile, risk profile and source of funds",
1449
+ "children": [],
1450
+ "section": "mandatory"
1451
+ },
1452
+ {
1453
+ "prefix": null,
1454
+ "text": "Written records of unusual-pattern transaction findings",
1455
+ "children": [],
1456
+ "section": "mandatory"
1457
+ },
1458
+ {
1459
+ "prefix": null,
1460
+ "text": "STR-assessment process when no satisfactory explanation obtained",
1461
+ "children": [],
1462
+ "section": "mandatory"
1463
+ }
1464
+ ],
1465
+ "evidence": [
1466
+ "Periodic-review procedure",
1467
+ "Transaction-monitoring alert and investigation records",
1468
+ "Written findings memos"
1469
+ ]
1470
+ },
1471
+ {
1472
+ "id": "CAT-06-003",
1473
+ "title": "Transaction monitoring systems and processes",
1474
+ "category": "CAT-06",
1475
+ "risk_domain": null,
1476
+ "risk_sub_domain": null,
1477
+ "risk_statement": null,
1478
+ "parent_control": null,
1479
+ "requirement": "An MSO must establish and maintain adequate systems and processes to monitor transactions, with design, automation and sophistication appropriate to its size and complexity, ML/TF risks, controls, and product/service mix; the monitoring must provide relevant staff with timely and sufficient information, support a relationship-based (rather than transaction-by-transaction) approach where practicable, take into account transaction characteristics (nature/type, series patterns, counterparties, geography, customer norms), and the parameters/thresholds must be properly documented, regularly reviewed and independently validated.",
1480
+ "source": "Guideline §5.4, §5.5, §5.6, §5.7, §5.8, §5.9; s.5(3), (4), (5), s.19(3), Sch. 2, AMLO",
1481
+ "severity": "major",
1482
+ "verification": [
1483
+ {
1484
+ "prefix": null,
1485
+ "text": "Transaction-monitoring system specification documented",
1486
+ "children": [],
1487
+ "section": "mandatory"
1488
+ },
1489
+ {
1490
+ "prefix": null,
1491
+ "text": "Parameters and thresholds documented and independently validated",
1492
+ "children": [],
1493
+ "section": "mandatory"
1494
+ },
1495
+ {
1496
+ "prefix": null,
1497
+ "text": "Periodic effectiveness review",
1498
+ "children": [],
1499
+ "section": "mandatory"
1500
+ }
1501
+ ],
1502
+ "evidence": [
1503
+ "System specification and parameter documentation",
1504
+ "Independent validation reports",
1505
+ "Effectiveness review records"
1506
+ ]
1507
+ },
1508
+ {
1509
+ "id": "CAT-07-001",
1510
+ "title": "Maintain a screening database of designated parties",
1511
+ "category": "CAT-07",
1512
+ "risk_domain": null,
1513
+ "risk_sub_domain": null,
1514
+ "risk_statement": null,
1515
+ "parent_control": null,
1516
+ "requirement": "An MSO must establish and maintain effective policies, procedures and controls to comply with TF, financial sanctions and PF regulations and legislation; must maintain (or subscribe to with sample-testing assurance) a consolidated database of names and particulars of terrorists and designated parties — including (a) the lists published in the Gazette or on the website of the Commerce and Economic Development Bureau and (b) the lists the CCE draws to MSOs' attention from time to time — kept timely-updated and easily accessible by relevant staff. Countries, individuals and entities included in UNSCRs/sanctions lists must be added as soon as practicable after promulgation, regardless of Hong Kong implementation status.",
1517
+ "source": "Guideline §6.12, §6.13, §6.14, §6.15",
1518
+ "severity": "critical",
1519
+ "verification": [
1520
+ {
1521
+ "prefix": null,
1522
+ "text": "Screening database in place and timely-updated",
1523
+ "children": [],
1524
+ "section": "mandatory"
1525
+ },
1526
+ {
1527
+ "prefix": null,
1528
+ "text": "Sample-testing performed where third-party database used",
1529
+ "children": [],
1530
+ "section": "mandatory"
1531
+ },
1532
+ {
1533
+ "prefix": null,
1534
+ "text": "Update process documented and operational",
1535
+ "children": [],
1536
+ "section": "mandatory"
1537
+ }
1538
+ ],
1539
+ "evidence": [
1540
+ "Screening database documentation",
1541
+ "Sample-test records",
1542
+ "Update procedure"
1543
+ ]
1544
+ },
1545
+ {
1546
+ "id": "CAT-07-002",
1547
+ "title": "Sanctions screening at onboarding and on database updates",
1548
+ "category": "CAT-07",
1549
+ "risk_domain": null,
1550
+ "risk_sub_domain": null,
1551
+ "risk_statement": null,
1552
+ "parent_control": null,
1553
+ "requirement": "To avoid establishing business relationships with or providing financial services to terrorist suspects and possible sanctioned parties, an MSO must implement an effective screening mechanism that includes: screening customers and any beneficial owners against the current database at the establishment of the relationship; screening customers and beneficial owners against all new and updated designations as soon as practicable; and screening all relevant parties in cross-border/cross-boundary wire transfers (including remittance transactions) against the current database before executing the transfer. Screening must be carried out irrespective of customer risk profile and must extend to connected parties and PPTAs using an RBA. When possible name matches are identified, the MSO must conduct enhanced checks to determine whether the matches are genuine hits, and where suspicions of TF/PF/sanctions violations arise, must report to the JFIU; enhanced-checking and screening records must be documented or recorded electronically.",
1554
+ "source": "Guideline §6.16, §6.17, §6.18, §6.19; s.8 & s.8A, UNATMO; s.4, WMD(CPS)O; applicable UNSO Regulations",
1555
+ "severity": "critical",
1556
+ "verification": [
1557
+ {
1558
+ "prefix": null,
1559
+ "text": "Screening performed at onboarding for customers and beneficial owners",
1560
+ "children": [],
1561
+ "section": "mandatory"
1562
+ },
1563
+ {
1564
+ "prefix": null,
1565
+ "text": "Ongoing screening on database updates",
1566
+ "children": [],
1567
+ "section": "mandatory"
1568
+ },
1569
+ {
1570
+ "prefix": null,
1571
+ "text": "Pre-execution screening on cross-border wire/remittance parties",
1572
+ "children": [],
1573
+ "section": "mandatory"
1574
+ },
1575
+ {
1576
+ "prefix": null,
1577
+ "text": "Connected-party and PPTA screening based on RBA",
1578
+ "children": [],
1579
+ "section": "mandatory"
1580
+ },
1581
+ {
1582
+ "prefix": null,
1583
+ "text": "Enhanced-checking and hit-disposition records retained",
1584
+ "children": [],
1585
+ "section": "mandatory"
1586
+ },
1587
+ {
1588
+ "prefix": null,
1589
+ "text": "STR-filing on confirmed/suspected matches",
1590
+ "children": [],
1591
+ "section": "mandatory"
1592
+ }
1593
+ ],
1594
+ "evidence": [
1595
+ "Screening procedure and logs",
1596
+ "Hit-disposition records",
1597
+ "STR filings linked to sanctions hits"
1598
+ ]
1599
+ },
1600
+ {
1601
+ "id": "CAT-08-001",
1602
+ "title": "STR obligation and timing",
1603
+ "category": "CAT-08",
1604
+ "risk_domain": null,
1605
+ "risk_sub_domain": null,
1606
+ "risk_statement": null,
1607
+ "parent_control": null,
1608
+ "requirement": "Where a person knows or suspects that any property (i) wholly or partly represents proceeds of an indictable offence/drug trafficking, (ii) was used in connection with, or (iii) is intended to be used in connection with drug trafficking or an indictable offence; or that any property is terrorist property, the person must as soon as it is reasonable to do so file an STR with the JFIU together with the matter on which the knowledge or suspicion is based — irrespective of whether a transaction was actually conducted and regardless of amount. The STR must be made as soon as reasonably practical after the suspicion was first identified.",
1609
+ "source": "Guideline §7.1, §7.5; s.25A(1) & (7), DTROP & OSCO; s.12(1) & 14(5), UNATMO",
1610
+ "severity": "critical",
1611
+ "verification": [
1612
+ {
1613
+ "prefix": null,
1614
+ "text": "STR procedure documented and operational",
1615
+ "children": [],
1616
+ "section": "mandatory"
1617
+ },
1618
+ {
1619
+ "prefix": null,
1620
+ "text": "Sample STRs filed in line with timing requirements",
1621
+ "children": [],
1622
+ "section": "mandatory"
1623
+ },
1624
+ {
1625
+ "prefix": null,
1626
+ "text": "Audit trail of suspicion-identification-to-STR-filing time",
1627
+ "children": [],
1628
+ "section": "mandatory"
1629
+ }
1630
+ ],
1631
+ "evidence": [
1632
+ "STR procedure",
1633
+ "STR register/log",
1634
+ "Sample STR filings"
1635
+ ]
1636
+ },
1637
+ {
1638
+ "id": "CAT-08-002",
1639
+ "title": "AML/CFT Systems for STR — MLRO, procedures, records",
1640
+ "category": "CAT-08",
1641
+ "risk_domain": null,
1642
+ "risk_sub_domain": null,
1643
+ "risk_statement": null,
1644
+ "parent_control": null,
1645
+ "requirement": "An MSO must implement AML/CFT Systems to fulfil its statutory reporting obligations and manage post-reporting risks, including appointment of an MLRO; clear policies and procedures over internal reporting, reporting to the JFIU, post-reporting risk mitigation and prevention of tipping off; and keeping proper records of internal reports and STRs. The MSO must have measures in place to check, on an ongoing basis, that these AML/CFT Systems comply with relevant legal/regulatory requirements and operate effectively. The MSO must establish and maintain records of all ML/TF reports made to the MLRO and all STRs made to the JFIU, including dates, handlers, results of assessments, and information to locate underlying papers.",
1646
+ "source": "Guideline §7.7, §7.8, §7.29, §7.30",
1647
+ "severity": "critical",
1648
+ "verification": [
1649
+ {
1650
+ "prefix": null,
1651
+ "text": "MLRO appointment evidenced",
1652
+ "children": [],
1653
+ "section": "mandatory"
1654
+ },
1655
+ {
1656
+ "prefix": null,
1657
+ "text": "Internal reporting and JFIU-reporting procedures documented",
1658
+ "children": [],
1659
+ "section": "mandatory"
1660
+ },
1661
+ {
1662
+ "prefix": null,
1663
+ "text": "Tipping-off prevention controls in place",
1664
+ "children": [],
1665
+ "section": "mandatory"
1666
+ },
1667
+ {
1668
+ "prefix": null,
1669
+ "text": "Internal-report register maintained",
1670
+ "children": [],
1671
+ "section": "mandatory"
1672
+ },
1673
+ {
1674
+ "prefix": null,
1675
+ "text": "STR register maintained",
1676
+ "children": [],
1677
+ "section": "mandatory"
1678
+ }
1679
+ ],
1680
+ "evidence": [
1681
+ "Internal reporting procedure",
1682
+ "Internal-report register",
1683
+ "STR register"
1684
+ ]
1685
+ },
1686
+ {
1687
+ "id": "CAT-08-003",
1688
+ "title": "Identify suspicious transactions and avoid tipping off",
1689
+ "category": "CAT-08",
1690
+ "risk_domain": null,
1691
+ "risk_sub_domain": null,
1692
+ "risk_statement": null,
1693
+ "parent_control": null,
1694
+ "requirement": "An MSO must provide sufficient guidance to staff (and agents where applicable) to enable them to form suspicion and recognise the signs of ML/TF/PF, including red-flag indicators relevant to its operations, and must establish and maintain clear policies and procedures ensuring all staff know the MLRO's identity and the internal-reporting procedure, that internal reports reach the MLRO without undue delay and are not filtered out by non-compliance supervisors, and that staff who report suspicion are acknowledged and reminded of the tipping-off prohibition. Tipping off (revealing information that might prejudice an investigation) is a statutory offence, including where suspicion has been raised internally but not yet reported.",
1695
+ "source": "Guideline §7.6, §7.10, §7.12, §7.13, §7.14, §7.15, §7.16; s.25A(5), DTROP & OSCO; s.12(5), UNATMO",
1696
+ "severity": "critical",
1697
+ "verification": [
1698
+ {
1699
+ "prefix": null,
1700
+ "text": "Red-flag indicator guidance issued to staff",
1701
+ "children": [],
1702
+ "section": "mandatory"
1703
+ },
1704
+ {
1705
+ "prefix": null,
1706
+ "text": "Internal-reporting workflow documented (short, unfiltered route to MLRO)",
1707
+ "children": [],
1708
+ "section": "mandatory"
1709
+ },
1710
+ {
1711
+ "prefix": null,
1712
+ "text": "Tipping-off training delivered and acknowledged",
1713
+ "children": [],
1714
+ "section": "mandatory"
1715
+ },
1716
+ {
1717
+ "prefix": null,
1718
+ "text": "MLRO acknowledgement/reminder process operational",
1719
+ "children": [],
1720
+ "section": "mandatory"
1721
+ }
1722
+ ],
1723
+ "evidence": [
1724
+ "Red-flag indicator guidance",
1725
+ "Internal-reporting workflow chart",
1726
+ "Training records",
1727
+ "MLRO acknowledgement log"
1728
+ ]
1729
+ },
1730
+ {
1731
+ "id": "CAT-08-004",
1732
+ "title": "MLRO review and reporting to JFIU",
1733
+ "category": "CAT-08",
1734
+ "risk_domain": null,
1735
+ "risk_sub_domain": null,
1736
+ "risk_statement": null,
1737
+ "parent_control": null,
1738
+ "requirement": "When evaluating an internal report, the MLRO must take reasonable steps to consider all relevant information, including CDD and ongoing monitoring information available to or within the MSO concerning the entities involved; the review process must be documented. If after the review the MLRO decides there are grounds for knowledge or suspicion, the MLRO must disclose the information to the JFIU as soon as it is reasonable to do so, together with the basis for the knowledge or suspicion. For urgent reporting (e.g. imminent fund movement, account closure), the MSO must indicate the urgency in the STR and may consider an initial telephone notification. The MSO must maintain STR quality having regard to feedback from the JFIU and CCE.",
1739
+ "source": "Guideline §7.17, §7.18, §7.19, §7.20, §7.21, §7.22, §7.23",
1740
+ "severity": "critical",
1741
+ "verification": [
1742
+ {
1743
+ "prefix": null,
1744
+ "text": "MLRO review process documented (information considered, conclusion, rationale)",
1745
+ "children": [],
1746
+ "section": "mandatory"
1747
+ },
1748
+ {
1749
+ "prefix": null,
1750
+ "text": "STR-to-JFIU filing timeliness tracked",
1751
+ "children": [],
1752
+ "section": "mandatory"
1753
+ },
1754
+ {
1755
+ "prefix": null,
1756
+ "text": "Urgent-reporting protocol in place",
1757
+ "children": [],
1758
+ "section": "mandatory"
1759
+ },
1760
+ {
1761
+ "prefix": null,
1762
+ "text": "STR quality reviewed against JFIU/CCE feedback",
1763
+ "children": [],
1764
+ "section": "mandatory"
1765
+ }
1766
+ ],
1767
+ "evidence": [
1768
+ "MLRO review files",
1769
+ "STR filings and filing-time metrics",
1770
+ "Urgent-reporting procedure"
1771
+ ]
1772
+ },
1773
+ {
1774
+ "id": "CAT-08-005",
1775
+ "title": "Post-STR review and continuing reporting",
1776
+ "category": "CAT-08",
1777
+ "risk_domain": null,
1778
+ "risk_sub_domain": null,
1779
+ "risk_statement": null,
1780
+ "parent_control": null,
1781
+ "requirement": "An MSO must conduct an appropriate review of the business relationship upon filing an STR with the JFIU (irrespective of subsequent JFIU feedback), apply appropriate risk-mitigation measures, and escalate to senior management where necessary. The MSO must remain aware that filing an STR does not remove the need to file further STRs in respect of the same customer; further suspicious transactions or events, whether of the same nature or different, must continue to be reported to the MLRO who must make further reports to the JFIU if appropriate.",
1782
+ "source": "Guideline §7.26, §7.27, §7.28",
1783
+ "severity": "major",
1784
+ "verification": [
1785
+ {
1786
+ "prefix": null,
1787
+ "text": "Post-STR review procedure documented and operational",
1788
+ "children": [],
1789
+ "section": "mandatory"
1790
+ },
1791
+ {
1792
+ "prefix": null,
1793
+ "text": "Continuing-report procedure operational for re-suspicion cases",
1794
+ "children": [],
1795
+ "section": "mandatory"
1796
+ },
1797
+ {
1798
+ "prefix": null,
1799
+ "text": "Senior-management escalation path defined",
1800
+ "children": [],
1801
+ "section": "mandatory"
1802
+ }
1803
+ ],
1804
+ "evidence": [
1805
+ "Post-STR review case files",
1806
+ "Senior-management escalation records"
1807
+ ]
1808
+ },
1809
+ {
1810
+ "id": "CAT-08-006",
1811
+ "title": "Handling law-enforcement court documents and intelligence requests",
1812
+ "category": "CAT-08",
1813
+ "risk_domain": null,
1814
+ "risk_sub_domain": null,
1815
+ "risk_statement": null,
1816
+ "parent_control": null,
1817
+ "requirement": "An MSO must establish clear policies and procedures to handle court documents from law enforcement (search warrants, production orders, restraint orders, confiscation orders) effectively and timely, with provision of accurate information, sufficient resources and a designated main point of contact; it must respond to any search warrant and production order within the required time limit and contact the officer-in-charge at the earliest opportunity if compliance with the timeframe is difficult. It must ensure that property subject to a restraint order can be withheld, and when served with a court document or law-enforcement intelligence request, must timely assess the risks and the need to review the customer or business relationship to determine whether suspicion exists.",
1818
+ "source": "Guideline §7.31, §7.32, §7.33, §7.34, §7.35; s.10 & 11, DTROP; s.15 & 16, OSCO; s.6, UNATMO; s.3, DTROP; s.8, OSCO; s.13, UNATMO",
1819
+ "severity": "major",
1820
+ "verification": [
1821
+ {
1822
+ "prefix": null,
1823
+ "text": "Court-document handling procedure documented with named point of contact",
1824
+ "children": [],
1825
+ "section": "mandatory"
1826
+ },
1827
+ {
1828
+ "prefix": null,
1829
+ "text": "Sample responses meet timeframes",
1830
+ "children": [],
1831
+ "section": "mandatory"
1832
+ },
1833
+ {
1834
+ "prefix": null,
1835
+ "text": "Restraint-order operationalisation evidenced",
1836
+ "children": [],
1837
+ "section": "mandatory"
1838
+ }
1839
+ ],
1840
+ "evidence": [
1841
+ "Law-enforcement handling procedure",
1842
+ "Sample-response case files",
1843
+ "Restraint-order action log"
1844
+ ]
1845
+ },
1846
+ {
1847
+ "id": "CAT-09-001",
1848
+ "title": "Records of CDD, transactions and related analyses",
1849
+ "category": "CAT-09",
1850
+ "risk_domain": null,
1851
+ "risk_sub_domain": null,
1852
+ "risk_statement": null,
1853
+ "parent_control": null,
1854
+ "requirement": "An MSO must keep: the original or a copy of documents and records of data and information obtained in the course of identifying and verifying the customer, beneficial owners, beneficiaries, PPTAs and other connected parties; other documents and records obtained throughout CDD and ongoing monitoring (including SDD and EDD); records on purpose and intended nature of the business relationship; account-opening and business-correspondence records (at least those material to CDD or significant account-operation changes); and the results of any analyses (e.g. inquiries into complex/unusual transactions). Records of each transaction (domestic and international) must be sufficient to permit reconstruction of individual transactions to provide evidence for prosecution.",
1855
+ "source": "Guideline §8.2, §8.3, §8.5; s.20(1)(a), s.20(1)(b)(i), s.20(1)(b)(ii), s.2(1)(c), Sch. 2, AMLO",
1856
+ "severity": "critical",
1857
+ "verification": [
1858
+ {
1859
+ "prefix": null,
1860
+ "text": "Records inventory documents all required record classes",
1861
+ "children": [],
1862
+ "section": "mandatory"
1863
+ },
1864
+ {
1865
+ "prefix": null,
1866
+ "text": "Customer files contain identification, BO, PPTA, connected-party records",
1867
+ "children": [],
1868
+ "section": "mandatory"
1869
+ },
1870
+ {
1871
+ "prefix": null,
1872
+ "text": "Transaction records can be reconstructed end-to-end",
1873
+ "children": [],
1874
+ "section": "mandatory"
1875
+ }
1876
+ ],
1877
+ "evidence": [
1878
+ "Records inventory",
1879
+ "Sample customer file",
1880
+ "Transaction reconstruction sample"
1881
+ ]
1882
+ },
1883
+ {
1884
+ "id": "CAT-09-002",
1885
+ "title": "Retention periods for records",
1886
+ "category": "CAT-09",
1887
+ "risk_domain": null,
1888
+ "risk_sub_domain": null,
1889
+ "risk_statement": null,
1890
+ "parent_control": null,
1891
+ "requirement": "All documents and records relating to a customer (per §8.3) must be kept throughout the continuance of the business relationship and for at least five years after the end of the business relationship; for occasional transactions at or above the CDD threshold (HKD 8,000 for wire transfers or virtual asset transfers, HKD 120,000 for other types), the related records must be kept for at least five years after the date of the occasional transaction. Transaction records must be kept for at least five years after completion of the transaction, regardless of whether the business relationship ends during that period. Where the CCE specifies a longer retention period by notice, the MSO must keep the relevant records for that longer period.",
1892
+ "source": "Guideline §8.4, §8.6, §8.8; s.20(2), (3), (3A), (4), Sch. 2, AMLO",
1893
+ "severity": "critical",
1894
+ "verification": [
1895
+ {
1896
+ "prefix": null,
1897
+ "text": "Retention schedule encodes 5-year minimums",
1898
+ "children": [],
1899
+ "section": "mandatory"
1900
+ },
1901
+ {
1902
+ "prefix": null,
1903
+ "text": "Process exists to extend retention on CCE §20(4) notice",
1904
+ "children": [],
1905
+ "section": "mandatory"
1906
+ },
1907
+ {
1908
+ "prefix": null,
1909
+ "text": "Disposal controls prevent early deletion",
1910
+ "children": [],
1911
+ "section": "mandatory"
1912
+ }
1913
+ ],
1914
+ "evidence": [
1915
+ "Retention schedule",
1916
+ "CCE-notice register",
1917
+ "Disposal controls"
1918
+ ]
1919
+ },
1920
+ {
1921
+ "id": "CAT-09-003",
1922
+ "title": "Manner of keeping records and intermediary-held records",
1923
+ "category": "CAT-09",
1924
+ "risk_domain": null,
1925
+ "risk_sub_domain": null,
1926
+ "risk_statement": null,
1927
+ "parent_control": null,
1928
+ "requirement": "Document-form records must be kept either as the original document or as a copy on microfilm or in the database of a computer; data or information records must be kept on microfilm or in the database of a computer. Where customer identification and verification documents are held by an intermediary, the MSO remains responsible for compliance with all record-keeping requirements and must ensure the intermediary has systems to comply and will produce documents on demand without undue delay; the MSO must immediately obtain data/information the intermediary collected, and must ensure the intermediary passes documents and records to the MSO upon termination of the intermediary services.",
1929
+ "source": "Guideline §8.7, §8.10, §8.11, §8.12; s.21, s.18(4)(a), (b), Sch. 2, AMLO",
1930
+ "severity": "major",
1931
+ "verification": [
1932
+ {
1933
+ "prefix": null,
1934
+ "text": "Approved storage media documented",
1935
+ "children": [],
1936
+ "section": "mandatory"
1937
+ },
1938
+ {
1939
+ "prefix": null,
1940
+ "text": "Intermediary records-handling procedure operational, including termination handover",
1941
+ "children": [],
1942
+ "section": "mandatory"
1943
+ }
1944
+ ],
1945
+ "evidence": [
1946
+ "Records-management policy",
1947
+ "Intermediary records-handling procedure"
1948
+ ]
1949
+ },
1950
+ {
1951
+ "id": "CAT-10-001",
1952
+ "title": "Provide ongoing AML/CFT staff training",
1953
+ "category": "CAT-10",
1954
+ "risk_domain": null,
1955
+ "risk_sub_domain": null,
1956
+ "risk_statement": null,
1957
+ "parent_control": null,
1958
+ "requirement": "An MSO must provide adequate training for its staff to implement its AML/CFT Systems, with scope and frequency tailored to the MSO's specific risks and pitched to staff job functions, responsibilities and experience. New staff must attend initial training as soon as possible after hiring/appointment, and refresher training must be provided regularly; the MSO must implement a clear and well-articulated policy ensuring relevant staff receive adequate AML/CFT training. Training must cover statutory obligations and consequences for failure under AMLO, DTROP, OSCO, UNATMO, UNSO, WMD(CPS)O; the MSO's policies and procedures; and new ML/TF techniques, methods and trends relevant to staff roles.",
1959
+ "source": "Guideline §9.2, §9.3, §9.4, §9.5",
1960
+ "severity": "major",
1961
+ "verification": [
1962
+ {
1963
+ "prefix": null,
1964
+ "text": "Training policy documented",
1965
+ "children": [],
1966
+ "section": "mandatory"
1967
+ },
1968
+ {
1969
+ "prefix": null,
1970
+ "text": "Initial- and refresher-training schedules implemented",
1971
+ "children": [],
1972
+ "section": "mandatory"
1973
+ },
1974
+ {
1975
+ "prefix": null,
1976
+ "text": "Curriculum covers §9.4 statutory obligations and §9.5 role-specific topics",
1977
+ "children": [],
1978
+ "section": "mandatory"
1979
+ }
1980
+ ],
1981
+ "evidence": [
1982
+ "Training policy and curriculum",
1983
+ "Training attendance records"
1984
+ ]
1985
+ },
1986
+ {
1987
+ "id": "CAT-10-002",
1988
+ "title": "Monitor and record training effectiveness",
1989
+ "category": "CAT-10",
1990
+ "risk_domain": null,
1991
+ "risk_sub_domain": null,
1992
+ "risk_statement": null,
1993
+ "parent_control": null,
1994
+ "requirement": "An MSO must maintain records of who has been trained, when the training was received and the type provided, kept for a minimum of 3 years; must monitor training effectiveness through staff understanding tests, monitoring staff compliance and the quality/quantity of internal reports, and monitoring attendance with follow-up of unjustified absences. Training materials must be demonstrably up-to-date and in line with current requirements and standards.",
1995
+ "source": "Guideline §9.6, §9.7, §9.8",
1996
+ "severity": "major",
1997
+ "verification": [
1998
+ {
1999
+ "prefix": null,
2000
+ "text": "Training-records database maintained per §9.7",
2001
+ "children": [],
2002
+ "section": "mandatory"
2003
+ },
2004
+ {
2005
+ "prefix": null,
2006
+ "text": "Effectiveness measurement (tests, internal-report metrics) in place",
2007
+ "children": [],
2008
+ "section": "mandatory"
2009
+ },
2010
+ {
2011
+ "prefix": null,
2012
+ "text": "Curriculum currency reviewed periodically",
2013
+ "children": [],
2014
+ "section": "mandatory"
2015
+ }
2016
+ ],
2017
+ "evidence": [
2018
+ "Training-records database",
2019
+ "Effectiveness assessments",
2020
+ "Curriculum review log"
2021
+ ]
2022
+ },
2023
+ {
2024
+ "id": "CAT-11-001",
2025
+ "title": "Ordering institution — required information per threshold",
2026
+ "category": "CAT-11",
2027
+ "risk_domain": null,
2028
+ "risk_sub_domain": null,
2029
+ "risk_statement": null,
2030
+ "parent_control": null,
2031
+ "requirement": "As ordering institution, an MSO must ensure a wire transfer of HKD 8,000 or more (or equivalent) is accompanied by the originator's name, account number with the ordering institution (or unique reference number permitting traceability), originator's address/customer identification number/identification document number or (for an individual) date and place of birth, the recipient's name, and the recipient's account number with the beneficiary institution (or unique reference number); for a wire transfer below HKD 8,000, the address/ID/DoB element is not required but all other elements remain. The ordering institution must ensure that the originator information accompanying a wire transfer of HKD 8,000 or more is accurate. For occasional wire transfers of HKD 8,000 or more, the MSO must verify the originator's identity (extending to below-threshold transfers where they are linked or there is ML/TF suspicion).",
2032
+ "source": "Guideline §10.5, §10.6, §10.7, §10.8, §10.9; s.12(3), (3A), (5), s.3(1)(d) & (1A), Sch. 2, AMLO",
2033
+ "severity": "critical",
2034
+ "verification": [
2035
+ {
2036
+ "prefix": null,
2037
+ "text": "Wire-transfer record specification captures all §10.5/§10.6 fields per threshold",
2038
+ "children": [],
2039
+ "section": "mandatory"
2040
+ },
2041
+ {
2042
+ "prefix": null,
2043
+ "text": "Originator-information accuracy controls in place for ≥HKD 8,000 transfers",
2044
+ "children": [],
2045
+ "section": "mandatory"
2046
+ },
2047
+ {
2048
+ "prefix": null,
2049
+ "text": "Linked-transaction aggregation triggers identity verification",
2050
+ "children": [],
2051
+ "section": "mandatory"
2052
+ }
2053
+ ],
2054
+ "evidence": [
2055
+ "Wire-transfer specification",
2056
+ "Sample transfer audit trail",
2057
+ "Linked-transaction monitoring records"
2058
+ ]
2059
+ },
2060
+ {
2061
+ "id": "CAT-11-002",
2062
+ "title": "Ordering institution — batch and domestic-shortcut handling",
2063
+ "category": "CAT-11",
2064
+ "risk_domain": null,
2065
+ "risk_sub_domain": null,
2066
+ "risk_statement": null,
2067
+ "parent_control": null,
2068
+ "requirement": "Where the ordering institution bundles a number of wire transfers from a single originator into a batch file for transmission to recipients outside Hong Kong, each transfer may carry only the originator's account/unique reference number provided the batch file contains required and accurate originator information and required recipient information fully traceable within the recipient country. For a domestic wire transfer, the ordering institution may omit complete originator information and include only the originator's account number/unique reference number provided traceability is preserved; if it does so, on request from the receiving institution or the CCE it must provide the complete required originator information within 3 business days, and such information must be made available to law enforcement agencies immediately upon request.",
2069
+ "source": "Guideline §10.10, §10.11, §10.12; s.12(6), s.12(7), Sch. 2, AMLO",
2070
+ "severity": "critical",
2071
+ "verification": [
2072
+ {
2073
+ "prefix": null,
2074
+ "text": "Batch-processing specification carries §12(3) information at batch level",
2075
+ "children": [],
2076
+ "section": "mandatory"
2077
+ },
2078
+ {
2079
+ "prefix": null,
2080
+ "text": "Domestic-shortcut workflow can supply complete originator information within 3 business days",
2081
+ "children": [],
2082
+ "section": "mandatory"
2083
+ },
2084
+ {
2085
+ "prefix": null,
2086
+ "text": "LEA-on-request workflow can provide information immediately",
2087
+ "children": [],
2088
+ "section": "mandatory"
2089
+ }
2090
+ ],
2091
+ "evidence": [
2092
+ "Batch-processing specification",
2093
+ "Request-response logs for §12(6) information requests"
2094
+ ]
2095
+ },
2096
+ {
2097
+ "id": "CAT-11-003",
2098
+ "title": "Ordering, intermediary and beneficiary missing-information procedures",
2099
+ "category": "CAT-11",
2100
+ "risk_domain": null,
2101
+ "risk_sub_domain": null,
2102
+ "risk_statement": null,
2103
+ "parent_control": null,
2104
+ "requirement": "As ordering institution, an MSO must establish and maintain effective procedures to prevent carrying out outgoing wire transfers without the required originator/recipient information, including reasonable measures (e.g. regular review or audit testing) to identify deficient transfers and risk-based policies for handling them, with timely rectification of control deficiencies. As intermediary institution, an MSO must ensure that all originator and recipient information accompanying the wire transfer is retained and transmitted onward, must establish procedures for identifying and handling deficient incoming wire transfers, must obtain missing information from the sending institution as soon as reasonably practicable for cross-border transfers (or consider restricting/terminating the sender relationship or take reasonable mitigation measures if it cannot be obtained), and must take reasonable mitigation measures where accompanying information is incomplete or meaningless; where technical limitations prevent the required information being carried with a related domestic-cross-border or cross-border-domestic wire transfer, the intermediary must keep a record for at least five years of all information received. As beneficiary institution, an MSO must establish procedures to identify and handle deficient wire transfers (including post-event monitoring), obtain missing information as soon as reasonably practicable, consider restricting/terminating the sender relationship or take reasonable mitigation measures if missing information cannot be obtained, and take reasonable mitigation measures where accompanying information is incomplete or meaningless; for a wire transfer of HKD 8,000 or more, the beneficiary institution must verify the recipient's identity if not previously verified.",
2105
+ "source": "Guideline §10.13, §10.14, §10.15, §10.16, §10.17, §10.18, §10.19, §10.20, §10.21, §10.22; s.12(8), s.12(9), s.12(10), s.19(2), s.3(1) & (1A), Sch. 2, AMLO",
2106
+ "severity": "critical",
2107
+ "verification": [
2108
+ {
2109
+ "prefix": null,
2110
+ "text": "Outgoing-transfer pre-execution checks for required information",
2111
+ "children": [],
2112
+ "section": "mandatory"
2113
+ },
2114
+ {
2115
+ "prefix": null,
2116
+ "text": "Intermediary pass-through preserves all received fields",
2117
+ "children": [],
2118
+ "section": "mandatory"
2119
+ },
2120
+ {
2121
+ "prefix": null,
2122
+ "text": "Beneficiary post-event monitoring identifies deficient transfers",
2123
+ "children": [],
2124
+ "section": "mandatory"
2125
+ },
2126
+ {
2127
+ "prefix": null,
2128
+ "text": "Missing-information escalation/mitigation procedures documented",
2129
+ "children": [],
2130
+ "section": "mandatory"
2131
+ },
2132
+ {
2133
+ "prefix": null,
2134
+ "text": "Recipient identity verified for ≥HKD 8,000 incoming transfers",
2135
+ "children": [],
2136
+ "section": "mandatory"
2137
+ },
2138
+ {
2139
+ "prefix": null,
2140
+ "text": "5-year retention for technical-limitation records",
2141
+ "children": [],
2142
+ "section": "mandatory"
2143
+ }
2144
+ ],
2145
+ "evidence": [
2146
+ "Ordering/intermediary/beneficiary procedures",
2147
+ "Deficient-transfer case log",
2148
+ "Recipient-verification records"
2149
+ ]
2150
+ },
2151
+ {
2152
+ "id": "CAT-12-001",
2153
+ "title": "Remittance — originator identification, verification and recording",
2154
+ "category": "CAT-12",
2155
+ "risk_domain": null,
2156
+ "risk_sub_domain": null,
2157
+ "risk_statement": null,
2158
+ "parent_control": null,
2159
+ "requirement": "Before carrying out a remittance transaction (other than a wire transfer) of HKD 8,000 or more (or equivalent in any other currency), an MSO must identify the originator and verify the originator's identity by reference to the originator's identification document, and must record (a) the originator's name; (b) the originator's identification document number and, if the document is a travel document, the place of issue; (c) the originator's address; (d) the currency and amount involved; and (e) the date and time of receipt of the instruction, the recipient's name and address and the method of delivery; the MSO must keep these records per the record-keeping requirements so the information is available to the CCE on request.",
2160
+ "source": "Guideline §11.1, §11.2, §11.3, §11.4, §11.5, §11.6; s.13, s.13(1), s.13(2)(a), (b), (c), s.13(3), Sch. 2, AMLO",
2161
+ "severity": "critical",
2162
+ "verification": [
2163
+ {
2164
+ "prefix": null,
2165
+ "text": "Remittance system enforces identification and verification at or above HKD 8,000",
2166
+ "children": [],
2167
+ "section": "mandatory"
2168
+ },
2169
+ {
2170
+ "prefix": null,
2171
+ "text": "All §11.6 data fields captured per transaction",
2172
+ "children": [],
2173
+ "section": "mandatory"
2174
+ },
2175
+ {
2176
+ "prefix": null,
2177
+ "text": "Document-based verification step recorded",
2178
+ "children": [],
2179
+ "section": "mandatory"
2180
+ },
2181
+ {
2182
+ "prefix": null,
2183
+ "text": "Retention aligned to record-keeping requirements",
2184
+ "children": [],
2185
+ "section": "mandatory"
2186
+ }
2187
+ ],
2188
+ "evidence": [
2189
+ "Remittance record specification",
2190
+ "Sample transaction file with §11.6 fields populated"
2191
+ ]
2192
+ }
2193
+ ]
2194
+ }