File size: 20,065 Bytes
6a1cba7
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
{
  "mapping_version": "stem-ai-airi-detector-mapping-v1",
  "registry_version": "stem-ai-airi-registry-v1",
  "bundle_version": "stem-ai-airi-runtime-bundle-v1",
  "attribution_note": "Detector-to-risk links are STEM BIO-AI local interpretations layered on top of AIRI source data. They are governance mappings, not claims of complete AIRI equivalence.",
  "detector_mappings": [
    {
      "detector_id": "B2_bias_limitations",
      "risk_id": "39.25.00",
      "coverage_type": "direct",
      "mapping_confidence": "bounded",
      "review_status": "active",
      "subdomain_id": "7.4",
      "title": "Verifiability",
      "justification": "Bounded deterministic mapping maintained by STEM BIO-AI governance review.",
      "introduced_in": "1.7.0"
    },
    {
      "detector_id": "B2_bias_limitations",
      "risk_id": "16.02.02",
      "coverage_type": "direct",
      "mapping_confidence": "bounded",
      "review_status": "active",
      "subdomain_id": "2.1",
      "title": "Compromising privacy or security by correctly inferring sensitive information",
      "justification": "Bounded deterministic mapping maintained by STEM BIO-AI governance review.",
      "introduced_in": "1.7.0"
    },
    {
      "detector_id": "B2_bias_limitations",
      "risk_id": "11.04.04",
      "coverage_type": "direct",
      "mapping_confidence": "bounded",
      "review_status": "active",
      "subdomain_id": "2.1",
      "title": "Privacy violations",
      "justification": "Bounded deterministic mapping maintained by STEM BIO-AI governance review.",
      "introduced_in": "1.7.0"
    },
    {
      "detector_id": "C1_hardcoded_credentials",
      "risk_id": "33.01.05",
      "coverage_type": "direct",
      "mapping_confidence": "bounded",
      "review_status": "active",
      "subdomain_id": "2.1",
      "title": "Privacy and security",
      "justification": "Bounded deterministic mapping maintained by STEM BIO-AI governance review.",
      "introduced_in": "1.7.0"
    },
    {
      "detector_id": "C1_hardcoded_credentials",
      "risk_id": "58.06.11",
      "coverage_type": "direct",
      "mapping_confidence": "bounded",
      "review_status": "active",
      "subdomain_id": "2.2",
      "title": "Privacy loss",
      "justification": "Bounded deterministic mapping maintained by STEM BIO-AI governance review.",
      "introduced_in": "1.7.0"
    },
    {
      "detector_id": "C1_hardcoded_credentials",
      "risk_id": "04.06.00",
      "coverage_type": "direct",
      "mapping_confidence": "bounded",
      "review_status": "active",
      "subdomain_id": "2.1",
      "title": "Privacy and Data Leakage",
      "justification": "Bounded deterministic mapping maintained by STEM BIO-AI governance review.",
      "introduced_in": "1.7.0"
    },
    {
      "detector_id": "C2_dependency_pinning",
      "risk_id": "33.01.05",
      "coverage_type": "direct",
      "mapping_confidence": "bounded",
      "review_status": "active",
      "subdomain_id": "2.1",
      "title": "Privacy and security",
      "justification": "Bounded deterministic mapping maintained by STEM BIO-AI governance review.",
      "introduced_in": "1.7.0"
    },
    {
      "detector_id": "C2_dependency_pinning",
      "risk_id": "24.04.01",
      "coverage_type": "direct",
      "mapping_confidence": "bounded",
      "review_status": "active",
      "subdomain_id": "5.1",
      "title": "Physical and Psychological Harms",
      "justification": "Bounded deterministic mapping maintained by STEM BIO-AI governance review.",
      "introduced_in": "1.7.0"
    },
    {
      "detector_id": "C3_dead_or_deprecated_patient_adjacent_paths",
      "risk_id": "48.04.00",
      "coverage_type": "direct",
      "mapping_confidence": "bounded",
      "review_status": "active",
      "subdomain_id": "2.1",
      "title": "Data Privacy",
      "justification": "Bounded deterministic mapping maintained by STEM BIO-AI governance review.",
      "introduced_in": "1.7.0"
    },
    {
      "detector_id": "C3_dead_or_deprecated_patient_adjacent_paths",
      "risk_id": "42.09.00",
      "coverage_type": "direct",
      "mapping_confidence": "bounded",
      "review_status": "active",
      "subdomain_id": "2.1",
      "title": "Data Protection/Privacy",
      "justification": "Bounded deterministic mapping maintained by STEM BIO-AI governance review.",
      "introduced_in": "1.7.0"
    },
    {
      "detector_id": "C4_exception_handling_clinical_adjacent_paths",
      "risk_id": "70.01.02",
      "coverage_type": "direct",
      "mapping_confidence": "bounded",
      "review_status": "active",
      "subdomain_id": "7.3",
      "title": "Accidental harm",
      "justification": "Bounded deterministic mapping maintained by STEM BIO-AI governance review.",
      "introduced_in": "1.7.0"
    },
    {
      "detector_id": "C4_exception_handling_clinical_adjacent_paths",
      "risk_id": "24.01.03",
      "coverage_type": "direct",
      "mapping_confidence": "bounded",
      "review_status": "active",
      "subdomain_id": "7.3",
      "title": "Safe exploration problem with widely deployed AI assistants",
      "justification": "Bounded deterministic mapping maintained by STEM BIO-AI governance review.",
      "introduced_in": "1.7.0"
    },
    {
      "detector_id": "C4_exception_handling_clinical_adjacent_paths",
      "risk_id": "60.02.01",
      "coverage_type": "direct",
      "mapping_confidence": "bounded",
      "review_status": "active",
      "subdomain_id": "7.3",
      "title": "Reliability issues",
      "justification": "Bounded deterministic mapping maintained by STEM BIO-AI governance review.",
      "introduced_in": "1.7.0"
    },
    {
      "detector_id": "CC1_clinical_zero_default",
      "risk_id": "62.15.02",
      "coverage_type": "direct",
      "mapping_confidence": "bounded",
      "review_status": "active",
      "subdomain_id": "7.3",
      "title": "Training-related (Poor model confidence calibration)",
      "justification": "Bounded deterministic mapping maintained by STEM BIO-AI governance review.",
      "introduced_in": "1.7.0"
    },
    {
      "detector_id": "CC1_clinical_zero_default",
      "risk_id": "02.09.00",
      "coverage_type": "direct",
      "mapping_confidence": "bounded",
      "review_status": "active",
      "subdomain_id": "3.1",
      "title": "Hallucinations",
      "justification": "Bounded deterministic mapping maintained by STEM BIO-AI governance review.",
      "introduced_in": "1.7.0"
    },
    {
      "detector_id": "CC1_clinical_zero_default",
      "risk_id": "30.01.02",
      "coverage_type": "direct",
      "mapping_confidence": "bounded",
      "review_status": "active",
      "subdomain_id": "3.1",
      "title": "Hallucination",
      "justification": "Bounded deterministic mapping maintained by STEM BIO-AI governance review.",
      "introduced_in": "1.7.0"
    },
    {
      "detector_id": "CC1_clinical_zero_default",
      "risk_id": "69.01.01",
      "coverage_type": "direct",
      "mapping_confidence": "bounded",
      "review_status": "active",
      "subdomain_id": "3.1",
      "title": "Hallucinated responses (in general)",
      "justification": "Bounded deterministic mapping maintained by STEM BIO-AI governance review.",
      "introduced_in": "1.7.0"
    },
    {
      "detector_id": "CC1_clinical_zero_default",
      "risk_id": "16.03.01",
      "coverage_type": "direct",
      "mapping_confidence": "bounded",
      "review_status": "active",
      "subdomain_id": "3.1",
      "title": "Disseminating false or misleading information",
      "justification": "Bounded deterministic mapping maintained by STEM BIO-AI governance review.",
      "introduced_in": "1.7.0"
    },
    {
      "detector_id": "CC2_api_contract",
      "risk_id": "69.01.00",
      "coverage_type": "direct",
      "mapping_confidence": "bounded",
      "review_status": "active",
      "subdomain_id": "3.1",
      "title": "False information",
      "justification": "Bounded deterministic mapping maintained by STEM BIO-AI governance review.",
      "introduced_in": "1.7.0"
    },
    {
      "detector_id": "CC2_api_contract",
      "risk_id": "39.25.00",
      "coverage_type": "direct",
      "mapping_confidence": "bounded",
      "review_status": "active",
      "subdomain_id": "7.4",
      "title": "Verifiability",
      "justification": "Bounded deterministic mapping maintained by STEM BIO-AI governance review.",
      "introduced_in": "1.7.0"
    },
    {
      "detector_id": "CC2_api_contract",
      "risk_id": "16.03.01",
      "coverage_type": "direct",
      "mapping_confidence": "bounded",
      "review_status": "active",
      "subdomain_id": "3.1",
      "title": "Disseminating false or misleading information",
      "justification": "Bounded deterministic mapping maintained by STEM BIO-AI governance review.",
      "introduced_in": "1.7.0"
    },
    {
      "detector_id": "CC2_api_contract",
      "risk_id": "04.05.00",
      "coverage_type": "direct",
      "mapping_confidence": "bounded",
      "review_status": "active",
      "subdomain_id": "3.1",
      "title": "Misleading Information",
      "justification": "Bounded deterministic mapping maintained by STEM BIO-AI governance review.",
      "introduced_in": "1.7.0"
    },
    {
      "detector_id": "CC3_shallow_validator",
      "risk_id": "65.03.03",
      "coverage_type": "direct",
      "mapping_confidence": "bounded",
      "review_status": "active",
      "subdomain_id": "2.1",
      "title": "Reidentification",
      "justification": "Bounded deterministic mapping maintained by STEM BIO-AI governance review.",
      "introduced_in": "1.7.0"
    },
    {
      "detector_id": "CC3_shallow_validator",
      "risk_id": "02.01.03",
      "coverage_type": "direct",
      "mapping_confidence": "bounded",
      "review_status": "active",
      "subdomain_id": "2.1",
      "title": "Privacy Leakage",
      "justification": "Bounded deterministic mapping maintained by STEM BIO-AI governance review.",
      "introduced_in": "1.7.0"
    },
    {
      "detector_id": "CC3_shallow_validator",
      "risk_id": "16.02.01",
      "coverage_type": "direct",
      "mapping_confidence": "bounded",
      "review_status": "active",
      "subdomain_id": "2.1",
      "title": "Compromising privacy by leaking sensitive information",
      "justification": "Bounded deterministic mapping maintained by STEM BIO-AI governance review.",
      "introduced_in": "1.7.0"
    },
    {
      "detector_id": "CC3_shallow_validator",
      "risk_id": "47.03.01",
      "coverage_type": "direct",
      "mapping_confidence": "bounded",
      "review_status": "active",
      "subdomain_id": "2.1",
      "title": "Privacy and data collection concerns (collecting personal information or personally identifiable information)",
      "justification": "Bounded deterministic mapping maintained by STEM BIO-AI governance review.",
      "introduced_in": "1.7.0"
    },
    {
      "detector_id": "CC3_shallow_validator",
      "risk_id": "70.02.01",
      "coverage_type": "direct",
      "mapping_confidence": "bounded",
      "review_status": "active",
      "subdomain_id": "2.1",
      "title": "Privacy Violations",
      "justification": "Bounded deterministic mapping maintained by STEM BIO-AI governance review.",
      "introduced_in": "1.7.0"
    },
    {
      "detector_id": "H1_clinical_certainty_hype",
      "risk_id": "18.05.03",
      "coverage_type": "direct",
      "mapping_confidence": "bounded",
      "review_status": "active",
      "subdomain_id": "5.1",
      "title": "Overreliance",
      "justification": "Bounded deterministic mapping maintained by STEM BIO-AI governance review.",
      "introduced_in": "1.7.0"
    },
    {
      "detector_id": "H1_clinical_certainty_hype",
      "risk_id": "61.02.28",
      "coverage_type": "direct",
      "mapping_confidence": "bounded",
      "review_status": "active",
      "subdomain_id": "5.1",
      "title": "Human choice of overreliance in critical sectors",
      "justification": "Bounded deterministic mapping maintained by STEM BIO-AI governance review.",
      "introduced_in": "1.7.0"
    },
    {
      "detector_id": "H3_autonomous_replacement_hype",
      "risk_id": "56.14.00",
      "coverage_type": "direct",
      "mapping_confidence": "bounded",
      "review_status": "active",
      "subdomain_id": "5.1",
      "title": "Overreliance on AI systems, which cannot be subsequently unpicked",
      "justification": "Bounded deterministic mapping maintained by STEM BIO-AI governance review.",
      "introduced_in": "1.7.0"
    },
    {
      "detector_id": "H3_autonomous_replacement_hype",
      "risk_id": "47.02.12",
      "coverage_type": "direct",
      "mapping_confidence": "bounded",
      "review_status": "active",
      "subdomain_id": "5.1",
      "title": "Influence, overreliance and dependence (overreliance)",
      "justification": "Bounded deterministic mapping maintained by STEM BIO-AI governance review.",
      "introduced_in": "1.7.0"
    },
    {
      "detector_id": "T0_hard_floor",
      "risk_id": "41.04.00",
      "coverage_type": "direct",
      "mapping_confidence": "bounded",
      "review_status": "active",
      "subdomain_id": "5.1",
      "title": "Healthcare",
      "justification": "Bounded deterministic mapping maintained by STEM BIO-AI governance review.",
      "introduced_in": "1.7.0"
    },
    {
      "detector_id": "T0_hard_floor",
      "risk_id": "61.02.28",
      "coverage_type": "direct",
      "mapping_confidence": "bounded",
      "review_status": "active",
      "subdomain_id": "5.1",
      "title": "Human choice of overreliance in critical sectors",
      "justification": "Bounded deterministic mapping maintained by STEM BIO-AI governance review.",
      "introduced_in": "1.7.0"
    },
    {
      "detector_id": "T0_hard_floor",
      "risk_id": "18.05.03",
      "coverage_type": "direct",
      "mapping_confidence": "bounded",
      "review_status": "active",
      "subdomain_id": "5.1",
      "title": "Overreliance",
      "justification": "Bounded deterministic mapping maintained by STEM BIO-AI governance review.",
      "introduced_in": "1.7.0"
    },
    {
      "detector_id": "T0_hard_floor",
      "risk_id": "56.14.00",
      "coverage_type": "direct",
      "mapping_confidence": "bounded",
      "review_status": "active",
      "subdomain_id": "5.1",
      "title": "Overreliance on AI systems, which cannot be subsequently unpicked",
      "justification": "Bounded deterministic mapping maintained by STEM BIO-AI governance review.",
      "introduced_in": "1.7.0"
    },
    {
      "detector_id": "T0_hard_floor",
      "risk_id": "47.02.12",
      "coverage_type": "direct",
      "mapping_confidence": "bounded",
      "review_status": "active",
      "subdomain_id": "5.1",
      "title": "Influence, overreliance and dependence (overreliance)",
      "justification": "Bounded deterministic mapping maintained by STEM BIO-AI governance review.",
      "introduced_in": "1.7.0"
    },
    {
      "detector_id": "T0_hard_floor",
      "risk_id": "16.05.02",
      "coverage_type": "direct",
      "mapping_confidence": "bounded",
      "review_status": "active",
      "subdomain_id": "5.1",
      "title": "Anthropomorphising systems can lead to overreliance and unsafe use",
      "justification": "Bounded deterministic mapping maintained by STEM BIO-AI governance review.",
      "introduced_in": "1.7.0"
    },
    {
      "detector_id": "T0_hard_floor",
      "risk_id": "43.01.00",
      "coverage_type": "direct",
      "mapping_confidence": "bounded",
      "review_status": "active",
      "subdomain_id": "7.0",
      "title": "Safety & Trustworthiness",
      "justification": "Bounded deterministic mapping maintained by STEM BIO-AI governance review.",
      "introduced_in": "1.7.0"
    },
    {
      "detector_id": "S1_R2_unsupported_legal_or_compliance_claim",
      "risk_id": "69.01.00",
      "coverage_type": "direct",
      "mapping_confidence": "bounded",
      "review_status": "active",
      "subdomain_id": "3.1",
      "title": "False information",
      "justification": "Unsupported legal or compliance claims can mislead deployment and governance review.",
      "introduced_in": "1.7.6"
    },
    {
      "detector_id": "S1_R2_unsupported_legal_or_compliance_claim",
      "risk_id": "39.25.00",
      "coverage_type": "direct",
      "mapping_confidence": "bounded",
      "review_status": "active",
      "subdomain_id": "7.4",
      "title": "Verifiability",
      "justification": "Unsupported legal or compliance claims reduce reviewability and trustworthy interpretation.",
      "introduced_in": "1.7.6"
    },
    {
      "detector_id": "R2R_D5_single_external_service_dependency",
      "risk_id": "60.02.01",
      "coverage_type": "direct",
      "mapping_confidence": "bounded",
      "review_status": "active",
      "subdomain_id": "7.3",
      "title": "Reliability issues",
      "justification": "Material dependency on a single external provider creates operational fragility and failure concentration.",
      "introduced_in": "1.7.6"
    },
    {
      "detector_id": "R2R_D5_single_external_service_dependency",
      "risk_id": "72.04.02",
      "coverage_type": "direct",
      "mapping_confidence": "bounded",
      "review_status": "active",
      "subdomain_id": "6.1",
      "title": "Market Concentration — healthcare single-point failures",
      "justification": "Material dependency on a single external provider aligns with single-point failure and concentration risk.",
      "introduced_in": "1.7.6"
    },
    {
      "detector_id": "C5_compliance_boundary_integrity",
      "risk_id": "24.01.03",
      "coverage_type": "direct",
      "mapping_confidence": "bounded",
      "review_status": "active",
      "subdomain_id": "7.3",
      "title": "Safe exploration problem with widely deployed AI assistants",
      "justification": "Weak compliance and clinical-boundary integrity can cause users to over-trust unsafe exploration in clinical-adjacent contexts.",
      "introduced_in": "1.7.6"
    },
    {
      "detector_id": "C5_compliance_boundary_integrity",
      "risk_id": "69.01.00",
      "coverage_type": "direct",
      "mapping_confidence": "bounded",
      "review_status": "active",
      "subdomain_id": "3.1",
      "title": "False information",
      "justification": "Unsupported legal or compliance boundary language can mislead reviewers about operational safety and permissible use.",
      "introduced_in": "1.7.6"
    }
  ],
  "known_gaps": [
    {
      "id": "65.03.03",
      "title": "Reidentification",
      "subdomain_id": "2.1",
      "gap_scope": "in_runtime_bundle",
      "note": "CC-3 catches shallow validators; dedicated reidentify() API exposure check (CC-4) not yet implemented."
    },
    {
      "id": "70.02.02",
      "title": "Misinformation — hallucination of clinical knowledge",
      "subdomain_id": "3.1",
      "gap_scope": "in_runtime_bundle",
      "note": "CC-1 catches threshold=0.0 default; actual output-level hallucination rate requires Layer 3 dynamic testing."
    },
    {
      "id": "39.25.00",
      "title": "Verifiability — black-box AI in medical healthcare",
      "subdomain_id": "7.4",
      "gap_scope": "in_runtime_bundle",
      "note": "B2 detects surface language only; Model Card / interpretability artifact presence not yet checked."
    },
    {
      "id": "11.02.00",
      "title": "Allocative Harms — withheld resources in healthcare",
      "subdomain_id": "1.1",
      "gap_scope": "outside_runtime_bundle_reference",
      "note": "Subgroup performance disparities require dynamic evaluation; outside static scan scope."
    },
    {
      "id": "72.04.02",
      "title": "Market Concentration — healthcare single-point failures",
      "subdomain_id": "6.1",
      "gap_scope": "outside_runtime_bundle_reference",
      "note": "Systemic risk beyond single-repository scope."
    }
  ]
}