-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathavdm_schema_seed.sql
More file actions
1278 lines (1237 loc) · 365 KB
/
Copy pathavdm_schema_seed.sql
File metadata and controls
1278 lines (1237 loc) · 365 KB
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
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
-- PAMF AVDM Schema + Seed Data
-- Generated: 2026-06-24
-- Table: eam.avdm_pact_concern
CREATE TABLE IF NOT EXISTS eam.avdm_pact_concern (
id UUID DEFAULT gen_random_uuid() PRIMARY KEY,
concern_key VARCHAR NOT NULL,
concern_name VARCHAR NOT NULL,
layer VARCHAR NOT NULL,
risk_tags jsonb NOT NULL DEFAULT '[]'::jsonb,
description text,
is_active BOOLEAN NOT NULL DEFAULT true,
create_by VARCHAR NOT NULL DEFAULT 'system'::character varying,
update_by VARCHAR NOT NULL DEFAULT 'system'::character varying,
create_at TIMESTAMP NOT NULL DEFAULT now(),
update_at TIMESTAMP NOT NULL DEFAULT now(),
severity VARCHAR NOT NULL DEFAULT 'medium'::character varying,
likelihood VARCHAR NOT NULL DEFAULT 'medium'::character varying,
classification VARCHAR NOT NULL DEFAULT 'recommended'::character varying,
created_at TIMESTAMPTZ NOT NULL DEFAULT now(),
updated_at TIMESTAMPTZ NOT NULL DEFAULT now()
);
-- Seed: eam.avdm_pact_concern (68 rows)
INSERT INTO eam.avdm_pact_concern (id, concern_key, concern_name, layer, risk_tags, description, is_active, create_by, update_by, create_at, update_at, severity, likelihood, classification, created_at, updated_at) VALUES ('0667e0eb-563c-4bed-a2af-8d8f3872f45d', 'D11', 'Physical Data Model', 'Data Architecture', '[]', 'Physical schema. How is data physically implemented?', TRUE, 'migration_014', 'dev_admin', '2026-06-22T18:51:06.462207'::TIMESTAMP, '2026-06-23T21:11:33.411103'::TIMESTAMP, 'medium', 'medium', 'recommended', '2026-06-23T06:13:09.295211+00:00'::TIMESTAMP, '2026-06-23T06:13:09.295211+00:00'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_pact_concern (id, concern_key, concern_name, layer, risk_tags, description, is_active, create_by, update_by, create_at, update_at, severity, likelihood, classification, created_at, updated_at) VALUES ('0a56429c-278f-4160-99a3-75d7e1b91e09', 'D8', 'Data Pipeline', 'Data Architecture', '[]', 'Technical pipelines. How is data processed technically?', TRUE, 'migration_014', 'dev_admin', '2026-06-22T18:51:06.462207'::TIMESTAMP, '2026-06-23T21:13:57.710107'::TIMESTAMP, 'medium', 'medium', 'recommended', '2026-06-23T06:13:09.295211+00:00'::TIMESTAMP, '2026-06-23T06:13:09.295211+00:00'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_pact_concern (id, concern_key, concern_name, layer, risk_tags, description, is_active, create_by, update_by, create_at, update_at, severity, likelihood, classification, created_at, updated_at) VALUES ('0a9b2496-b20d-459c-a589-3620a78fedae', 'B5', 'Interaction & Influence', 'Business / Organization', '[]', 'Cross-domain influence. How do organizational units influence each other?', TRUE, 'migration_014', 'dev_admin', '2026-06-22T18:51:06.462207'::TIMESTAMP, '2026-06-23T21:09:12.993407'::TIMESTAMP, 'medium', 'medium', 'recommended', '2026-06-23T06:13:09.295211+00:00'::TIMESTAMP, '2026-06-23T06:13:09.295211+00:00'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_pact_concern (id, concern_key, concern_name, layer, risk_tags, description, is_active, create_by, update_by, create_at, update_at, severity, likelihood, classification, created_at, updated_at) VALUES ('0b86651f-4efa-41d5-b58e-899b9e9f6f54', 'AGD6', 'Control Traceability Matrix', 'Architecture Governance & Decision', '[''governance'', ''compliance'', ''security'']', 'Trace controls to policies, systems, and responsible roles.', TRUE, 'system', 'migration_014', '2026-06-22T18:51:06.247373'::TIMESTAMP, '2026-06-22T18:53:45.079050'::TIMESTAMP, 'medium', 'medium', 'recommended', '2026-06-23T06:13:09.295211+00:00'::TIMESTAMP, '2026-06-23T06:13:09.295211+00:00'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_pact_concern (id, concern_key, concern_name, layer, risk_tags, description, is_active, create_by, update_by, create_at, update_at, severity, likelihood, classification, created_at, updated_at) VALUES ('0dfbdb6e-fc39-45c3-b0ff-85140e1cc6dc', 'B4', 'Organizational Ownership', 'Business / Organization', '[]', 'Accountability and governance. Who owns systems, data, and decisions?', TRUE, 'migration_014', 'dev_admin', '2026-06-22T18:51:06.462207'::TIMESTAMP, '2026-06-23T21:09:03.973149'::TIMESTAMP, 'medium', 'medium', 'recommended', '2026-06-23T06:13:09.295211+00:00'::TIMESTAMP, '2026-06-23T06:13:09.295211+00:00'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_pact_concern (id, concern_key, concern_name, layer, risk_tags, description, is_active, create_by, update_by, create_at, update_at, severity, likelihood, classification, created_at, updated_at) VALUES ('0e5e9bf7-8559-445a-89ef-734aa315739c', 'D12', 'Data Governance', 'Data Architecture', '[''compliance'', ''data'', ''privacy'']', 'Define ownership, retention, and quality accountability.', FALSE, 'system', 'migration_014', '2026-06-22T18:51:06.247373'::TIMESTAMP, '2026-06-22T18:53:45.079050'::TIMESTAMP, 'medium', 'medium', 'recommended', '2026-06-23T06:13:09.295211+00:00'::TIMESTAMP, '2026-06-23T06:13:09.295211+00:00'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_pact_concern (id, concern_key, concern_name, layer, risk_tags, description, is_active, create_by, update_by, create_at, update_at, severity, likelihood, classification, created_at, updated_at) VALUES ('0f89db83-d84e-4fa5-95ad-3929f3d1dfc6', 'OR2', 'Resilience & DR View', 'Operations & Reliability', '[''OR2'', ''resilience'', ''recovery'', ''continuity'']', 'Recovery strategy. What are RPO/RTO objectives?', TRUE, 'migration_014', 'migration_014', '2026-06-22T18:51:06.462207'::TIMESTAMP, '2026-06-22T18:53:45.079050'::TIMESTAMP, 'medium', 'medium', 'recommended', '2026-06-23T06:13:09.295211+00:00'::TIMESTAMP, '2026-06-23T06:13:09.295211+00:00'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_pact_concern (id, concern_key, concern_name, layer, risk_tags, description, is_active, create_by, update_by, create_at, update_at, severity, likelihood, classification, created_at, updated_at) VALUES ('11ef6f1d-b005-4469-be15-14a516e1620a', 'C3', 'Technical Service', 'Container / Component / Technical Service', '[]', 'Service responsibility. What capability boundary does each service own?', TRUE, 'migration_014', 'dev_admin', '2026-06-22T18:51:06.462207'::TIMESTAMP, '2026-06-23T21:09:59.575279'::TIMESTAMP, 'medium', 'medium', 'recommended', '2026-06-23T06:13:09.295211+00:00'::TIMESTAMP, '2026-06-23T06:13:09.295211+00:00'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_pact_concern (id, concern_key, concern_name, layer, risk_tags, description, is_active, create_by, update_by, create_at, update_at, severity, likelihood, classification, created_at, updated_at) VALUES ('1a319400-ba6a-4a3a-bc98-7a4f9d765d59', 'AGD5', 'Team-Architecture Alignment', 'Architecture Governance & Decision', '[]', 'Organizational fit. Are teams aligned with the architecture?', TRUE, 'migration_014', 'dev_admin', '2026-06-22T18:51:06.462207'::TIMESTAMP, '2026-06-23T21:08:30.719257'::TIMESTAMP, 'medium', 'medium', 'recommended', '2026-06-23T06:13:09.295211+00:00'::TIMESTAMP, '2026-06-23T06:13:09.295211+00:00'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_pact_concern (id, concern_key, concern_name, layer, risk_tags, description, is_active, create_by, update_by, create_at, update_at, severity, likelihood, classification, created_at, updated_at) VALUES ('1cbe8c0e-c9d4-4119-88f2-3a00498d0876', 'A2', 'Application Functional', 'Context & Application', '[]', 'Functional decomposition. How are application functions grouped?', TRUE, 'migration_014', 'dev_admin', '2026-06-22T18:51:06.462207'::TIMESTAMP, '2026-06-23T21:10:40.094985'::TIMESTAMP, 'medium', 'medium', 'recommended', '2026-06-23T06:13:09.295211+00:00'::TIMESTAMP, '2026-06-23T06:13:09.295211+00:00'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_pact_concern (id, concern_key, concern_name, layer, risk_tags, description, is_active, create_by, update_by, create_at, update_at, severity, likelihood, classification, created_at, updated_at) VALUES ('207c45e8-7e13-43a8-927f-b6e76c1ec5ab', 'DIP8', 'Network Topology', 'Deployment / Infrastructure / Networking', '[]', 'Network segmentation. How is the network structured?', TRUE, 'migration_014', 'dev_admin', '2026-06-22T18:51:06.462207'::TIMESTAMP, '2026-06-23T21:14:08.100343'::TIMESTAMP, 'medium', 'medium', 'recommended', '2026-06-23T06:13:09.295211+00:00'::TIMESTAMP, '2026-06-23T06:13:09.295211+00:00'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_pact_concern (id, concern_key, concern_name, layer, risk_tags, description, is_active, create_by, update_by, create_at, update_at, severity, likelihood, classification, created_at, updated_at) VALUES ('2826d95f-c76d-47b5-bcda-98a24a8d600a', 'D10', 'Logical Data Model', 'Data Architecture', '[]', 'Logical schema. How are entities logically related?', TRUE, 'migration_014', 'dev_admin', '2026-06-22T18:51:06.462207'::TIMESTAMP, '2026-06-23T21:11:27.208255'::TIMESTAMP, 'medium', 'medium', 'recommended', '2026-06-23T06:13:09.295211+00:00'::TIMESTAMP, '2026-06-23T06:13:09.295211+00:00'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_pact_concern (id, concern_key, concern_name, layer, risk_tags, description, is_active, create_by, update_by, create_at, update_at, severity, likelihood, classification, created_at, updated_at) VALUES ('28504628-97c3-432d-8a6a-78517e288efd', 'SCR1', 'Security Control', 'Security, Compliance & Risk', '[]', 'Control mechanisms. What controls enforce security policy?', TRUE, 'migration_014', 'dev_admin', '2026-06-22T18:51:06.462207'::TIMESTAMP, '2026-06-23T21:38:18.698740'::TIMESTAMP, 'medium', 'medium', 'recommended', '2026-06-23T06:13:09.295211+00:00'::TIMESTAMP, '2026-06-23T06:13:09.295211+00:00'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_pact_concern (id, concern_key, concern_name, layer, risk_tags, description, is_active, create_by, update_by, create_at, update_at, severity, likelihood, classification, created_at, updated_at) VALUES ('28b57abf-5f74-431b-badf-739c32b7a898', 'C1', 'Container View', 'Container / Component / Technical Service', '[''C1'', ''container'', ''runtime'', ''application'']', 'Runtime containers. What are the main runtime units?', TRUE, 'migration_014', 'migration_014', '2026-06-22T18:51:06.462207'::TIMESTAMP, '2026-06-22T18:53:45.079050'::TIMESTAMP, 'medium', 'medium', 'recommended', '2026-06-23T06:13:09.295211+00:00'::TIMESTAMP, '2026-06-23T06:13:09.295211+00:00'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_pact_concern (id, concern_key, concern_name, layer, risk_tags, description, is_active, create_by, update_by, create_at, update_at, severity, likelihood, classification, created_at, updated_at) VALUES ('29001e8b-7082-4ce1-971b-9220bd86b590', 'B2', 'Business Process', 'Business / Organization', '[]', 'End-to-end workflows. How do business processes execute across domains?', TRUE, 'migration_014', 'dev_admin', '2026-06-22T18:51:06.462207'::TIMESTAMP, '2026-06-23T21:08:47.761751'::TIMESTAMP, 'medium', 'medium', 'recommended', '2026-06-23T06:13:09.295211+00:00'::TIMESTAMP, '2026-06-23T06:13:09.295211+00:00'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_pact_concern (id, concern_key, concern_name, layer, risk_tags, description, is_active, create_by, update_by, create_at, update_at, severity, likelihood, classification, created_at, updated_at) VALUES ('2c23b8ee-a814-4596-a8df-66bb6a644a70', 'DIN6', 'Scalability and Capacity', 'Deployment / Infrastructure / Networking', '[''performance'', ''availability'']', 'Plan horizontal and vertical scaling with bottleneck controls.', FALSE, 'system', 'migration_014', '2026-06-22T18:51:06.247373'::TIMESTAMP, '2026-06-22T18:53:45.079050'::TIMESTAMP, 'medium', 'medium', 'recommended', '2026-06-23T06:13:09.295211+00:00'::TIMESTAMP, '2026-06-23T06:13:09.295211+00:00'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_pact_concern (id, concern_key, concern_name, layer, risk_tags, description, is_active, create_by, update_by, create_at, update_at, severity, likelihood, classification, created_at, updated_at) VALUES ('2ee0c84b-8b62-4733-a7c1-23756dd4a878', 'DIN3', 'Infrastructure Composition', 'Deployment / Infrastructure / Networking', '[]', 'Infrastructure layout. What infrastructure components exist?', TRUE, 'migration_014', 'dev_admin', '2026-06-22T18:51:06.462207'::TIMESTAMP, '2026-06-23T21:14:15.673701'::TIMESTAMP, 'medium', 'medium', 'recommended', '2026-06-23T06:13:09.295211+00:00'::TIMESTAMP, '2026-06-23T06:13:09.295211+00:00'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_pact_concern (id, concern_key, concern_name, layer, risk_tags, description, is_active, create_by, update_by, create_at, update_at, severity, likelihood, classification, created_at, updated_at) VALUES ('2eed1b4c-2a65-4190-a406-dffff76106ff', 'OR5', 'Operational Feedback', 'Operations & Reliability', '[''OR5'', ''operations'', ''feedback'', ''evolution'']', 'Learning loops. How do operations inform evolution?', TRUE, 'migration_014', 'migration_014', '2026-06-22T18:51:06.462207'::TIMESTAMP, '2026-06-22T18:53:45.079050'::TIMESTAMP, 'medium', 'medium', 'recommended', '2026-06-23T06:13:09.295211+00:00'::TIMESTAMP, '2026-06-23T06:13:09.295211+00:00'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_pact_concern (id, concern_key, concern_name, layer, risk_tags, description, is_active, create_by, update_by, create_at, update_at, severity, likelihood, classification, created_at, updated_at) VALUES ('2fdc5548-aae8-4073-a863-177d95264e9d', 'OR1', 'Operations View', 'Operations & Reliability', '[''OR1'', ''operations'', ''incident'', ''runbook'']', 'Incident handling. How are incidents managed operationally?', TRUE, 'migration_014', 'migration_014', '2026-06-22T18:51:06.462207'::TIMESTAMP, '2026-06-22T18:53:45.079050'::TIMESTAMP, 'medium', 'medium', 'recommended', '2026-06-23T06:13:09.295211+00:00'::TIMESTAMP, '2026-06-23T06:13:09.295211+00:00'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_pact_concern (id, concern_key, concern_name, layer, risk_tags, description, is_active, create_by, update_by, create_at, update_at, severity, likelihood, classification, created_at, updated_at) VALUES ('33fa7d86-f251-4dfd-b58a-1cb730a8218f', 'SCR5', 'User Authentication', 'Security, Compliance & Risk', '[]', 'User identity. How are users authenticated?', TRUE, 'migration_014', 'dev_admin', '2026-06-22T18:51:06.462207'::TIMESTAMP, '2026-06-23T21:38:49.111367'::TIMESTAMP, 'medium', 'medium', 'recommended', '2026-06-23T06:13:09.295211+00:00'::TIMESTAMP, '2026-06-23T06:13:09.295211+00:00'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_pact_concern (id, concern_key, concern_name, layer, risk_tags, description, is_active, create_by, update_by, create_at, update_at, severity, likelihood, classification, created_at, updated_at) VALUES ('3827e763-ed52-440a-81fe-30e9cd10c279', 'A3', 'Application Interaction', 'Context & Application', '[]', 'Application collaboration. How do applications interact and depend on each other?', TRUE, 'migration_014', 'dev_admin', '2026-06-22T18:51:06.462207'::TIMESTAMP, '2026-06-23T21:10:48.463535'::TIMESTAMP, 'medium', 'medium', 'recommended', '2026-06-23T06:13:09.295211+00:00'::TIMESTAMP, '2026-06-23T06:13:09.295211+00:00'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_pact_concern (id, concern_key, concern_name, layer, risk_tags, description, is_active, create_by, update_by, create_at, update_at, severity, likelihood, classification, created_at, updated_at) VALUES ('38ca83cc-361b-4dce-8973-e67156a8d8d1', 'IP6', 'Sequence Interaction', 'Integration & Processing', '[]', 'Call ordering. What is the interaction sequence?', TRUE, 'migration_014', 'dev_admin', '2026-06-22T18:51:06.462207'::TIMESTAMP, '2026-06-23T21:15:42.303672'::TIMESTAMP, 'medium', 'medium', 'recommended', '2026-06-23T06:13:09.295211+00:00'::TIMESTAMP, '2026-06-23T06:13:09.295211+00:00'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_pact_concern (id, concern_key, concern_name, layer, risk_tags, description, is_active, create_by, update_by, create_at, update_at, severity, likelihood, classification, created_at, updated_at) VALUES ('3be109b4-1237-49aa-8109-825295c9e2e9', 'A5', 'Application Domain Boundary', 'Context & Application', '[''complexity'', ''delivery'']', 'Clarify service boundaries and domain ownership.', FALSE, 'system', 'migration_014', '2026-06-22T18:51:06.247373'::TIMESTAMP, '2026-06-22T18:53:45.079050'::TIMESTAMP, 'medium', 'medium', 'recommended', '2026-06-23T06:13:09.295211+00:00'::TIMESTAMP, '2026-06-23T06:13:09.295211+00:00'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_pact_concern (id, concern_key, concern_name, layer, risk_tags, description, is_active, create_by, update_by, create_at, update_at, severity, likelihood, classification, created_at, updated_at) VALUES ('3e9d1504-b37a-4e94-abb3-7e142aeaf9b2', 'SCR4', 'Service Authentication', 'Security, Compliance & Risk', '[]', 'Service trust. How do services authenticate each other?', TRUE, 'migration_014', 'dev_admin', '2026-06-22T18:51:06.462207'::TIMESTAMP, '2026-06-23T21:38:41.108448'::TIMESTAMP, 'medium', 'medium', 'recommended', '2026-06-23T06:13:09.295211+00:00'::TIMESTAMP, '2026-06-23T06:13:09.295211+00:00'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_pact_concern (id, concern_key, concern_name, layer, risk_tags, description, is_active, create_by, update_by, create_at, update_at, severity, likelihood, classification, created_at, updated_at) VALUES ('3efe6823-5036-4d30-91d8-dfac1dd8d847', 'SCR2', 'Threat & Risk Modeling', 'Security, Compliance & Risk', '[]', 'Threat analysis. What threats and risks exist?', TRUE, 'migration_014', 'dev_admin', '2026-06-22T18:51:06.462207'::TIMESTAMP, '2026-06-23T21:38:26.761075'::TIMESTAMP, 'medium', 'medium', 'recommended', '2026-06-23T06:13:09.295211+00:00'::TIMESTAMP, '2026-06-23T06:13:09.295211+00:00'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_pact_concern (id, concern_key, concern_name, layer, risk_tags, description, is_active, create_by, update_by, create_at, update_at, severity, likelihood, classification, created_at, updated_at) VALUES ('40648691-6e25-4026-aff2-14e8803094fe', 'AGD3', 'Quality Attribute Trade-off', 'Architecture Governance & Decision', '[]', 'Trade-off reasoning. How are quality attributes balanced?', TRUE, 'migration_014', 'dev_admin', '2026-06-22T18:51:06.462207'::TIMESTAMP, '2026-06-23T21:07:55.562427'::TIMESTAMP, 'medium', 'medium', 'recommended', '2026-06-23T06:13:09.295211+00:00'::TIMESTAMP, '2026-06-23T06:13:09.295211+00:00'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_pact_concern (id, concern_key, concern_name, layer, risk_tags, description, is_active, create_by, update_by, create_at, update_at, severity, likelihood, classification, created_at, updated_at) VALUES ('418a024d-4824-4bfd-93d7-d2523fe15a62', 'AGD7', 'Architecture Decision Record', 'Architecture Governance & Decision', '[''governance'', ''compliance'']', 'Document decision rationale and approval trail.', TRUE, 'system', 'migration_014', '2026-06-22T18:51:06.247373'::TIMESTAMP, '2026-06-22T18:53:45.079050'::TIMESTAMP, 'medium', 'medium', 'recommended', '2026-06-23T06:13:09.295211+00:00'::TIMESTAMP, '2026-06-23T06:13:09.295211+00:00'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_pact_concern (id, concern_key, concern_name, layer, risk_tags, description, is_active, create_by, update_by, create_at, update_at, severity, likelihood, classification, created_at, updated_at) VALUES ('48dfc8fd-540f-4aab-8664-ade612687973', 'C2', 'Component View', 'Container / Component / Technical Service', '[''C2'', ''component'', ''modularity'', ''refactor'']', 'Internal modularity. How are components structured within containers?', TRUE, 'migration_014', 'migration_014', '2026-06-22T18:51:06.462207'::TIMESTAMP, '2026-06-22T18:53:45.079050'::TIMESTAMP, 'medium', 'medium', 'recommended', '2026-06-23T06:13:09.295211+00:00'::TIMESTAMP, '2026-06-23T06:13:09.295211+00:00'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_pact_concern (id, concern_key, concern_name, layer, risk_tags, description, is_active, create_by, update_by, create_at, update_at, severity, likelihood, classification, created_at, updated_at) VALUES ('4b7a1ac7-fc11-4391-9902-c5c632f4acad', 'OR4', 'Monitoring & Observability View', 'Operations & Reliability', '[''OR4'', ''observability'', ''monitoring'', ''operations'']', 'System visibility. How is system health observed?', TRUE, 'migration_014', 'migration_014', '2026-06-22T18:51:06.462207'::TIMESTAMP, '2026-06-22T18:53:45.079050'::TIMESTAMP, 'medium', 'medium', 'recommended', '2026-06-23T06:13:09.295211+00:00'::TIMESTAMP, '2026-06-23T06:13:09.295211+00:00'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_pact_concern (id, concern_key, concern_name, layer, risk_tags, description, is_active, create_by, update_by, create_at, update_at, severity, likelihood, classification, created_at, updated_at) VALUES ('4d88d0e4-8ca8-4ed6-8680-62306fa27be6', 'IP7', 'Interface Contract Stability', 'Integration & Processing', '[''integration'', ''delivery'']', 'Specify APIs, versioning, and compatibility guarantees.', FALSE, 'system', 'migration_014', '2026-06-22T18:51:06.247373'::TIMESTAMP, '2026-06-22T18:53:45.079050'::TIMESTAMP, 'medium', 'medium', 'recommended', '2026-06-23T06:13:09.295211+00:00'::TIMESTAMP, '2026-06-23T06:13:09.295211+00:00'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_pact_concern (id, concern_key, concern_name, layer, risk_tags, description, is_active, create_by, update_by, create_at, update_at, severity, likelihood, classification, created_at, updated_at) VALUES ('53b7c544-b3d6-4415-bbac-88aec5eda369', 'IP8', 'Dependency and Interaction Map', 'Integration & Processing', '[''integration'', ''complexity'']', 'Capture cross-system dependencies and communication paths.', FALSE, 'system', 'migration_014', '2026-06-22T18:51:06.247373'::TIMESTAMP, '2026-06-22T18:53:45.079050'::TIMESTAMP, 'medium', 'medium', 'recommended', '2026-06-23T06:13:09.295211+00:00'::TIMESTAMP, '2026-06-23T06:13:09.295211+00:00'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_pact_concern (id, concern_key, concern_name, layer, risk_tags, description, is_active, create_by, update_by, create_at, update_at, severity, likelihood, classification, created_at, updated_at) VALUES ('5543fd08-74f5-4b00-bc25-6881d98081aa', 'OR6', 'Observability and Alerting', 'Operations & Reliability', '[''operations'', ''availability'']', 'Define telemetry signals, SLOs, and alert ownership.', FALSE, 'system', 'migration_014', '2026-06-22T18:51:06.247373'::TIMESTAMP, '2026-06-22T18:53:45.079050'::TIMESTAMP, 'medium', 'medium', 'recommended', '2026-06-23T06:13:09.295211+00:00'::TIMESTAMP, '2026-06-23T06:13:09.295211+00:00'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_pact_concern (id, concern_key, concern_name, layer, risk_tags, description, is_active, create_by, update_by, create_at, update_at, severity, likelihood, classification, created_at, updated_at) VALUES ('5ab9f715-2c2b-48f9-86e5-c41a410e33a1', 'A6', 'Application Resilience', 'Context & Application', '[]', 'Define fallback, retry, and graceful degradation strategy.', TRUE, 'system', 'dev_admin', '2026-06-22T18:51:06.247373'::TIMESTAMP, '2026-06-23T21:07:23.608162'::TIMESTAMP, 'medium', 'medium', 'recommended', '2026-06-23T06:13:09.295211+00:00'::TIMESTAMP, '2026-06-23T06:13:09.295211+00:00'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_pact_concern (id, concern_key, concern_name, layer, risk_tags, description, is_active, create_by, update_by, create_at, update_at, severity, likelihood, classification, created_at, updated_at) VALUES ('790ea5f7-68a4-414a-9ff9-c215af2ce53f', 'B1', 'Business Capability', 'Business / Organization', '[]', 'Capability structure. What business capabilities exist and which are critical?', TRUE, 'migration_014', 'dev_admin', '2026-06-22T18:51:06.462207'::TIMESTAMP, '2026-06-23T21:08:39.424969'::TIMESTAMP, 'medium', 'medium', 'recommended', '2026-06-23T06:13:09.295211+00:00'::TIMESTAMP, '2026-06-23T06:13:09.295211+00:00'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_pact_concern (id, concern_key, concern_name, layer, risk_tags, description, is_active, create_by, update_by, create_at, update_at, severity, likelihood, classification, created_at, updated_at) VALUES ('79e24e5c-b1d0-4ffc-a097-fa71d8dc693c', 'SCR8', 'Change Readiness', 'Security, Compliance & Risk', '[''delivery'', ''complexity'']', 'Assess migration and release readiness risks.', FALSE, 'system', 'migration_014', '2026-06-22T18:51:06.247373'::TIMESTAMP, '2026-06-22T18:53:45.079050'::TIMESTAMP, 'medium', 'medium', 'recommended', '2026-06-23T06:13:09.295211+00:00'::TIMESTAMP, '2026-06-23T06:13:09.295211+00:00'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_pact_concern (id, concern_key, concern_name, layer, risk_tags, description, is_active, create_by, update_by, create_at, update_at, severity, likelihood, classification, created_at, updated_at) VALUES ('7a454779-a4bd-4c9d-9f02-dc0774f78ec5', 'DIN4', 'Resource & Capacity', 'Deployment / Infrastructure / Networking', '[]', 'Scaling and capacity. How are resources allocated and scaled?', TRUE, 'migration_014', 'dev_admin', '2026-06-22T18:51:06.462207'::TIMESTAMP, '2026-06-23T21:14:24.174601'::TIMESTAMP, 'medium', 'medium', 'recommended', '2026-06-23T06:13:09.295211+00:00'::TIMESTAMP, '2026-06-23T06:13:09.295211+00:00'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_pact_concern (id, concern_key, concern_name, layer, risk_tags, description, is_active, create_by, update_by, create_at, update_at, severity, likelihood, classification, created_at, updated_at) VALUES ('7e19731b-6f4c-49de-8af1-b2566ce8ae89', 'IP3', 'System Processing', 'Integration & Processing', '[]', 'Execution semantics. How are requests processed end-to-end?', TRUE, 'migration_014', 'dev_admin', '2026-06-22T18:51:06.462207'::TIMESTAMP, '2026-06-23T21:15:19.449927'::TIMESTAMP, 'medium', 'medium', 'recommended', '2026-06-23T06:13:09.295211+00:00'::TIMESTAMP, '2026-06-23T06:13:09.295211+00:00'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_pact_concern (id, concern_key, concern_name, layer, risk_tags, description, is_active, create_by, update_by, create_at, update_at, severity, likelihood, classification, created_at, updated_at) VALUES ('80673659-bab3-4730-91de-31dde91dd067', 'DIN5', 'Disaster Recovery', 'Deployment / Infrastructure / Networking', '[''continuity'', ''availability'']', 'Define backup, restore, and regional failover strategy.', FALSE, 'system', 'migration_014', '2026-06-22T18:51:06.247373'::TIMESTAMP, '2026-06-22T18:53:45.079050'::TIMESTAMP, 'medium', 'medium', 'recommended', '2026-06-23T06:13:09.295211+00:00'::TIMESTAMP, '2026-06-23T06:13:09.295211+00:00'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_pact_concern (id, concern_key, concern_name, layer, risk_tags, description, is_active, create_by, update_by, create_at, update_at, severity, likelihood, classification, created_at, updated_at) VALUES ('83dff545-c341-47d8-b929-544cc66a9077', 'D5', 'Conceptual Data Entity', 'Data Architecture', '[]', 'Business entities. What core business entities exist?', TRUE, 'migration_014', 'dev_admin', '2026-06-22T18:51:06.462207'::TIMESTAMP, '2026-06-23T21:13:31.263903'::TIMESTAMP, 'medium', 'medium', 'recommended', '2026-06-23T06:13:09.295211+00:00'::TIMESTAMP, '2026-06-23T06:13:09.295211+00:00'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_pact_concern (id, concern_key, concern_name, layer, risk_tags, description, is_active, create_by, update_by, create_at, update_at, severity, likelihood, classification, created_at, updated_at) VALUES ('9185b6da-ff40-459f-b2fe-f7fb4c2f0e9f', 'D9', 'Data Sovereignty', 'Data Architecture', '[]', 'Residency constraints. Where is data stored and restricted?', TRUE, 'migration_014', 'dev_admin', '2026-06-22T18:51:06.462207'::TIMESTAMP, '2026-06-23T21:15:56.880845'::TIMESTAMP, 'medium', 'medium', 'recommended', '2026-06-23T06:13:09.295211+00:00'::TIMESTAMP, '2026-06-23T06:13:09.295211+00:00'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_pact_concern (id, concern_key, concern_name, layer, risk_tags, description, is_active, create_by, update_by, create_at, update_at, severity, likelihood, classification, created_at, updated_at) VALUES ('92f7067e-0071-4e00-b89c-de10f1542e2f', 'D13', 'Data Lineage and Flow', 'Data Architecture', '[''data'', ''integration'']', 'Track key data flows from source to consumption.', FALSE, 'system', 'migration_014', '2026-06-22T18:51:06.247373'::TIMESTAMP, '2026-06-22T18:53:45.079050'::TIMESTAMP, 'medium', 'medium', 'recommended', '2026-06-23T06:13:09.295211+00:00'::TIMESTAMP, '2026-06-23T06:13:09.295211+00:00'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_pact_concern (id, concern_key, concern_name, layer, risk_tags, description, is_active, create_by, update_by, create_at, update_at, severity, likelihood, classification, created_at, updated_at) VALUES ('934c6b72-e580-40fc-a0d1-01027cb66eb6', 'SCR10', 'Data Protection', 'Security, Compliance & Risk', '[''privacy'', ''compliance'', ''security'']', 'Describe encryption, tokenization, and sensitive data handling.', FALSE, 'system', 'migration_014', '2026-06-22T18:51:06.247373'::TIMESTAMP, '2026-06-22T18:53:45.079050'::TIMESTAMP, 'medium', 'medium', 'recommended', '2026-06-23T06:13:09.295211+00:00'::TIMESTAMP, '2026-06-23T06:13:09.295211+00:00'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_pact_concern (id, concern_key, concern_name, layer, risk_tags, description, is_active, create_by, update_by, create_at, update_at, severity, likelihood, classification, created_at, updated_at) VALUES ('9dfed160-c657-4192-b65f-cc60729bb1e0', 'SCR7', 'Compliance Boundary', 'Security, Compliance & Risk', '[]', 'Regulatory scope. Which regulations apply and where?', TRUE, 'migration_014', 'dev_admin', '2026-06-22T18:51:06.462207'::TIMESTAMP, '2026-06-23T21:39:04.366137'::TIMESTAMP, 'medium', 'medium', 'recommended', '2026-06-23T06:13:09.295211+00:00'::TIMESTAMP, '2026-06-23T06:13:09.295211+00:00'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_pact_concern (id, concern_key, concern_name, layer, risk_tags, description, is_active, create_by, update_by, create_at, update_at, severity, likelihood, classification, created_at, updated_at) VALUES ('a0f87008-a2dc-4ccd-86d8-4034cf864569', 'SCR11', 'Identity and Access Control', 'Security, Compliance & Risk', '[''compliance'', ''privacy'', ''security'']', 'Map authentication, authorization, and least privilege controls.', FALSE, 'system', 'migration_014', '2026-06-22T18:51:06.247373'::TIMESTAMP, '2026-06-22T18:53:45.079050'::TIMESTAMP, 'medium', 'medium', 'recommended', '2026-06-23T06:13:09.295211+00:00'::TIMESTAMP, '2026-06-23T06:13:09.295211+00:00'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_pact_concern (id, concern_key, concern_name, layer, risk_tags, description, is_active, create_by, update_by, create_at, update_at, severity, likelihood, classification, created_at, updated_at) VALUES ('a3ee27b3-7939-4d27-8f4f-ac46ebbc7c63', 'SCR9', 'External Dependency Risk', 'Security, Compliance & Risk', '[''supply_chain'', ''integration'']', 'Assess vendor and API dependency contingency plans.', FALSE, 'system', 'migration_014', '2026-06-22T18:51:06.247373'::TIMESTAMP, '2026-06-22T18:53:45.079050'::TIMESTAMP, 'medium', 'medium', 'recommended', '2026-06-23T06:13:09.295211+00:00'::TIMESTAMP, '2026-06-23T06:13:09.295211+00:00'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_pact_concern (id, concern_key, concern_name, layer, risk_tags, description, is_active, create_by, update_by, create_at, update_at, severity, likelihood, classification, created_at, updated_at) VALUES ('a50b2934-a87b-44e1-a153-3d9407da3e3d', 'AGD4', 'Cost & Value', 'Architecture Governance & Decision', '[]', 'Economic impact. What are the costs and expected value?', TRUE, 'migration_014', 'dev_admin', '2026-06-22T18:51:06.462207'::TIMESTAMP, '2026-06-23T21:08:14.760840'::TIMESTAMP, 'medium', 'medium', 'recommended', '2026-06-23T06:13:09.295211+00:00'::TIMESTAMP, '2026-06-23T06:13:09.295211+00:00'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_pact_concern (id, concern_key, concern_name, layer, risk_tags, description, is_active, create_by, update_by, create_at, update_at, severity, likelihood, classification, created_at, updated_at) VALUES ('a7159e8d-3824-4bfc-a1c6-f4798dc2b04a', 'IP4', 'Activity', 'Integration & Processing', '[]', 'Action paths. What actions and decisions occur during execution?', TRUE, 'migration_014', 'dev_admin', '2026-06-22T18:51:06.462207'::TIMESTAMP, '2026-06-23T21:15:27.376691'::TIMESTAMP, 'medium', 'medium', 'recommended', '2026-06-23T06:13:09.295211+00:00'::TIMESTAMP, '2026-06-23T06:13:09.295211+00:00'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_pact_concern (id, concern_key, concern_name, layer, risk_tags, description, is_active, create_by, update_by, create_at, update_at, severity, likelihood, classification, created_at, updated_at) VALUES ('b0ae8094-e55d-449d-9fda-f30f918923a9', 'IP5', 'Process Flow', 'Integration & Processing', '[]', 'Workflow execution. How do workflows orchestrate services?', TRUE, 'migration_014', 'dev_admin', '2026-06-22T18:51:06.462207'::TIMESTAMP, '2026-06-23T21:15:34.557790'::TIMESTAMP, 'medium', 'medium', 'recommended', '2026-06-23T06:13:09.295211+00:00'::TIMESTAMP, '2026-06-23T06:13:09.295211+00:00'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_pact_concern (id, concern_key, concern_name, layer, risk_tags, description, is_active, create_by, update_by, create_at, update_at, severity, likelihood, classification, created_at, updated_at) VALUES ('b501e152-100e-47fd-99af-3a41377e54f8', 'DIP7', 'Application Deployment Location View', 'Deployment / Infrastructure / Networking', '[''DIP7'', ''deployment'', ''location'', ''infrastructure'']', 'Deployment topology. Where are applications deployed?', TRUE, 'migration_014', 'migration_014', '2026-06-22T18:51:06.462207'::TIMESTAMP, '2026-06-22T18:53:45.079050'::TIMESTAMP, 'medium', 'medium', 'recommended', '2026-06-23T06:13:09.295211+00:00'::TIMESTAMP, '2026-06-23T06:13:09.295211+00:00'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_pact_concern (id, concern_key, concern_name, layer, risk_tags, description, is_active, create_by, update_by, create_at, update_at, severity, likelihood, classification, created_at, updated_at) VALUES ('b7751257-c599-4291-a108-43690f98bfcb', 'C4', 'Technical Stack', 'Container / Component / Technical Service', '[]', 'Technology choices. Which languages, frameworks, and platforms are used?', TRUE, 'migration_014', 'dev_admin', '2026-06-22T18:51:06.462207'::TIMESTAMP, '2026-06-23T21:10:12.766673'::TIMESTAMP, 'medium', 'medium', 'recommended', '2026-06-23T06:13:09.295211+00:00'::TIMESTAMP, '2026-06-23T06:13:09.295211+00:00'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_pact_concern (id, concern_key, concern_name, layer, risk_tags, description, is_active, create_by, update_by, create_at, update_at, severity, likelihood, classification, created_at, updated_at) VALUES ('bd5e1599-400f-4bcc-9386-a44e056d495a', 'D3', 'Data Lineage', 'Data Architecture', '[]', 'Traceability. Where does data originate and propagate?', TRUE, 'migration_014', 'dev_admin', '2026-06-22T18:51:06.462207'::TIMESTAMP, '2026-06-23T21:13:13.217857'::TIMESTAMP, 'medium', 'medium', 'recommended', '2026-06-23T06:13:09.295211+00:00'::TIMESTAMP, '2026-06-23T06:13:09.295211+00:00'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_pact_concern (id, concern_key, concern_name, layer, risk_tags, description, is_active, create_by, update_by, create_at, update_at, severity, likelihood, classification, created_at, updated_at) VALUES ('be1af365-bc9c-4678-a0e1-18aa5eb3dc9a', 'C5', 'Communication & Protocol', 'Container / Component / Technical Service', '[]', 'Interaction mechanisms. How do components communicate?', TRUE, 'migration_014', 'dev_admin', '2026-06-22T18:51:06.462207'::TIMESTAMP, '2026-06-23T21:10:21.299937'::TIMESTAMP, 'medium', 'medium', 'recommended', '2026-06-23T06:13:09.295211+00:00'::TIMESTAMP, '2026-06-23T06:13:09.295211+00:00'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_pact_concern (id, concern_key, concern_name, layer, risk_tags, description, is_active, create_by, update_by, create_at, update_at, severity, likelihood, classification, created_at, updated_at) VALUES ('bf6048e2-2604-4d23-a2fa-aa3afae283b5', 'D2', 'Data Derivation & Evolution', 'Data Architecture', '[]', 'Data transformation. How is data derived and transformed?', TRUE, 'migration_014', 'dev_admin', '2026-06-22T18:51:06.462207'::TIMESTAMP, '2026-06-23T21:11:41.427333'::TIMESTAMP, 'medium', 'medium', 'recommended', '2026-06-23T06:13:09.295211+00:00'::TIMESTAMP, '2026-06-23T06:13:09.295211+00:00'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_pact_concern (id, concern_key, concern_name, layer, risk_tags, description, is_active, create_by, update_by, create_at, update_at, severity, likelihood, classification, created_at, updated_at) VALUES ('c46eec72-b92a-4f2a-ac80-bd3097694729', 'SCR3', 'Attack Path', 'Security, Compliance & Risk', '[]', 'Adversarial traversal. How could an attacker move through the system?', TRUE, 'migration_014', 'dev_admin', '2026-06-22T18:51:06.462207'::TIMESTAMP, '2026-06-23T21:38:33.938921'::TIMESTAMP, 'medium', 'medium', 'recommended', '2026-06-23T06:13:09.295211+00:00'::TIMESTAMP, '2026-06-23T06:13:09.295211+00:00'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_pact_concern (id, concern_key, concern_name, layer, risk_tags, description, is_active, create_by, update_by, create_at, update_at, severity, likelihood, classification, created_at, updated_at) VALUES ('ccf8abd3-3794-4c3b-8f30-6d72d8b29815', 'OR3', 'Reliability & SLO View', 'Operations & Reliability', '[''OR3'', ''reliability'', ''slo'', ''availability'']', 'Reliability targets. What service levels are required?', TRUE, 'migration_014', 'migration_014', '2026-06-22T18:51:06.462207'::TIMESTAMP, '2026-06-22T18:53:45.079050'::TIMESTAMP, 'medium', 'medium', 'recommended', '2026-06-23T06:13:09.295211+00:00'::TIMESTAMP, '2026-06-23T06:13:09.295211+00:00'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_pact_concern (id, concern_key, concern_name, layer, risk_tags, description, is_active, create_by, update_by, create_at, update_at, severity, likelihood, classification, created_at, updated_at) VALUES ('cdb6164a-9c95-4857-b20d-c5259ce2d130', 'AGD2', 'Evolution & Change Impact', 'Architecture Governance & Decision', '[]', 'Change analysis. What is impacted by a proposed change?', TRUE, 'migration_014', 'dev_admin', '2026-06-22T18:51:06.462207'::TIMESTAMP, '2026-06-23T21:07:45.881015'::TIMESTAMP, 'medium', 'medium', 'recommended', '2026-06-23T06:13:09.295211+00:00'::TIMESTAMP, '2026-06-23T06:13:09.295211+00:00'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_pact_concern (id, concern_key, concern_name, layer, risk_tags, description, is_active, create_by, update_by, create_at, update_at, severity, likelihood, classification, created_at, updated_at) VALUES ('ce132670-3e9a-4606-a407-291eff16446e', 'A4', 'User Role-Application Mapping', 'Context & Application', '[]', 'Access responsibility. Which roles can access which applications?', TRUE, 'migration_014', 'dev_admin', '2026-06-22T18:51:06.462207'::TIMESTAMP, '2026-06-23T21:11:03.028245'::TIMESTAMP, 'medium', 'medium', 'recommended', '2026-06-23T06:13:09.295211+00:00'::TIMESTAMP, '2026-06-23T06:13:09.295211+00:00'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_pact_concern (id, concern_key, concern_name, layer, risk_tags, description, is_active, create_by, update_by, create_at, update_at, severity, likelihood, classification, created_at, updated_at) VALUES ('d368804c-4368-4e29-9e71-51e552d74d7f', 'D6', 'Data Quality', 'Data Architecture', '[]', 'Quality assurance. Is data accurate, complete, and timely?', TRUE, 'migration_014', 'dev_admin', '2026-06-22T18:51:06.462207'::TIMESTAMP, '2026-06-23T21:13:39.385178'::TIMESTAMP, 'medium', 'medium', 'recommended', '2026-06-23T06:13:09.295211+00:00'::TIMESTAMP, '2026-06-23T06:13:09.295211+00:00'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_pact_concern (id, concern_key, concern_name, layer, risk_tags, description, is_active, create_by, update_by, create_at, update_at, severity, likelihood, classification, created_at, updated_at) VALUES ('d4afd8ac-cb51-459d-887d-128eef4f23a5', 'A1', 'System Context', 'Context & Application', '[]', 'System boundary. What is inside and outside the system?', TRUE, 'migration_014', 'dev_admin', '2026-06-22T18:51:06.462207'::TIMESTAMP, '2026-06-23T21:10:30.593070'::TIMESTAMP, 'medium', 'medium', 'recommended', '2026-06-23T06:13:09.295211+00:00'::TIMESTAMP, '2026-06-23T06:13:09.295211+00:00'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_pact_concern (id, concern_key, concern_name, layer, risk_tags, description, is_active, create_by, update_by, create_at, update_at, severity, likelihood, classification, created_at, updated_at) VALUES ('d907b90d-a1ad-46a5-b24d-164181c8ac12', 'SCR6', 'Authorization & Access Control', 'Security, Compliance & Risk', '[]', 'Access enforcement. Who is authorized to do what?', TRUE, 'migration_014', 'dev_admin', '2026-06-22T18:51:06.462207'::TIMESTAMP, '2026-06-23T21:38:55.690368'::TIMESTAMP, 'medium', 'medium', 'recommended', '2026-06-23T06:13:09.295211+00:00'::TIMESTAMP, '2026-06-23T06:13:09.295211+00:00'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_pact_concern (id, concern_key, concern_name, layer, risk_tags, description, is_active, create_by, update_by, create_at, update_at, severity, likelihood, classification, created_at, updated_at) VALUES ('e092f5e0-16f3-47f3-8343-bd77d8967788', 'D7', 'Data Compliance Flow', 'Data Architecture', '[]', 'Regulatory paths. Does data usage comply with regulations?', TRUE, 'migration_014', 'dev_admin', '2026-06-22T18:51:06.462207'::TIMESTAMP, '2026-06-23T21:13:48.509596'::TIMESTAMP, 'medium', 'medium', 'recommended', '2026-06-23T06:13:09.295211+00:00'::TIMESTAMP, '2026-06-23T06:13:09.295211+00:00'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_pact_concern (id, concern_key, concern_name, layer, risk_tags, description, is_active, create_by, update_by, create_at, update_at, severity, likelihood, classification, created_at, updated_at) VALUES ('e0f38176-57f9-4c7f-8841-b224ab7c68ce', 'IP1', 'Application Integration', 'Integration & Processing', '[]', 'Business-level integration. How do applications exchange data?', TRUE, 'migration_014', 'dev_admin', '2026-06-22T18:51:06.462207'::TIMESTAMP, '2026-06-23T21:15:04.161085'::TIMESTAMP, 'medium', 'medium', 'recommended', '2026-06-23T06:13:09.295211+00:00'::TIMESTAMP, '2026-06-23T06:13:09.295211+00:00'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_pact_concern (id, concern_key, concern_name, layer, risk_tags, description, is_active, create_by, update_by, create_at, update_at, severity, likelihood, classification, created_at, updated_at) VALUES ('e52325d3-1109-4c83-8ff7-7337cf27bb80', 'B3', 'User / Actor', 'Business / Organization', '[]', 'Users and roles. Who interacts with the system and in what roles?', TRUE, 'migration_014', 'dev_admin', '2026-06-22T18:51:06.462207'::TIMESTAMP, '2026-06-23T21:08:54.873471'::TIMESTAMP, 'medium', 'medium', 'recommended', '2026-06-23T06:13:09.295211+00:00'::TIMESTAMP, '2026-06-23T06:13:09.295211+00:00'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_pact_concern (id, concern_key, concern_name, layer, risk_tags, description, is_active, create_by, update_by, create_at, update_at, severity, likelihood, classification, created_at, updated_at) VALUES ('e943a552-617b-4112-93d5-d9d3bd94b9a6', 'D4', 'Data Asset', 'Data Architecture', '[]', 'Ownership and value. What data assets exist and who owns them?', TRUE, 'migration_014', 'dev_admin', '2026-06-22T18:51:06.462207'::TIMESTAMP, '2026-06-23T21:13:21.587266'::TIMESTAMP, 'medium', 'medium', 'recommended', '2026-06-23T06:13:09.295211+00:00'::TIMESTAMP, '2026-06-23T06:13:09.295211+00:00'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_pact_concern (id, concern_key, concern_name, layer, risk_tags, description, is_active, create_by, update_by, create_at, update_at, severity, likelihood, classification, created_at, updated_at) VALUES ('ef915c8b-811d-47ff-a417-35c7568ed117', 'AGD1', 'Architecture Decision', 'Architecture Governance & Decision', '[]', 'Decision rationale. What architectural decisions were made and why?', TRUE, 'migration_014', 'dev_admin', '2026-06-22T18:51:06.462207'::TIMESTAMP, '2026-06-23T21:07:36.924611'::TIMESTAMP, 'medium', 'medium', 'recommended', '2026-06-23T06:13:09.295211+00:00'::TIMESTAMP, '2026-06-23T06:13:09.295211+00:00'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_pact_concern (id, concern_key, concern_name, layer, risk_tags, description, is_active, create_by, update_by, create_at, update_at, severity, likelihood, classification, created_at, updated_at) VALUES ('f2fa6488-c455-4103-85ef-993d180b2baf', 'IP2', 'Technical Integration', 'Integration & Processing', '[]', 'Technical constraints. What latency, throughput, or coupling constraints exist?', TRUE, 'migration_014', 'dev_admin', '2026-06-22T18:51:06.462207'::TIMESTAMP, '2026-06-23T21:15:11.011309'::TIMESTAMP, 'medium', 'medium', 'recommended', '2026-06-23T06:13:09.295211+00:00'::TIMESTAMP, '2026-06-23T06:13:09.295211+00:00'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_pact_concern (id, concern_key, concern_name, layer, risk_tags, description, is_active, create_by, update_by, create_at, update_at, severity, likelihood, classification, created_at, updated_at) VALUES ('f7a4a7a0-5189-455c-97ce-7007f3992e66', 'OR7', 'Operability Runbook', 'Operations & Reliability', '[''operations'', ''delivery'']', 'Specify runbooks for incident, release, and rollback.', FALSE, 'system', 'migration_014', '2026-06-22T18:51:06.247373'::TIMESTAMP, '2026-06-22T18:53:45.079050'::TIMESTAMP, 'medium', 'medium', 'recommended', '2026-06-23T06:13:09.295211+00:00'::TIMESTAMP, '2026-06-23T06:13:09.295211+00:00'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_pact_concern (id, concern_key, concern_name, layer, risk_tags, description, is_active, create_by, update_by, create_at, update_at, severity, likelihood, classification, created_at, updated_at) VALUES ('f7f896c5-3f2c-49d3-9db1-c9882dcc5ce3', 'D1', 'Business Data Flow', 'Data Architecture', '[]', 'Business data movement. How does data support business processes?', TRUE, 'migration_014', 'dev_admin', '2026-06-22T18:51:06.462207'::TIMESTAMP, '2026-06-23T21:11:19.577999'::TIMESTAMP, 'medium', 'medium', 'recommended', '2026-06-23T06:13:09.295211+00:00'::TIMESTAMP, '2026-06-23T06:13:09.295211+00:00'::TIMESTAMP) ON CONFLICT DO NOTHING;
-- Table: eam.avdm_question
CREATE TABLE IF NOT EXISTS eam.avdm_question (
id UUID DEFAULT gen_random_uuid() PRIMARY KEY,
stable_question_id INTEGER NOT NULL,
question_key VARCHAR,
category_id UUID NOT NULL,
answer_type_id UUID NOT NULL,
option_set_id UUID,
question_text text NOT NULL,
design_intent text,
placeholder text,
source_scope VARCHAR NOT NULL DEFAULT 'question_bank'::character varying,
source_ref VARCHAR,
requires_comment_on_answers jsonb NOT NULL DEFAULT '[]'::jsonb,
sort_order INTEGER NOT NULL DEFAULT 0,
is_active BOOLEAN NOT NULL DEFAULT true,
create_by VARCHAR NOT NULL DEFAULT 'system'::character varying,
update_by VARCHAR NOT NULL DEFAULT 'system'::character varying,
create_at TIMESTAMP NOT NULL DEFAULT now(),
update_at TIMESTAMP NOT NULL DEFAULT now()
);
-- Seed: eam.avdm_question (69 rows)
INSERT INTO eam.avdm_question (id, stable_question_id, question_key, category_id, answer_type_id, option_set_id, question_text, design_intent, placeholder, source_scope, source_ref, requires_comment_on_answers, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('0a2ac0fb-c2e3-4259-b59d-cf542623386e', 48, 'section_privacyCheckpoint3Section_personalDataType', '277c59a8-c459-4e04-88af-0e3da170e02d', '6f64a869-cb82-418c-986c-96c12249af27', NULL, 'Personal Data Type', 'Screening for PRC personal information and cross-border transfer obligations.', NULL, 'questionnaire_section', 'privacyCheckpoint3Section.personalDataType', '[]', 1230, TRUE, 'migration_019', 'migration_019', '2026-06-22T18:51:07.364430'::TIMESTAMP, '2026-06-22T18:53:45.212396'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question (id, stable_question_id, question_key, category_id, answer_type_id, option_set_id, question_text, design_intent, placeholder, source_scope, source_ref, requires_comment_on_answers, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('0b3669ba-6316-456e-9b9d-dc097d87b66e', 36, 'section_complexitySection_integrationTechKindsCount', '2d66e448-d173-484a-956a-5b5a65f02340', '6f64a869-cb82-418c-986c-96c12249af27', 'f4af0fd5-004c-4419-9a0f-fd5a83f5aec8', 'How many integration technologies are involved?', 'Operational and technical delivery complexity factors.', NULL, 'questionnaire_section', 'complexitySection.integrationTechKindsCount', '[]', 1110, TRUE, 'migration_019', 'migration_019', '2026-06-22T18:51:07.364430'::TIMESTAMP, '2026-06-22T18:53:45.212396'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question (id, stable_question_id, question_key, category_id, answer_type_id, option_set_id, question_text, design_intent, placeholder, source_scope, source_ref, requires_comment_on_answers, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('0b71ea36-5250-4ee0-8f01-d6f5202d7b99', 38, 'section_privacyCheckpoint1Section_hasThirdPartyData', '277c59a8-c459-4e04-88af-0e3da170e02d', '07b09655-2dc9-44b7-a530-98d4616cacdf', 'cc0049dd-7de3-4ae4-8cbe-a3f61e60056d', 'Store/process third-party entity data', 'Third-party entity data handling and transfer screening.', NULL, 'questionnaire_section', 'privacyCheckpoint1Section.hasThirdPartyData', '[]', 1130, TRUE, 'migration_019', 'migration_019', '2026-06-22T18:51:07.364430'::TIMESTAMP, '2026-06-22T18:53:45.212396'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question (id, stable_question_id, question_key, category_id, answer_type_id, option_set_id, question_text, design_intent, placeholder, source_scope, source_ref, requires_comment_on_answers, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('0b82ff82-b866-4a0c-a3b0-4071b59c6b1b', 66, 'matrix_solutionComplexitySection_architectureImpact', '01afa7e7-b135-467f-907d-8195ec405eec', '07b09655-2dc9-44b7-a530-98d4616cacdf', 'c6c8b6ca-7fc1-4396-b9dd-00de733dd31a', 'G. Architecture Impact', 'Uncertain or Yes (5).', NULL, 'assessment_matrix', 'solutionComplexitySection.architectureImpact', '[]', 2120, TRUE, 'migration_019', 'migration_020', '2026-06-22T18:51:07.364430'::TIMESTAMP, '2026-06-22T18:53:45.224499'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question (id, stable_question_id, question_key, category_id, answer_type_id, option_set_id, question_text, design_intent, placeholder, source_scope, source_ref, requires_comment_on_answers, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('0c825395-7258-4684-a6a4-06f5561c0672', 50, 'section_privacyCheckpoint3Section_sensitiveDataVolume', '277c59a8-c459-4e04-88af-0e3da170e02d', '6f64a869-cb82-418c-986c-96c12249af27', NULL, 'Processed sensitive personal data count', 'Screening for PRC personal information and cross-border transfer obligations.', NULL, 'questionnaire_section', 'privacyCheckpoint3Section.sensitiveDataVolume', '[]', 1250, TRUE, 'migration_019', 'migration_019', '2026-06-22T18:51:07.364430'::TIMESTAMP, '2026-06-22T18:53:45.212396'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question (id, stable_question_id, question_key, category_id, answer_type_id, option_set_id, question_text, design_intent, placeholder, source_scope, source_ref, requires_comment_on_answers, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('0ce83598-0ad8-4fa9-9e72-e87656ecfafa', 16, NULL, 'a4fb85f4-5b89-42e1-bc8b-77a6866c4ce4', '07b09655-2dc9-44b7-a530-98d4616cacdf', 'cc0049dd-7de3-4ae4-8cbe-a3f61e60056d', 'Will this project use restricted software?', NULL, NULL, 'question_bank', NULL, '[]', 160, TRUE, 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:53:45.117734'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question (id, stable_question_id, question_key, category_id, answer_type_id, option_set_id, question_text, design_intent, placeholder, source_scope, source_ref, requires_comment_on_answers, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('1466e8a5-fea8-4b99-b04f-82a5128d93b5', 40, 'section_privacyCheckpoint1Section_comments', '277c59a8-c459-4e04-88af-0e3da170e02d', '6984971f-1760-4c9b-980c-2c5b061c5488', NULL, 'Checkpoint 1 comments', 'Third-party entity data handling and transfer screening.', NULL, 'questionnaire_section', 'privacyCheckpoint1Section.comments', '[]', 1150, TRUE, 'migration_019', 'migration_019', '2026-06-22T18:51:07.364430'::TIMESTAMP, '2026-06-22T18:53:45.212396'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question (id, stable_question_id, question_key, category_id, answer_type_id, option_set_id, question_text, design_intent, placeholder, source_scope, source_ref, requires_comment_on_answers, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('17c83dcb-afd8-400d-bf2d-1532d51431c2', 25, NULL, 'a4fb85f4-5b89-42e1-bc8b-77a6866c4ce4', '07b09655-2dc9-44b7-a530-98d4616cacdf', 'cc0049dd-7de3-4ae4-8cbe-a3f61e60056d', 'Will this project adopt AI in the project or application?', NULL, NULL, 'question_bank', NULL, '[]', 250, TRUE, 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:53:45.117734'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question (id, stable_question_id, question_key, category_id, answer_type_id, option_set_id, question_text, design_intent, placeholder, source_scope, source_ref, requires_comment_on_answers, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('2ae91adf-3517-488a-8b94-594503196751', 3, NULL, '70ecd1d7-f79e-473c-86a0-c35482e4485f', '07b09655-2dc9-44b7-a530-98d4616cacdf', 'cc0049dd-7de3-4ae4-8cbe-a3f61e60056d', 'Will this project refactor an existing application?', NULL, NULL, 'question_bank', NULL, '[]', 30, TRUE, 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:53:45.117734'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question (id, stable_question_id, question_key, category_id, answer_type_id, option_set_id, question_text, design_intent, placeholder, source_scope, source_ref, requires_comment_on_answers, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('2b202d1c-4fde-4bbf-b0b0-8e019d056018', 22, NULL, '2be6116a-29e0-45f6-a3dc-160511cf30a5', '07b09655-2dc9-44b7-a530-98d4616cacdf', 'cc0049dd-7de3-4ae4-8cbe-a3f61e60056d', 'Will this project build or change reusable services consumed by more than two applications?', NULL, NULL, 'question_bank', NULL, '[]', 220, TRUE, 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:53:45.117734'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question (id, stable_question_id, question_key, category_id, answer_type_id, option_set_id, question_text, design_intent, placeholder, source_scope, source_ref, requires_comment_on_answers, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('2b3858c2-f5d3-4ce7-a0c5-d4472be1d34e', 31, 'section_changeScopeSection_modifiedApplicationsCount', '56568c6b-22ce-4595-bfc9-5588aaf8a039', '6f64a869-cb82-418c-986c-96c12249af27', '382398ad-87a3-4ea5-b4e9-2a74e7e31da9', 'How many applications will be modified?', 'Project delivery scope across new and modified applications.', NULL, 'questionnaire_section', 'changeScopeSection.modifiedApplicationsCount', '[]', 1060, TRUE, 'migration_019', 'migration_019', '2026-06-22T18:51:07.364430'::TIMESTAMP, '2026-06-22T18:53:45.212396'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question (id, stable_question_id, question_key, category_id, answer_type_id, option_set_id, question_text, design_intent, placeholder, source_scope, source_ref, requires_comment_on_answers, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('2c8f0a6d-2c2b-4232-8723-0a3d173b02c8', 46, 'section_privacyCheckpoint2Section_comments', '277c59a8-c459-4e04-88af-0e3da170e02d', '6984971f-1760-4c9b-980c-2c5b061c5488', NULL, 'Checkpoint 2 comments', 'Screening for personal data, company records, and regulated data outside PRC scope.', NULL, 'questionnaire_section', 'privacyCheckpoint2Section.comments', '[]', 1210, TRUE, 'migration_019', 'migration_019', '2026-06-22T18:51:07.364430'::TIMESTAMP, '2026-06-22T18:53:45.212396'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question (id, stable_question_id, question_key, category_id, answer_type_id, option_set_id, question_text, design_intent, placeholder, source_scope, source_ref, requires_comment_on_answers, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('2e8afab2-3a05-4183-983d-937ea2caf0b9', 34, 'section_complexitySection_hasCrossBorderDataFlow', '2d66e448-d173-484a-956a-5b5a65f02340', '07b09655-2dc9-44b7-a530-98d4616cacdf', 'cc0049dd-7de3-4ae4-8cbe-a3f61e60056d', 'Does this involve cross-border data?', 'Operational and technical delivery complexity factors.', NULL, 'questionnaire_section', 'complexitySection.hasCrossBorderDataFlow', '[]', 1090, TRUE, 'migration_019', 'migration_019', '2026-06-22T18:51:07.364430'::TIMESTAMP, '2026-06-22T18:53:45.212396'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question (id, stable_question_id, question_key, category_id, answer_type_id, option_set_id, question_text, design_intent, placeholder, source_scope, source_ref, requires_comment_on_answers, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('320e48b1-031e-4629-9259-51eef8e6a6cd', 53, 'section_privacyCheckpoint3Section_crossBorderTransfer', '277c59a8-c459-4e04-88af-0e3da170e02d', '07b09655-2dc9-44b7-a530-98d4616cacdf', NULL, 'Cross-border Transfer', 'Screening for PRC personal information and cross-border transfer obligations.', NULL, 'questionnaire_section', 'privacyCheckpoint3Section.crossBorderTransfer', '[]', 1280, TRUE, 'migration_019', 'migration_019', '2026-06-22T18:51:07.364430'::TIMESTAMP, '2026-06-22T18:53:45.212396'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question (id, stable_question_id, question_key, category_id, answer_type_id, option_set_id, question_text, design_intent, placeholder, source_scope, source_ref, requires_comment_on_answers, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('362e9819-bfbe-4a4c-a102-ebe6e75f10a3', 14, NULL, 'a4fb85f4-5b89-42e1-bc8b-77a6866c4ce4', '07b09655-2dc9-44b7-a530-98d4616cacdf', 'cc0049dd-7de3-4ae4-8cbe-a3f61e60056d', 'Will this project use technical platforms or middleware outside the approved list?', NULL, NULL, 'question_bank', NULL, '[]', 140, TRUE, 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:53:45.117734'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question (id, stable_question_id, question_key, category_id, answer_type_id, option_set_id, question_text, design_intent, placeholder, source_scope, source_ref, requires_comment_on_answers, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('3656cee1-8bfa-46e4-89ec-932b1a9148bb', 63, 'matrix_solutionComplexitySection_deliveryTimelines', '01afa7e7-b135-467f-907d-8195ec405eec', '07b09655-2dc9-44b7-a530-98d4616cacdf', 'e43e7a03-c92e-4962-9f8d-3504ce2a4fd8', 'D. Solution Delivery Timelines', 'Project duration between 2 and 6 months (3).', NULL, 'assessment_matrix', 'solutionComplexitySection.deliveryTimelines', '[]', 2090, TRUE, 'migration_019', 'migration_020', '2026-06-22T18:51:07.364430'::TIMESTAMP, '2026-06-22T18:53:45.224499'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question (id, stable_question_id, question_key, category_id, answer_type_id, option_set_id, question_text, design_intent, placeholder, source_scope, source_ref, requires_comment_on_answers, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('3caa4539-0192-4507-ad9e-67154ea9d633', 1, NULL, '68aa3306-71d7-410f-a978-62480f5f4e49', '07b09655-2dc9-44b7-a530-98d4616cacdf', 'cc0049dd-7de3-4ae4-8cbe-a3f61e60056d', 'Will this project introduce a new business model or business process?', 'Identify whether business architecture viewpoints need activation.', NULL, 'question_bank', NULL, '[]', 10, TRUE, 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:53:45.117734'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question (id, stable_question_id, question_key, category_id, answer_type_id, option_set_id, question_text, design_intent, placeholder, source_scope, source_ref, requires_comment_on_answers, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('49efaff1-0bfc-4d5a-afb3-060fedfaa28a', 23, NULL, 'a4fb85f4-5b89-42e1-bc8b-77a6866c4ce4', '07b09655-2dc9-44b7-a530-98d4616cacdf', 'cc0049dd-7de3-4ae4-8cbe-a3f61e60056d', 'Will this project build or change a mini program?', NULL, NULL, 'question_bank', NULL, '[]', 230, TRUE, 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:53:45.117734'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question (id, stable_question_id, question_key, category_id, answer_type_id, option_set_id, question_text, design_intent, placeholder, source_scope, source_ref, requires_comment_on_answers, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('59a57cf4-c4e8-4f3a-b88c-c3ceb573bde1', 39, 'section_privacyCheckpoint1Section_transferToThirdParty', '277c59a8-c459-4e04-88af-0e3da170e02d', '07b09655-2dc9-44b7-a530-98d4616cacdf', 'cc0049dd-7de3-4ae4-8cbe-a3f61e60056d', 'Transfer data to third-party entities', 'Third-party entity data handling and transfer screening.', NULL, 'questionnaire_section', 'privacyCheckpoint1Section.transferToThirdParty', '[]', 1140, TRUE, 'migration_019', 'migration_019', '2026-06-22T18:51:07.364430'::TIMESTAMP, '2026-06-22T18:53:45.212396'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question (id, stable_question_id, question_key, category_id, answer_type_id, option_set_id, question_text, design_intent, placeholder, source_scope, source_ref, requires_comment_on_answers, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('5e8f103b-308b-4f7b-bfc0-bcc783a6c373', 69, 'matrix_resourceSizeSection_fundingRequired', 'd80f6760-90fc-4cd4-9abf-2c878634a80e', '07b09655-2dc9-44b7-a530-98d4616cacdf', '0ffb49c8-3be4-4d9c-aecb-b02705737549', 'B. Funding Required', 'Funding < $150K (1).', NULL, 'assessment_matrix', 'resourceSizeSection.fundingRequired', '[]', 2150, TRUE, 'migration_019', 'migration_020', '2026-06-22T18:51:07.364430'::TIMESTAMP, '2026-06-22T18:53:45.224499'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question (id, stable_question_id, question_key, category_id, answer_type_id, option_set_id, question_text, design_intent, placeholder, source_scope, source_ref, requires_comment_on_answers, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('6b6069f1-20e1-4406-86ef-1c3424b3d27a', 24, NULL, '70ecd1d7-f79e-473c-86a0-c35482e4485f', '07b09655-2dc9-44b7-a530-98d4616cacdf', 'cc0049dd-7de3-4ae4-8cbe-a3f61e60056d', 'Will this project build or change a mobile app?', NULL, NULL, 'question_bank', NULL, '[]', 240, TRUE, 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:53:45.117734'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question (id, stable_question_id, question_key, category_id, answer_type_id, option_set_id, question_text, design_intent, placeholder, source_scope, source_ref, requires_comment_on_answers, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('6c7bfe77-8d16-478f-8bff-eb9de2b9f230', 64, 'matrix_solutionComplexitySection_solutionDependencies', '01afa7e7-b135-467f-907d-8195ec405eec', '07b09655-2dc9-44b7-a530-98d4616cacdf', '836b32c7-b320-4ff1-84b2-214d08b172b3', 'E. Solution Dependencies', 'Solution is not dependent on any other projects or 3rd party (1).', NULL, 'assessment_matrix', 'solutionComplexitySection.solutionDependencies', '[]', 2100, TRUE, 'migration_019', 'migration_020', '2026-06-22T18:51:07.364430'::TIMESTAMP, '2026-06-22T18:53:45.224499'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question (id, stable_question_id, question_key, category_id, answer_type_id, option_set_id, question_text, design_intent, placeholder, source_scope, source_ref, requires_comment_on_answers, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('700b260e-61fd-46c6-aacd-0d0c43a8b0ce', 9, NULL, '2deaf355-93d9-458f-8dff-6fcca3d516a8', '07b09655-2dc9-44b7-a530-98d4616cacdf', 'cc0049dd-7de3-4ae4-8cbe-a3f61e60056d', 'Will this project start storing PII or change the scope of PII stored by the application?', NULL, NULL, 'question_bank', NULL, '[]', 90, TRUE, 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:53:45.117734'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question (id, stable_question_id, question_key, category_id, answer_type_id, option_set_id, question_text, design_intent, placeholder, source_scope, source_ref, requires_comment_on_answers, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('7b65890a-8131-4083-b026-59a68049529d', 61, 'matrix_solutionComplexitySection_solutionTechnology', '01afa7e7-b135-467f-907d-8195ec405eec', '07b09655-2dc9-44b7-a530-98d4616cacdf', '76fe51e5-17d8-4a28-aef5-be0508237aff', 'B. Solution Technology', 'Solution uses existing technologies within organizational portfolio (1).', NULL, 'assessment_matrix', 'solutionComplexitySection.solutionTechnology', '[]', 2070, TRUE, 'migration_019', 'migration_020', '2026-06-22T18:51:07.364430'::TIMESTAMP, '2026-06-22T18:53:45.224499'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question (id, stable_question_id, question_key, category_id, answer_type_id, option_set_id, question_text, design_intent, placeholder, source_scope, source_ref, requires_comment_on_answers, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('7b69daa8-a783-4bb7-a901-470164bebec3', 26, 'section_projectScaleSection_applicationsInScope', '2e3e7c16-7e0f-4547-a1f0-acced52dacd5', '6f64a869-cb82-418c-986c-96c12249af27', 'ab88196f-aa93-4a12-a2af-12e56ce61ef3', 'How many applications are in scope?', 'Project scope and external interaction size.', NULL, 'questionnaire_section', 'projectScaleSection.applicationsInScope', '[]', 1010, TRUE, 'migration_019', 'migration_019', '2026-06-22T18:51:07.364430'::TIMESTAMP, '2026-06-22T18:53:45.212396'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question (id, stable_question_id, question_key, category_id, answer_type_id, option_set_id, question_text, design_intent, placeholder, source_scope, source_ref, requires_comment_on_answers, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('84816c53-26b4-40ff-8ffd-9d5d469443e4', 28, 'section_projectScaleSection_externalSystemsCount', '2e3e7c16-7e0f-4547-a1f0-acced52dacd5', '6f64a869-cb82-418c-986c-96c12249af27', '65730701-b5f9-46e4-a839-18489c0a16d9', 'How many external systems are involved?', 'Project scope and external interaction size.', NULL, 'questionnaire_section', 'projectScaleSection.externalSystemsCount', '[]', 1030, TRUE, 'migration_019', 'migration_019', '2026-06-22T18:51:07.364430'::TIMESTAMP, '2026-06-22T18:53:45.212396'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question (id, stable_question_id, question_key, category_id, answer_type_id, option_set_id, question_text, design_intent, placeholder, source_scope, source_ref, requires_comment_on_answers, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('894652b0-82ca-4649-849d-6d7466123230', 47, 'section_privacyCheckpoint3Section_required', '277c59a8-c459-4e04-88af-0e3da170e02d', '07b09655-2dc9-44b7-a530-98d4616cacdf', 'cc0049dd-7de3-4ae4-8cbe-a3f61e60056d', 'Does Checkpoint 3 apply?', 'Screening for PRC personal information and cross-border transfer obligations.', NULL, 'questionnaire_section', 'privacyCheckpoint3Section.required', '[]', 1220, TRUE, 'migration_019', 'migration_019', '2026-06-22T18:51:07.364430'::TIMESTAMP, '2026-06-22T18:53:45.212396'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question (id, stable_question_id, question_key, category_id, answer_type_id, option_set_id, question_text, design_intent, placeholder, source_scope, source_ref, requires_comment_on_answers, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('8a7b2a38-8942-4d75-b31b-f79e03f6d113', 8, NULL, '70ecd1d7-f79e-473c-86a0-c35482e4485f', '07b09655-2dc9-44b7-a530-98d4616cacdf', 'cc0049dd-7de3-4ae4-8cbe-a3f61e60056d', 'Will this project enable external access for the application for the first time?', NULL, NULL, 'question_bank', NULL, '[]', 80, TRUE, 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:53:45.117734'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question (id, stable_question_id, question_key, category_id, answer_type_id, option_set_id, question_text, design_intent, placeholder, source_scope, source_ref, requires_comment_on_answers, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('8afc058c-f2bb-4b1e-b36e-d9a0dbf4ffb0', 17, NULL, 'a4fb85f4-5b89-42e1-bc8b-77a6866c4ce4', '07b09655-2dc9-44b7-a530-98d4616cacdf', 'cc0049dd-7de3-4ae4-8cbe-a3f61e60056d', 'Will this project use communication protocols other than HTTP(S), Kafka, or JDBC?', NULL, NULL, 'question_bank', NULL, '[]', 170, TRUE, 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:53:45.117734'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question (id, stable_question_id, question_key, category_id, answer_type_id, option_set_id, question_text, design_intent, placeholder, source_scope, source_ref, requires_comment_on_answers, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('8d3718a4-ab76-4793-8cef-738680126ad2', 55, 'matrix_requirementComplexitySection_requirementUnderstanding', '6476a4b9-9155-41e0-8ab4-9454d8f60ce6', '07b09655-2dc9-44b7-a530-98d4616cacdf', '769fdafc-c62e-4b39-a83b-35dcbb29e862', 'A. Complexity of Requirement', 'Requirement is understood, some clarification required (3).', NULL, 'assessment_matrix', 'requirementComplexitySection.requirementUnderstanding', '[]', 2010, TRUE, 'migration_019', 'migration_020', '2026-06-22T18:51:07.364430'::TIMESTAMP, '2026-06-22T18:53:45.224499'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question (id, stable_question_id, question_key, category_id, answer_type_id, option_set_id, question_text, design_intent, placeholder, source_scope, source_ref, requires_comment_on_answers, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('8d794c04-c17a-44bf-9b7f-5f5bbffe1e10', 30, 'section_changeScopeSection_newApplicationsCount', '56568c6b-22ce-4595-bfc9-5588aaf8a039', '6f64a869-cb82-418c-986c-96c12249af27', 'a1dc2c5e-a690-4340-ad5a-3a7ae53510ed', 'How many new applications?', 'Project delivery scope across new and modified applications.', NULL, 'questionnaire_section', 'changeScopeSection.newApplicationsCount', '[]', 1050, TRUE, 'migration_019', 'migration_019', '2026-06-22T18:51:07.364430'::TIMESTAMP, '2026-06-22T18:53:45.212396'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question (id, stable_question_id, question_key, category_id, answer_type_id, option_set_id, question_text, design_intent, placeholder, source_scope, source_ref, requires_comment_on_answers, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('9004697e-ece3-4c75-980b-2ff2dd331c52', 11, NULL, '2deaf355-93d9-458f-8dff-6fcca3d516a8', '07b09655-2dc9-44b7-a530-98d4616cacdf', 'cc0049dd-7de3-4ae4-8cbe-a3f61e60056d', 'Will this project start exchanging new data entities between already integrated systems?', NULL, NULL, 'question_bank', NULL, '[]', 110, TRUE, 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:53:45.117734'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question (id, stable_question_id, question_key, category_id, answer_type_id, option_set_id, question_text, design_intent, placeholder, source_scope, source_ref, requires_comment_on_answers, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('92af3d9e-01ca-41df-ad7d-4a0a0f29264c', 15, NULL, 'a4fb85f4-5b89-42e1-bc8b-77a6866c4ce4', '07b09655-2dc9-44b7-a530-98d4616cacdf', 'cc0049dd-7de3-4ae4-8cbe-a3f61e60056d', 'Will this project use technical tools outside the approved list?', NULL, NULL, 'question_bank', NULL, '[]', 150, TRUE, 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:53:45.117734'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question (id, stable_question_id, question_key, category_id, answer_type_id, option_set_id, question_text, design_intent, placeholder, source_scope, source_ref, requires_comment_on_answers, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('9628ee72-05b0-4354-93f8-e0e3b96827f0', 51, 'section_privacyCheckpoint3Section_ciio', '277c59a8-c459-4e04-88af-0e3da170e02d', '07b09655-2dc9-44b7-a530-98d4616cacdf', NULL, 'CIIO', 'Screening for PRC personal information and cross-border transfer obligations.', NULL, 'questionnaire_section', 'privacyCheckpoint3Section.ciio', '[]', 1260, TRUE, 'migration_019', 'migration_019', '2026-06-22T18:51:07.364430'::TIMESTAMP, '2026-06-22T18:53:45.212396'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question (id, stable_question_id, question_key, category_id, answer_type_id, option_set_id, question_text, design_intent, placeholder, source_scope, source_ref, requires_comment_on_answers, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('963ba85e-160d-4abc-a625-41951f6e5870', 43, 'section_privacyCheckpoint2Section_companyRecords', '277c59a8-c459-4e04-88af-0e3da170e02d', '6f64a869-cb82-418c-986c-96c12249af27', NULL, 'Company Records', 'Screening for personal data, company records, and regulated data outside PRC scope.', NULL, 'questionnaire_section', 'privacyCheckpoint2Section.companyRecords', '[]', 1180, TRUE, 'migration_019', 'migration_019', '2026-06-22T18:51:07.364430'::TIMESTAMP, '2026-06-22T18:53:45.212396'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question (id, stable_question_id, question_key, category_id, answer_type_id, option_set_id, question_text, design_intent, placeholder, source_scope, source_ref, requires_comment_on_answers, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('98024b59-c709-4270-8234-291633f197e5', 58, 'matrix_requirementComplexitySection_strategicPriority', '6476a4b9-9155-41e0-8ab4-9454d8f60ce6', '07b09655-2dc9-44b7-a530-98d4616cacdf', 'eb84f8fd-3b4e-48fd-843d-0738e13dd9f8', 'D. Strategic Priority', 'Project is not a strategic priority (1).', NULL, 'assessment_matrix', 'requirementComplexitySection.strategicPriority', '[]', 2040, TRUE, 'migration_019', 'migration_020', '2026-06-22T18:51:07.364430'::TIMESTAMP, '2026-06-22T18:53:45.224499'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question (id, stable_question_id, question_key, category_id, answer_type_id, option_set_id, question_text, design_intent, placeholder, source_scope, source_ref, requires_comment_on_answers, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('989c3e69-f5fc-46af-90b9-c13bd8e6822a', 67, 'matrix_solutionComplexitySection_securityImpact', '01afa7e7-b135-467f-907d-8195ec405eec', '07b09655-2dc9-44b7-a530-98d4616cacdf', '16f7d720-02b3-4629-9753-e5f68312c53b', 'H. Security Impact', 'No (1).', NULL, 'assessment_matrix', 'solutionComplexitySection.securityImpact', '[]', 2130, TRUE, 'migration_019', 'migration_020', '2026-06-22T18:51:07.364430'::TIMESTAMP, '2026-06-22T18:53:45.224499'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question (id, stable_question_id, question_key, category_id, answer_type_id, option_set_id, question_text, design_intent, placeholder, source_scope, source_ref, requires_comment_on_answers, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('9ba6c6ab-da87-4394-a7c9-bc7ba13ab1cd', 32, 'section_complexitySection_dataCenterCount', '2d66e448-d173-484a-956a-5b5a65f02340', '6f64a869-cb82-418c-986c-96c12249af27', '6bdd3c42-0fe5-4b9f-9997-5d03df5ae5d6', 'How many data centers are involved?', 'Operational and technical delivery complexity factors.', NULL, 'questionnaire_section', 'complexitySection.dataCenterCount', '[]', 1070, TRUE, 'migration_019', 'migration_019', '2026-06-22T18:51:07.364430'::TIMESTAMP, '2026-06-22T18:53:45.212396'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question (id, stable_question_id, question_key, category_id, answer_type_id, option_set_id, question_text, design_intent, placeholder, source_scope, source_ref, requires_comment_on_answers, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('a271f3a8-b3bb-413a-8b03-cfaf0f424197', 10, NULL, '2deaf355-93d9-458f-8dff-6fcca3d516a8', '07b09655-2dc9-44b7-a530-98d4616cacdf', 'cc0049dd-7de3-4ae4-8cbe-a3f61e60056d', 'Will this project integrate with another internal or external IT system for the first time?', NULL, NULL, 'question_bank', NULL, '[]', 100, TRUE, 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:53:45.117734'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question (id, stable_question_id, question_key, category_id, answer_type_id, option_set_id, question_text, design_intent, placeholder, source_scope, source_ref, requires_comment_on_answers, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('a2db67bc-d604-4af6-853c-00067479a383', 20, NULL, '277c59a8-c459-4e04-88af-0e3da170e02d', '07b09655-2dc9-44b7-a530-98d4616cacdf', 'cc0049dd-7de3-4ae4-8cbe-a3f61e60056d', 'Will this project use an authorization method other than UCA?', NULL, NULL, 'question_bank', NULL, '[]', 200, TRUE, 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:53:45.117734'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question (id, stable_question_id, question_key, category_id, answer_type_id, option_set_id, question_text, design_intent, placeholder, source_scope, source_ref, requires_comment_on_answers, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('a3ab0846-762f-48b5-87a6-9acdbeca039e', 52, 'section_privacyCheckpoint3Section_importantData', '277c59a8-c459-4e04-88af-0e3da170e02d', '07b09655-2dc9-44b7-a530-98d4616cacdf', NULL, 'Important Data', 'Screening for PRC personal information and cross-border transfer obligations.', NULL, 'questionnaire_section', 'privacyCheckpoint3Section.importantData', '[]', 1270, TRUE, 'migration_019', 'migration_019', '2026-06-22T18:51:07.364430'::TIMESTAMP, '2026-06-22T18:53:45.212396'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question (id, stable_question_id, question_key, category_id, answer_type_id, option_set_id, question_text, design_intent, placeholder, source_scope, source_ref, requires_comment_on_answers, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('a64b8e75-e77f-4f4f-a558-a731886248d3', 4, NULL, '70ecd1d7-f79e-473c-86a0-c35482e4485f', '07b09655-2dc9-44b7-a530-98d4616cacdf', 'cc0049dd-7de3-4ae4-8cbe-a3f61e60056d', 'Will this project sunset an existing application?', NULL, NULL, 'question_bank', NULL, '[]', 40, TRUE, 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:53:45.117734'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question (id, stable_question_id, question_key, category_id, answer_type_id, option_set_id, question_text, design_intent, placeholder, source_scope, source_ref, requires_comment_on_answers, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('a72a0686-5c0f-4870-8886-ff9f92c56216', 65, 'matrix_solutionComplexitySection_platformDomainDependency', '01afa7e7-b135-467f-907d-8195ec405eec', '07b09655-2dc9-44b7-a530-98d4616cacdf', '4bb393e4-c2f6-4ea3-aee9-67b3d6bb4404', 'F. Platform / Domain Dependency', 'Less than or equal to 2 dependencies (1).', NULL, 'assessment_matrix', 'solutionComplexitySection.platformDomainDependency', '[]', 2110, TRUE, 'migration_019', 'migration_020', '2026-06-22T18:51:07.364430'::TIMESTAMP, '2026-06-22T18:53:45.224499'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question (id, stable_question_id, question_key, category_id, answer_type_id, option_set_id, question_text, design_intent, placeholder, source_scope, source_ref, requires_comment_on_answers, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('ac1e0f11-c3d8-444c-9d47-1324ea31e57a', 62, 'matrix_solutionComplexitySection_impactFunctionArea', '01afa7e7-b135-467f-907d-8195ec405eec', '07b09655-2dc9-44b7-a530-98d4616cacdf', 'b1a46855-46ae-4dc2-b397-9c82ae163c10', 'C. Impact Function Area', 'Non-strategic platform change (1).', NULL, 'assessment_matrix', 'solutionComplexitySection.impactFunctionArea', '[]', 2080, TRUE, 'migration_019', 'migration_020', '2026-06-22T18:51:07.364430'::TIMESTAMP, '2026-06-22T18:53:45.224499'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question (id, stable_question_id, question_key, category_id, answer_type_id, option_set_id, question_text, design_intent, placeholder, source_scope, source_ref, requires_comment_on_answers, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('aea44852-ae3a-436b-8942-1c8605d19de3', 27, 'section_projectScaleSection_hasExternalSystems', '2e3e7c16-7e0f-4547-a1f0-acced52dacd5', '07b09655-2dc9-44b7-a530-98d4616cacdf', 'cc0049dd-7de3-4ae4-8cbe-a3f61e60056d', 'Does it involve external systems?', 'Project scope and external interaction size.', NULL, 'questionnaire_section', 'projectScaleSection.hasExternalSystems', '[]', 1020, TRUE, 'migration_019', 'migration_019', '2026-06-22T18:51:07.364430'::TIMESTAMP, '2026-06-22T18:53:45.212396'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question (id, stable_question_id, question_key, category_id, answer_type_id, option_set_id, question_text, design_intent, placeholder, source_scope, source_ref, requires_comment_on_answers, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('b170bbc8-308b-41c8-92d2-1d1624f71a63', 33, 'section_complexitySection_cloudRegionScope', '2d66e448-d173-484a-956a-5b5a65f02340', '6f64a869-cb82-418c-986c-96c12249af27', '4760e555-82e6-4b2c-8602-6af58fc08e0a', 'How many clouds/regions are involved?', 'Operational and technical delivery complexity factors.', NULL, 'questionnaire_section', 'complexitySection.cloudRegionScope', '[]', 1080, TRUE, 'migration_019', 'migration_019', '2026-06-22T18:51:07.364430'::TIMESTAMP, '2026-06-22T18:53:45.212396'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question (id, stable_question_id, question_key, category_id, answer_type_id, option_set_id, question_text, design_intent, placeholder, source_scope, source_ref, requires_comment_on_answers, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('b33b2b45-53f8-41a6-aace-b8c259a8de9a', 12, NULL, 'a4fb85f4-5b89-42e1-bc8b-77a6866c4ce4', '07b09655-2dc9-44b7-a530-98d4616cacdf', 'cc0049dd-7de3-4ae4-8cbe-a3f61e60056d', 'Will this project use development languages outside the approved list?', NULL, NULL, 'question_bank', NULL, '[]', 120, TRUE, 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:53:45.117734'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question (id, stable_question_id, question_key, category_id, answer_type_id, option_set_id, question_text, design_intent, placeholder, source_scope, source_ref, requires_comment_on_answers, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('b5bd3105-e695-4b7e-96b2-8973efc51c7d', 13, NULL, 'a4fb85f4-5b89-42e1-bc8b-77a6866c4ce4', '07b09655-2dc9-44b7-a530-98d4616cacdf', 'cc0049dd-7de3-4ae4-8cbe-a3f61e60056d', 'Will this project use frameworks or core libraries outside the approved list?', NULL, NULL, 'question_bank', NULL, '[]', 130, TRUE, 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:53:45.117734'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question (id, stable_question_id, question_key, category_id, answer_type_id, option_set_id, question_text, design_intent, placeholder, source_scope, source_ref, requires_comment_on_answers, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('b7fc4022-485d-450d-8076-673b288b55d0', 35, 'section_complexitySection_techStackKindsCount', '2d66e448-d173-484a-956a-5b5a65f02340', '6f64a869-cb82-418c-986c-96c12249af27', 'e7e0cd4d-b8a6-4097-b49e-cc72633a3178', 'How many technology stacks are involved?', 'Operational and technical delivery complexity factors.', NULL, 'questionnaire_section', 'complexitySection.techStackKindsCount', '[]', 1100, TRUE, 'migration_019', 'migration_019', '2026-06-22T18:51:07.364430'::TIMESTAMP, '2026-06-22T18:53:45.212396'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question (id, stable_question_id, question_key, category_id, answer_type_id, option_set_id, question_text, design_intent, placeholder, source_scope, source_ref, requires_comment_on_answers, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('b955f664-ddba-441a-8f97-e666e245b277', 49, 'section_privacyCheckpoint3Section_personalDataVolume', '277c59a8-c459-4e04-88af-0e3da170e02d', '6f64a869-cb82-418c-986c-96c12249af27', NULL, 'Processed personal data count', 'Screening for PRC personal information and cross-border transfer obligations.', NULL, 'questionnaire_section', 'privacyCheckpoint3Section.personalDataVolume', '[]', 1240, TRUE, 'migration_019', 'migration_019', '2026-06-22T18:51:07.364430'::TIMESTAMP, '2026-06-22T18:53:45.212396'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question (id, stable_question_id, question_key, category_id, answer_type_id, option_set_id, question_text, design_intent, placeholder, source_scope, source_ref, requires_comment_on_answers, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('ba19c553-635b-472d-ada2-c14c835a502d', 59, 'matrix_requirementComplexitySection_crossBuGeo', '6476a4b9-9155-41e0-8ab4-9454d8f60ce6', '07b09655-2dc9-44b7-a530-98d4616cacdf', '582363bb-e821-418f-8e0c-4dcc491e1de4', 'E. Cross BU / GEO', 'Single BU plus single GEO involved (1).', NULL, 'assessment_matrix', 'requirementComplexitySection.crossBuGeo', '[]', 2050, TRUE, 'migration_019', 'migration_020', '2026-06-22T18:51:07.364430'::TIMESTAMP, '2026-06-22T18:53:45.224499'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question (id, stable_question_id, question_key, category_id, answer_type_id, option_set_id, question_text, design_intent, placeholder, source_scope, source_ref, requires_comment_on_answers, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('bb27334e-9bd2-4702-8079-edf505230b1c', 56, 'matrix_requirementComplexitySection_businessProcessChange', '6476a4b9-9155-41e0-8ab4-9454d8f60ce6', '07b09655-2dc9-44b7-a530-98d4616cacdf', '0bc73ce7-11c7-4f0a-8d3c-9c0f84b278eb', 'B. Business Process Change & Organization Change', 'Process change and OCM is simple, clear (1).', NULL, 'assessment_matrix', 'requirementComplexitySection.businessProcessChange', '[]', 2020, TRUE, 'migration_019', 'migration_020', '2026-06-22T18:51:07.364430'::TIMESTAMP, '2026-06-22T18:53:45.224499'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question (id, stable_question_id, question_key, category_id, answer_type_id, option_set_id, question_text, design_intent, placeholder, source_scope, source_ref, requires_comment_on_answers, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('c44660eb-74f6-4214-8079-f7511fd176f9', 7, NULL, '70ecd1d7-f79e-473c-86a0-c35482e4485f', '07b09655-2dc9-44b7-a530-98d4616cacdf', 'cc0049dd-7de3-4ae4-8cbe-a3f61e60056d', 'Will this project onboard a new user group with significantly different roles or permissions?', NULL, NULL, 'question_bank', NULL, '[]', 70, TRUE, 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:53:45.117734'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question (id, stable_question_id, question_key, category_id, answer_type_id, option_set_id, question_text, design_intent, placeholder, source_scope, source_ref, requires_comment_on_answers, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('c5789d85-6c23-40a0-a901-f0955a3da330', 6, NULL, '70ecd1d7-f79e-473c-86a0-c35482e4485f', '07b09655-2dc9-44b7-a530-98d4616cacdf', 'cc0049dd-7de3-4ae4-8cbe-a3f61e60056d', 'Will this project purchase new licenses or capacity for existing SaaS software?', NULL, NULL, 'question_bank', NULL, '[]', 60, TRUE, 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:53:45.117734'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question (id, stable_question_id, question_key, category_id, answer_type_id, option_set_id, question_text, design_intent, placeholder, source_scope, source_ref, requires_comment_on_answers, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('c6e04053-091b-4a54-b4e4-377bbf1b7cd0', 2, NULL, '70ecd1d7-f79e-473c-86a0-c35482e4485f', '07b09655-2dc9-44b7-a530-98d4616cacdf', 'cc0049dd-7de3-4ae4-8cbe-a3f61e60056d', 'Will this project build a new custom application?', 'Trigger core application design and domain boundary concerns.', NULL, 'question_bank', NULL, '[]', 20, TRUE, 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:53:45.117734'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question (id, stable_question_id, question_key, category_id, answer_type_id, option_set_id, question_text, design_intent, placeholder, source_scope, source_ref, requires_comment_on_answers, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('c73a5ee6-aaba-47a3-9a75-38ac5ff05c48', 37, 'section_privacyCheckpoint1Section_subsidiaries', '277c59a8-c459-4e04-88af-0e3da170e02d', '3265b21e-6a86-4cbc-a779-e740e9b6f63d', NULL, 'Subsidiary / JV / holding data', 'Third-party entity data handling and transfer screening.', NULL, 'questionnaire_section', 'privacyCheckpoint1Section.subsidiaries', '[]', 1120, TRUE, 'migration_019', 'migration_019', '2026-06-22T18:51:07.364430'::TIMESTAMP, '2026-06-22T18:53:45.212396'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question (id, stable_question_id, question_key, category_id, answer_type_id, option_set_id, question_text, design_intent, placeholder, source_scope, source_ref, requires_comment_on_answers, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('c8ddd29b-baf0-4be6-aa62-e1ff9ab23ce7', 54, 'section_privacyCheckpoint3Section_comments', '277c59a8-c459-4e04-88af-0e3da170e02d', '6984971f-1760-4c9b-980c-2c5b061c5488', NULL, 'Checkpoint 3 comments', 'Screening for PRC personal information and cross-border transfer obligations.', NULL, 'questionnaire_section', 'privacyCheckpoint3Section.comments', '[]', 1290, TRUE, 'migration_019', 'migration_019', '2026-06-22T18:51:07.364430'::TIMESTAMP, '2026-06-22T18:53:45.212396'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question (id, stable_question_id, question_key, category_id, answer_type_id, option_set_id, question_text, design_intent, placeholder, source_scope, source_ref, requires_comment_on_answers, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('cbc4531c-5a4b-49fc-9f52-9e26853b11b8', 19, NULL, 'a4fb85f4-5b89-42e1-bc8b-77a6866c4ce4', '07b09655-2dc9-44b7-a530-98d4616cacdf', 'cc0049dd-7de3-4ae4-8cbe-a3f61e60056d', 'Will this project use a user-level authentication method other than SSO Provider or Enterprise IDP?', NULL, NULL, 'question_bank', NULL, '[]', 190, TRUE, 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:53:45.117734'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question (id, stable_question_id, question_key, category_id, answer_type_id, option_set_id, question_text, design_intent, placeholder, source_scope, source_ref, requires_comment_on_answers, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('d6293d19-48ec-47f5-bbb9-3d3d30530fe9', 68, 'matrix_resourceSizeSection_resourceCount', 'd80f6760-90fc-4cd4-9abf-2c878634a80e', '07b09655-2dc9-44b7-a530-98d4616cacdf', '650698ec-7399-42eb-8dd2-63dd4f6b59e1', 'A. Number of Resource', 'Low resources required, man day < 500 days (1).', NULL, 'assessment_matrix', 'resourceSizeSection.resourceCount', '[]', 2140, TRUE, 'migration_019', 'migration_020', '2026-06-22T18:51:07.364430'::TIMESTAMP, '2026-06-22T18:53:45.224499'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question (id, stable_question_id, question_key, category_id, answer_type_id, option_set_id, question_text, design_intent, placeholder, source_scope, source_ref, requires_comment_on_answers, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('d7aeb818-e7d5-44b6-bf18-2b029ddd1c8b', 44, 'section_privacyCheckpoint2Section_governmentSecurityData', '277c59a8-c459-4e04-88af-0e3da170e02d', '07b09655-2dc9-44b7-a530-98d4616cacdf', 'cc0049dd-7de3-4ae4-8cbe-a3f61e60056d', 'Government & Security Data', 'Screening for personal data, company records, and regulated data outside PRC scope.', NULL, 'questionnaire_section', 'privacyCheckpoint2Section.governmentSecurityData', '[]', 1190, TRUE, 'migration_019', 'migration_019', '2026-06-22T18:51:07.364430'::TIMESTAMP, '2026-06-22T18:53:45.212396'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question (id, stable_question_id, question_key, category_id, answer_type_id, option_set_id, question_text, design_intent, placeholder, source_scope, source_ref, requires_comment_on_answers, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('d7f72660-ce83-4c12-97c3-c95472fb797e', 57, 'matrix_requirementComplexitySection_businessTeamCommitment', '6476a4b9-9155-41e0-8ab4-9454d8f60ce6', '07b09655-2dc9-44b7-a530-98d4616cacdf', '79f32ff9-d7d2-4308-819e-67c74d3b9476', 'C. Business Team', 'Business team is known and fully committed to project (1).', NULL, 'assessment_matrix', 'requirementComplexitySection.businessTeamCommitment', '[]', 2030, TRUE, 'migration_019', 'migration_020', '2026-06-22T18:51:07.364430'::TIMESTAMP, '2026-06-22T18:53:45.224499'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question (id, stable_question_id, question_key, category_id, answer_type_id, option_set_id, question_text, design_intent, placeholder, source_scope, source_ref, requires_comment_on_answers, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('e1b8822b-d552-442a-a71f-223544c6df09', 18, NULL, 'a4fb85f4-5b89-42e1-bc8b-77a6866c4ce4', '07b09655-2dc9-44b7-a530-98d4616cacdf', 'cc0049dd-7de3-4ae4-8cbe-a3f61e60056d', 'Will this project use an application-level authentication method other than OAuth2?', NULL, NULL, 'question_bank', NULL, '[]', 180, TRUE, 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:53:45.117734'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question (id, stable_question_id, question_key, category_id, answer_type_id, option_set_id, question_text, design_intent, placeholder, source_scope, source_ref, requires_comment_on_answers, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('e2e4390e-ef54-4ccc-9486-d78108be4670', 41, 'section_privacyCheckpoint2Section_required', '277c59a8-c459-4e04-88af-0e3da170e02d', '07b09655-2dc9-44b7-a530-98d4616cacdf', 'cc0049dd-7de3-4ae4-8cbe-a3f61e60056d', 'Does Checkpoint 2 apply?', 'Screening for personal data, company records, and regulated data outside PRC scope.', NULL, 'questionnaire_section', 'privacyCheckpoint2Section.required', '[]', 1160, TRUE, 'migration_019', 'migration_019', '2026-06-22T18:51:07.364430'::TIMESTAMP, '2026-06-22T18:53:45.212396'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question (id, stable_question_id, question_key, category_id, answer_type_id, option_set_id, question_text, design_intent, placeholder, source_scope, source_ref, requires_comment_on_answers, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('e50e4207-f27f-412a-914a-a0448a7ef7b6', 45, 'section_privacyCheckpoint2Section_criticalInfrastructureData', '277c59a8-c459-4e04-88af-0e3da170e02d', '07b09655-2dc9-44b7-a530-98d4616cacdf', 'cc0049dd-7de3-4ae4-8cbe-a3f61e60056d', 'Critical Infrastructure Data', 'Screening for personal data, company records, and regulated data outside PRC scope.', NULL, 'questionnaire_section', 'privacyCheckpoint2Section.criticalInfrastructureData', '[]', 1200, TRUE, 'migration_019', 'migration_019', '2026-06-22T18:51:07.364430'::TIMESTAMP, '2026-06-22T18:53:45.212396'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question (id, stable_question_id, question_key, category_id, answer_type_id, option_set_id, question_text, design_intent, placeholder, source_scope, source_ref, requires_comment_on_answers, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('eedd3a88-ca35-4ed7-9b4e-2ca668b79e9c', 5, NULL, '70ecd1d7-f79e-473c-86a0-c35482e4485f', '07b09655-2dc9-44b7-a530-98d4616cacdf', 'cc0049dd-7de3-4ae4-8cbe-a3f61e60056d', 'Will this project purchase SaaS software?', NULL, NULL, 'question_bank', NULL, '[]', 50, TRUE, 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:53:45.117734'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question (id, stable_question_id, question_key, category_id, answer_type_id, option_set_id, question_text, design_intent, placeholder, source_scope, source_ref, requires_comment_on_answers, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('f001514d-4951-4aa3-8403-44328ad54c61', 42, 'section_privacyCheckpoint2Section_personalDataType', '277c59a8-c459-4e04-88af-0e3da170e02d', '6f64a869-cb82-418c-986c-96c12249af27', NULL, 'Personal Data Type', 'Screening for personal data, company records, and regulated data outside PRC scope.', NULL, 'questionnaire_section', 'privacyCheckpoint2Section.personalDataType', '[]', 1170, TRUE, 'migration_019', 'migration_019', '2026-06-22T18:51:07.364430'::TIMESTAMP, '2026-06-22T18:53:45.212396'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question (id, stable_question_id, question_key, category_id, answer_type_id, option_set_id, question_text, design_intent, placeholder, source_scope, source_ref, requires_comment_on_answers, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('fc6f72f5-6b16-4160-89ed-10a390ded5c9', 21, NULL, '277c59a8-c459-4e04-88af-0e3da170e02d', '07b09655-2dc9-44b7-a530-98d4616cacdf', 'cc0049dd-7de3-4ae4-8cbe-a3f61e60056d', 'Will this project use a deployment location or environment other than Beiyan, Shenyang, or Reston?', NULL, NULL, 'question_bank', NULL, '[]', 210, TRUE, 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:53:45.117734'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question (id, stable_question_id, question_key, category_id, answer_type_id, option_set_id, question_text, design_intent, placeholder, source_scope, source_ref, requires_comment_on_answers, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('fcdf4619-69c5-4400-9d32-9bd66e9e93d3', 60, 'matrix_solutionComplexitySection_solutionOptions', '01afa7e7-b135-467f-907d-8195ec405eec', '07b09655-2dc9-44b7-a530-98d4616cacdf', '067532d5-c90b-41e9-8847-5a1e53aab13c', 'A. Solution Options', 'Have existing solution in organization that can be leveraged (3).', NULL, 'assessment_matrix', 'solutionComplexitySection.solutionOptions', '[]', 2060, TRUE, 'migration_019', 'migration_020', '2026-06-22T18:51:07.364430'::TIMESTAMP, '2026-06-22T18:53:45.224499'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question (id, stable_question_id, question_key, category_id, answer_type_id, option_set_id, question_text, design_intent, placeholder, source_scope, source_ref, requires_comment_on_answers, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('fcff24b1-d48d-4e65-a5bf-6c7222eead7a', 29, 'section_changeScopeSection_hasNewApplications', '56568c6b-22ce-4595-bfc9-5588aaf8a039', '07b09655-2dc9-44b7-a530-98d4616cacdf', 'cc0049dd-7de3-4ae4-8cbe-a3f61e60056d', 'Will there be new applications?', 'Project delivery scope across new and modified applications.', NULL, 'questionnaire_section', 'changeScopeSection.hasNewApplications', '[]', 1040, TRUE, 'migration_019', 'migration_019', '2026-06-22T18:51:07.364430'::TIMESTAMP, '2026-06-22T18:53:45.212396'::TIMESTAMP) ON CONFLICT DO NOTHING;
-- Table: eam.avdm_question_group
CREATE TABLE IF NOT EXISTS eam.avdm_question_group (
id UUID DEFAULT gen_random_uuid() PRIMARY KEY,
group_key VARCHAR NOT NULL,
group_name VARCHAR NOT NULL,
description text,
sort_order INTEGER NOT NULL DEFAULT 0,
is_active BOOLEAN NOT NULL DEFAULT true,
create_by VARCHAR NOT NULL DEFAULT 'system'::character varying,
update_by VARCHAR NOT NULL DEFAULT 'system'::character varying,
create_at TIMESTAMP NOT NULL DEFAULT now(),
update_at TIMESTAMP NOT NULL DEFAULT now()
);
-- Seed: eam.avdm_question_group (4 rows)
INSERT INTO eam.avdm_question_group (id, group_key, group_name, description, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('1a200279-762d-4de2-b4fa-3bbffe6b5ec9', 'scale_overall', 'Scale Overall', 'Project and delivery scale indicators.', 10, TRUE, 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:53:45.117734'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_group (id, group_key, group_name, description, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('9637fc17-59d0-4ad5-b7fa-733a9f327709', 'architecture_type', 'Architecture Type', 'Dominant architecture style selections.', 40, TRUE, 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:53:45.117734'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_group (id, group_key, group_name, description, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('976a9933-9c8d-4074-a3fb-cbc50019dfb6', 'change', 'Change Trigger', 'Business, application, data, technology, and governance change triggers.', 30, TRUE, 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:53:45.117734'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_group (id, group_key, group_name, description, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('a4d325e9-ee49-4c1a-b8d1-ec2aee08aa18', 'complexity_overall', 'Complexity Overall', 'Technical, data, requirement, and compliance complexity factors.', 20, TRUE, 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:53:45.117734'::TIMESTAMP) ON CONFLICT DO NOTHING;
-- Table: eam.avdm_question_category
CREATE TABLE IF NOT EXISTS eam.avdm_question_category (
id UUID DEFAULT gen_random_uuid() PRIMARY KEY,
group_id UUID NOT NULL,
category_key VARCHAR NOT NULL,
category_name VARCHAR NOT NULL,
description text,
sort_order INTEGER NOT NULL DEFAULT 0,
is_active BOOLEAN NOT NULL DEFAULT true,
create_by VARCHAR NOT NULL DEFAULT 'system'::character varying,
update_by VARCHAR NOT NULL DEFAULT 'system'::character varying,
create_at TIMESTAMP NOT NULL DEFAULT now(),
update_at TIMESTAMP NOT NULL DEFAULT now()
);
-- Seed: eam.avdm_question_category (21 rows)
INSERT INTO eam.avdm_question_category (id, group_id, category_key, category_name, description, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('01afa7e7-b135-467f-907d-8195ec405eec', 'a4d325e9-ee49-4c1a-b8d1-ec2aee08aa18', 'solution_complexity', 'Solution Complexity', 'Capture solution optioning, dependency, delivery, and architecture impact complexity.', 80, TRUE, 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:53:45.117734'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_category (id, group_id, category_key, category_name, description, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('03788329-a286-416c-8323-38b2cd07fcd2', 'a4d325e9-ee49-4c1a-b8d1-ec2aee08aa18', 'compliance_complexity', 'Compliance Complexity', 'Capture regulatory scope, control obligations, traceability, and audit complexity for the solution.', 60, TRUE, 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:53:45.117734'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_category (id, group_id, category_key, category_name, description, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('22e545be-8e52-49a4-bb28-5480f02d1269', '9637fc17-59d0-4ad5-b7fa-733a9f327709', 'security_architecture_type', 'Security Architecture Type', 'Capture the dominant security architecture style for the project.', 210, TRUE, 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:53:45.117734'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_category (id, group_id, category_key, category_name, description, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('277c59a8-c459-4e04-88af-0e3da170e02d', '976a9933-9c8d-4074-a3fb-cbc50019dfb6', 'compliance_change', 'Compliance Change', 'Activate compliance, control traceability, governance, location, and regulatory concerns.', 140, TRUE, 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:53:45.117734'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_category (id, group_id, category_key, category_name, description, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('2b884359-3be9-4407-ba11-b3206a5b5f51', '9637fc17-59d0-4ad5-b7fa-733a9f327709', 'application_architecture_type', 'Application Architecture Type', 'Capture the dominant application architecture style for the project.', 180, TRUE, 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:53:45.117734'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_category (id, group_id, category_key, category_name, description, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('2be6116a-29e0-45f6-a3dc-160511cf30a5', '976a9933-9c8d-4074-a3fb-cbc50019dfb6', 'other_change', 'Other Change', 'Capture cross-cutting or context-specific concerns not fully covered above.', 160, TRUE, 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:53:45.117734'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_category (id, group_id, category_key, category_name, description, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('2d66e448-d173-484a-956a-5b5a65f02340', 'a4d325e9-ee49-4c1a-b8d1-ec2aee08aa18', 'technical_complexity', 'Technical Complexity', 'Capture deployment, integration, runtime, and platform complexity factors.', 40, TRUE, 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:53:45.117734'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_category (id, group_id, category_key, category_name, description, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('2deaf355-93d9-458f-8dff-6fcca3d516a8', '976a9933-9c8d-4074-a3fb-cbc50019dfb6', 'data_change', 'Data Change', 'Activate data flow, lineage, sharing, privacy scope, and integration concerns.', 120, TRUE, 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:53:45.117734'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_category (id, group_id, category_key, category_name, description, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('2e3e7c16-7e0f-4547-a1f0-acced52dacd5', '1a200279-762d-4de2-b4fa-3bbffe6b5ec9', 'project_scale', 'Project Scale', 'Capture application scope, external reach, and scale indicators for the initiative.', 10, TRUE, 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:53:45.117734'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_category (id, group_id, category_key, category_name, description, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('526a338f-17b6-4348-87e3-76bc888a5736', '9637fc17-59d0-4ad5-b7fa-733a9f327709', 'technical_architecture_type', 'Technical Architecture Type', 'Capture the dominant technical architecture style for the project.', 170, TRUE, 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:53:45.117734'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_category (id, group_id, category_key, category_name, description, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('56568c6b-22ce-4595-bfc9-5588aaf8a039', '1a200279-762d-4de2-b4fa-3bbffe6b5ec9', 'change_scale', 'Change Scale', 'Capture new-build versus change-impact scope across the solution landscape.', 20, TRUE, 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:53:45.117734'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_category (id, group_id, category_key, category_name, description, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('6476a4b9-9155-41e0-8ab4-9454d8f60ce6', 'a4d325e9-ee49-4c1a-b8d1-ec2aee08aa18', 'requirement_complexity', 'Requirement Complexity', 'Capture business requirement ambiguity, organizational change, and strategic complexity.', 70, TRUE, 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:53:45.117734'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_category (id, group_id, category_key, category_name, description, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('68aa3306-71d7-410f-a978-62480f5f4e49', '976a9933-9c8d-4074-a3fb-cbc50019dfb6', 'business_change', 'Business Change', 'Activate business capability, business process, stakeholder, and organizational concerns.', 100, TRUE, 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:53:45.117734'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_category (id, group_id, category_key, category_name, description, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('70ecd1d7-f79e-473c-86a0-c35482e4485f', '976a9933-9c8d-4074-a3fb-cbc50019dfb6', 'application_change', 'Application Change', 'Activate application boundary, service decomposition, lifecycle, ownership, and collaboration concerns.', 110, TRUE, 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:53:45.117734'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_category (id, group_id, category_key, category_name, description, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('a4fb85f4-5b89-42e1-bc8b-77a6866c4ce4', '976a9933-9c8d-4074-a3fb-cbc50019dfb6', 'technology_change', 'Technology Change', 'Activate technology stack, platform, deployment, observability, security mechanism, and runtime concerns.', 130, TRUE, 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:53:45.117734'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_category (id, group_id, category_key, category_name, description, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('d4951288-2dc5-4aff-8ffe-d640045cd9ae', '9637fc17-59d0-4ad5-b7fa-733a9f327709', 'data_architecture_type', 'Data Architecture Type', 'Capture the dominant data architecture style for the project.', 190, TRUE, 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:53:45.117734'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_category (id, group_id, category_key, category_name, description, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('d80f6760-90fc-4cd4-9abf-2c878634a80e', '1a200279-762d-4de2-b4fa-3bbffe6b5ec9', 'project_resource_and_size', 'Project Resource and Size', 'Capture delivery capacity, resource scale, and funding indicators.', 30, TRUE, 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:53:45.117734'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_category (id, group_id, category_key, category_name, description, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('eb3ba841-982d-45c5-91af-b0d4a8366968', 'a4d325e9-ee49-4c1a-b8d1-ec2aee08aa18', 'data_complexity', 'Data Complexity', 'Capture data model, lineage, integration, quality, and governance complexity for the solution.', 50, TRUE, 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:53:45.117734'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_category (id, group_id, category_key, category_name, description, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('f2e5e95e-c26a-4bf4-8f89-1a0b7386b541', 'a4d325e9-ee49-4c1a-b8d1-ec2aee08aa18', 'security_complexity', 'Security Complexity', 'Capture security control, exposure, and assurance complexity for the solution.', 90, TRUE, 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:53:45.117734'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_category (id, group_id, category_key, category_name, description, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('f67c9c72-e598-455c-a6f0-c96747854259', '9637fc17-59d0-4ad5-b7fa-733a9f327709', 'business_architecture_type', 'Business Architecture Type', 'Capture the dominant business architecture style for the project.', 200, TRUE, 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:53:45.117734'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_category (id, group_id, category_key, category_name, description, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('f738e4c9-ab2f-49bd-b247-220ebf8cc860', '976a9933-9c8d-4074-a3fb-cbc50019dfb6', 'security_change', 'Security Change', 'Capture security policy, control, identity, and protection changes introduced by the project.', 150, TRUE, 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:53:45.117734'::TIMESTAMP) ON CONFLICT DO NOTHING;
-- Table: eam.avdm_question_answer_type
CREATE TABLE IF NOT EXISTS eam.avdm_question_answer_type (
id UUID DEFAULT gen_random_uuid() PRIMARY KEY,
answer_type_key VARCHAR NOT NULL,
answer_type_name VARCHAR NOT NULL,
storage_kind VARCHAR NOT NULL,
widget VARCHAR NOT NULL,
allows_multiple BOOLEAN NOT NULL DEFAULT false,
allows_free_text BOOLEAN NOT NULL DEFAULT false,
description text,
is_active BOOLEAN NOT NULL DEFAULT true,
create_by VARCHAR NOT NULL DEFAULT 'system'::character varying,
update_by VARCHAR NOT NULL DEFAULT 'system'::character varying,
create_at TIMESTAMP NOT NULL DEFAULT now(),
update_at TIMESTAMP NOT NULL DEFAULT now()
);
-- Seed: eam.avdm_question_answer_type (5 rows)
INSERT INTO eam.avdm_question_answer_type (id, answer_type_key, answer_type_name, storage_kind, widget, allows_multiple, allows_free_text, description, is_active, create_by, update_by, create_at, update_at) VALUES ('03f7b52f-b74b-4e70-9dc9-5375fe78846a', 'text', 'Single Line Text', 'text', 'text', FALSE, TRUE, 'Best for concise free-text answers.', TRUE, 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:53:45.117734'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_answer_type (id, answer_type_key, answer_type_name, storage_kind, widget, allows_multiple, allows_free_text, description, is_active, create_by, update_by, create_at, update_at) VALUES ('07b09655-2dc9-44b7-a530-98d4616cacdf', 'radio', 'Single Choice Radio', 'single_choice', 'radio', FALSE, FALSE, 'Best for Yes/No and small exclusive choices.', TRUE, 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:53:45.117734'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_answer_type (id, answer_type_key, answer_type_name, storage_kind, widget, allows_multiple, allows_free_text, description, is_active, create_by, update_by, create_at, update_at) VALUES ('3265b21e-6a86-4cbc-a779-e740e9b6f63d', 'multiselect', 'Multi Choice Select', 'multi_choice', 'multiselect', TRUE, FALSE, 'Best for selecting multiple applicable options.', TRUE, 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:53:45.117734'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_answer_type (id, answer_type_key, answer_type_name, storage_kind, widget, allows_multiple, allows_free_text, description, is_active, create_by, update_by, create_at, update_at) VALUES ('6984971f-1760-4c9b-980c-2c5b061c5488', 'textarea', 'Multi Line Text', 'text', 'textarea', FALSE, TRUE, 'Best for narrative or justification input.', TRUE, 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:53:45.117734'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_answer_type (id, answer_type_key, answer_type_name, storage_kind, widget, allows_multiple, allows_free_text, description, is_active, create_by, update_by, create_at, update_at) VALUES ('6f64a869-cb82-418c-986c-96c12249af27', 'select', 'Single Choice Select', 'single_choice', 'select', FALSE, FALSE, 'Best for long exclusive choice sets.', TRUE, 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:53:45.117734'::TIMESTAMP) ON CONFLICT DO NOTHING;
-- Table: eam.avdm_question_option_set
CREATE TABLE IF NOT EXISTS eam.avdm_question_option_set (
id UUID DEFAULT gen_random_uuid() PRIMARY KEY,
option_set_key VARCHAR NOT NULL,
option_set_name VARCHAR NOT NULL,
description text,
is_shared BOOLEAN NOT NULL DEFAULT true,
sort_order INTEGER NOT NULL DEFAULT 0,
is_active BOOLEAN NOT NULL DEFAULT true,
create_by VARCHAR NOT NULL DEFAULT 'system'::character varying,
update_by VARCHAR NOT NULL DEFAULT 'system'::character varying,
create_at TIMESTAMP NOT NULL DEFAULT now(),
update_at TIMESTAMP NOT NULL DEFAULT now()
);
-- Seed: eam.avdm_question_option_set (25 rows)
INSERT INTO eam.avdm_question_option_set (id, option_set_key, option_set_name, description, is_shared, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('067532d5-c90b-41e9-8847-5a1e53aab13c', 'assessmentMatrix:60', 'A. Solution Options', 'Question-specific scored Yes/No choices for AVDM assessment matrix.', FALSE, 2060, TRUE, 'migration_020', 'migration_020', '2026-06-22T18:51:07.389192'::TIMESTAMP, '2026-06-22T18:53:45.224499'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_option_set (id, option_set_key, option_set_name, description, is_shared, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('0bc73ce7-11c7-4f0a-8d3c-9c0f84b278eb', 'assessmentMatrix:56', 'B. Business Process Change Options', 'Question-specific scored Yes/No choices for AVDM assessment matrix.', FALSE, 2020, TRUE, 'migration_020', 'migration_020', '2026-06-22T18:51:07.389192'::TIMESTAMP, '2026-06-22T18:53:45.224499'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_option_set (id, option_set_key, option_set_name, description, is_shared, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('0ffb49c8-3be4-4d9c-aecb-b02705737549', 'assessmentMatrix:69', 'B. Funding Required Options', 'Question-specific scored Yes/No choices for AVDM assessment matrix.', FALSE, 2150, TRUE, 'migration_020', 'migration_020', '2026-06-22T18:51:07.389192'::TIMESTAMP, '2026-06-22T18:53:45.224499'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_option_set (id, option_set_key, option_set_name, description, is_shared, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('16f7d720-02b3-4629-9753-e5f68312c53b', 'assessmentMatrix:67', 'H. Security Impact Options', 'Question-specific scored Yes/No choices for AVDM assessment matrix.', FALSE, 2130, TRUE, 'migration_020', 'migration_020', '2026-06-22T18:51:07.389192'::TIMESTAMP, '2026-06-22T18:53:45.224499'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_option_set (id, option_set_key, option_set_name, description, is_shared, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('382398ad-87a3-4ea5-b4e9-2a74e7e31da9', 'modifiedApplicationCountRangeOptions', 'Modified Application Count', 'Reusable modified-application count ranges.', TRUE, 40, TRUE, 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:53:45.117734'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_option_set (id, option_set_key, option_set_name, description, is_shared, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('4760e555-82e6-4b2c-8602-6af58fc08e0a', 'cloudRegionScopeOptions', 'Cloud Region Scope', 'Reusable cloud/region topology choices.', TRUE, 60, TRUE, 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:53:45.117734'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_option_set (id, option_set_key, option_set_name, description, is_shared, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('4bb393e4-c2f6-4ea3-aee9-67b3d6bb4404', 'assessmentMatrix:65', 'F. Platform / Domain Dependency Options', 'Question-specific scored Yes/No choices for AVDM assessment matrix.', FALSE, 2110, TRUE, 'migration_020', 'migration_020', '2026-06-22T18:51:07.389192'::TIMESTAMP, '2026-06-22T18:53:45.224499'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_option_set (id, option_set_key, option_set_name, description, is_shared, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('582363bb-e821-418f-8e0c-4dcc491e1de4', 'assessmentMatrix:59', 'E. Cross BU / GEO Options', 'Question-specific scored Yes/No choices for AVDM assessment matrix.', FALSE, 2050, TRUE, 'migration_020', 'migration_020', '2026-06-22T18:51:07.389192'::TIMESTAMP, '2026-06-22T18:53:45.224499'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_option_set (id, option_set_key, option_set_name, description, is_shared, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('650698ec-7399-42eb-8dd2-63dd4f6b59e1', 'assessmentMatrix:68', 'A. Number of Resource Options', 'Question-specific scored Yes/No choices for AVDM assessment matrix.', FALSE, 2140, TRUE, 'migration_020', 'migration_020', '2026-06-22T18:51:07.389192'::TIMESTAMP, '2026-06-22T18:53:45.224499'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_option_set (id, option_set_key, option_set_name, description, is_shared, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('65730701-b5f9-46e4-a839-18489c0a16d9', 'externalSystemCountRangeOptions', 'External System Count', 'Reusable external-system count ranges.', TRUE, 20, TRUE, 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:53:45.117734'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_option_set (id, option_set_key, option_set_name, description, is_shared, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('6bdd3c42-0fe5-4b9f-9997-5d03df5ae5d6', 'dataCenterCountRangeOptions', 'Data Center Count', 'Reusable data-center count ranges.', TRUE, 50, TRUE, 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:53:45.117734'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_option_set (id, option_set_key, option_set_name, description, is_shared, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('769fdafc-c62e-4b39-a83b-35dcbb29e862', 'assessmentMatrix:55', 'A. Complexity of Requirement Options', 'Question-specific scored Yes/No choices for AVDM assessment matrix.', FALSE, 2010, TRUE, 'migration_020', 'migration_020', '2026-06-22T18:51:07.389192'::TIMESTAMP, '2026-06-22T18:53:45.224499'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_option_set (id, option_set_key, option_set_name, description, is_shared, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('76fe51e5-17d8-4a28-aef5-be0508237aff', 'assessmentMatrix:61', 'B. Solution Technology Options', 'Question-specific scored Yes/No choices for AVDM assessment matrix.', FALSE, 2070, TRUE, 'migration_020', 'migration_020', '2026-06-22T18:51:07.389192'::TIMESTAMP, '2026-06-22T18:53:45.224499'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_option_set (id, option_set_key, option_set_name, description, is_shared, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('79f32ff9-d7d2-4308-819e-67c74d3b9476', 'assessmentMatrix:57', 'C. Business Team Options', 'Question-specific scored Yes/No choices for AVDM assessment matrix.', FALSE, 2030, TRUE, 'migration_020', 'migration_020', '2026-06-22T18:51:07.389192'::TIMESTAMP, '2026-06-22T18:53:45.224499'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_option_set (id, option_set_key, option_set_name, description, is_shared, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('836b32c7-b320-4ff1-84b2-214d08b172b3', 'assessmentMatrix:64', 'E. Solution Dependencies Options', 'Question-specific scored Yes/No choices for AVDM assessment matrix.', FALSE, 2100, TRUE, 'migration_020', 'migration_020', '2026-06-22T18:51:07.389192'::TIMESTAMP, '2026-06-22T18:53:45.224499'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_option_set (id, option_set_key, option_set_name, description, is_shared, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('91759be2-ad0f-491b-be26-92070b6f1c36', 'projectTypeOptions', 'Project Type', 'Reusable project type choices.', TRUE, 5, TRUE, 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:53:45.117734'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_option_set (id, option_set_key, option_set_name, description, is_shared, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('a1dc2c5e-a690-4340-ad5a-3a7ae53510ed', 'newApplicationCountRangeOptions', 'New Application Count', 'Reusable new-application count ranges.', TRUE, 30, TRUE, 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:53:45.117734'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_option_set (id, option_set_key, option_set_name, description, is_shared, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('ab88196f-aa93-4a12-a2af-12e56ce61ef3', 'applicationCountRangeOptions', 'Application Count', 'Reusable application-count ranges.', TRUE, 10, TRUE, 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:53:45.117734'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_option_set (id, option_set_key, option_set_name, description, is_shared, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('b1a46855-46ae-4dc2-b397-9c82ae163c10', 'assessmentMatrix:62', 'C. Impact Function Area Options', 'Question-specific scored Yes/No choices for AVDM assessment matrix.', FALSE, 2080, TRUE, 'migration_020', 'migration_020', '2026-06-22T18:51:07.389192'::TIMESTAMP, '2026-06-22T18:53:45.224499'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_option_set (id, option_set_key, option_set_name, description, is_shared, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('c6c8b6ca-7fc1-4396-b9dd-00de733dd31a', 'assessmentMatrix:66', 'G. Architecture Impact Options', 'Question-specific scored Yes/No choices for AVDM assessment matrix.', FALSE, 2120, TRUE, 'migration_020', 'migration_020', '2026-06-22T18:51:07.389192'::TIMESTAMP, '2026-06-22T18:53:45.224499'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_option_set (id, option_set_key, option_set_name, description, is_shared, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('cc0049dd-7de3-4ae4-8cbe-a3f61e60056d', 'questionYesNoOptions', 'Question Yes / No', 'Reusable Yes/No choices for question-bank radio answers.', TRUE, 1, TRUE, 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:53:45.117734'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_option_set (id, option_set_key, option_set_name, description, is_shared, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('e43e7a03-c92e-4962-9f8d-3504ce2a4fd8', 'assessmentMatrix:63', 'D. Solution Delivery Timelines Options', 'Question-specific scored Yes/No choices for AVDM assessment matrix.', FALSE, 2090, TRUE, 'migration_020', 'migration_020', '2026-06-22T18:51:07.389192'::TIMESTAMP, '2026-06-22T18:53:45.224499'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_option_set (id, option_set_key, option_set_name, description, is_shared, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('e7e0cd4d-b8a6-4097-b49e-cc72633a3178', 'techStackKindsCountRangeOptions', 'Tech Stack Variety', 'Reusable technology-kind count ranges.', TRUE, 70, TRUE, 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:53:45.117734'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_option_set (id, option_set_key, option_set_name, description, is_shared, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('eb84f8fd-3b4e-48fd-843d-0738e13dd9f8', 'assessmentMatrix:58', 'D. Strategic Priority Options', 'Question-specific scored Yes/No choices for AVDM assessment matrix.', FALSE, 2040, TRUE, 'migration_020', 'migration_020', '2026-06-22T18:51:07.389192'::TIMESTAMP, '2026-06-22T18:53:45.224499'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_option_set (id, option_set_key, option_set_name, description, is_shared, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('f4af0fd5-004c-4419-9a0f-fd5a83f5aec8', 'integrationTechKindsCountRangeOptions', 'Integration Technology Variety', 'Reusable integration-technology count ranges.', TRUE, 80, TRUE, 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:53:45.117734'::TIMESTAMP) ON CONFLICT DO NOTHING;
-- Table: eam.avdm_question_option_item
CREATE TABLE IF NOT EXISTS eam.avdm_question_option_item (
id UUID DEFAULT gen_random_uuid() PRIMARY KEY,
option_set_id UUID NOT NULL,
option_value VARCHAR NOT NULL,
option_label VARCHAR NOT NULL,
option_score NUMERIC,
sort_order INTEGER NOT NULL DEFAULT 0,
is_active BOOLEAN NOT NULL DEFAULT true,
metadata jsonb NOT NULL DEFAULT '{}'::jsonb,
create_by VARCHAR NOT NULL DEFAULT 'system'::character varying,
update_by VARCHAR NOT NULL DEFAULT 'system'::character varying,
create_at TIMESTAMP NOT NULL DEFAULT now(),
update_at TIMESTAMP NOT NULL DEFAULT now()
);
-- Seed: eam.avdm_question_option_item (74 rows)
INSERT INTO eam.avdm_question_option_item (id, option_set_id, option_value, option_label, option_score, sort_order, is_active, metadata, create_by, update_by, create_at, update_at) VALUES ('001d4eef-24fb-4ccb-b3b0-6860a9403523', 'f4af0fd5-004c-4419-9a0f-fd5a83f5aec8', '1_2', '1 to 2', NULL, 10, TRUE, '{}', 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:53:45.117734'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_option_item (id, option_set_id, option_value, option_label, option_score, sort_order, is_active, metadata, create_by, update_by, create_at, update_at) VALUES ('0354b143-34b0-4cad-8b3c-8c5a574ca632', 'eb84f8fd-3b4e-48fd-843d-0738e13dd9f8', 'No', 'No', '0.000', 20, TRUE, '{}', 'migration_020', 'migration_020', '2026-06-22T18:51:07.389192'::TIMESTAMP, '2026-06-22T18:53:45.224499'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_option_item (id, option_set_id, option_value, option_label, option_score, sort_order, is_active, metadata, create_by, update_by, create_at, update_at) VALUES ('043b1110-0fb9-488a-87bc-35b56bfc4e36', '382398ad-87a3-4ea5-b4e9-2a74e7e31da9', '1', '1', NULL, 10, TRUE, '{}', 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:53:45.117734'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_option_item (id, option_set_id, option_value, option_label, option_score, sort_order, is_active, metadata, create_by, update_by, create_at, update_at) VALUES ('06555489-a3c1-4839-a213-12dc33e3a72c', '0bc73ce7-11c7-4f0a-8d3c-9c0f84b278eb', 'Yes', 'Yes', '1.000', 10, TRUE, '{}', 'migration_020', 'migration_020', '2026-06-22T18:51:07.389192'::TIMESTAMP, '2026-06-22T18:53:45.224499'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_option_item (id, option_set_id, option_value, option_label, option_score, sort_order, is_active, metadata, create_by, update_by, create_at, update_at) VALUES ('09af3ce4-de30-4b9a-9ea1-729b8af703ae', '4760e555-82e6-4b2c-8602-6af58fc08e0a', 'SINGLE_CLOUD_SINGLE_REGION', 'Single cloud / Single region', NULL, 10, TRUE, '{}', 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:53:45.117734'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_option_item (id, option_set_id, option_value, option_label, option_score, sort_order, is_active, metadata, create_by, update_by, create_at, update_at) VALUES ('0b0fdeb6-39d7-4239-81d6-c57b0575fe7b', '91759be2-ad0f-491b-be26-92070b6f1c36', 'AI_ML_LLM_RAG_MLOPS', 'AI Project (ML / LLM / RAG / MLOps / LLMOps)', NULL, 30, TRUE, '{}', 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:53:45.117734'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_option_item (id, option_set_id, option_value, option_label, option_score, sort_order, is_active, metadata, create_by, update_by, create_at, update_at) VALUES ('0c00722c-d388-401d-9481-150086ecd2b9', '067532d5-c90b-41e9-8847-5a1e53aab13c', 'Yes', 'Yes', '3.000', 10, TRUE, '{}', 'migration_020', 'migration_020', '2026-06-22T18:51:07.389192'::TIMESTAMP, '2026-06-22T18:53:45.224499'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_option_item (id, option_set_id, option_value, option_label, option_score, sort_order, is_active, metadata, create_by, update_by, create_at, update_at) VALUES ('14dfe81d-1fd4-47c4-9eac-a6b02321f878', 'b1a46855-46ae-4dc2-b397-9c82ae163c10', 'No', 'No', '0.000', 20, TRUE, '{}', 'migration_020', 'migration_020', '2026-06-22T18:51:07.389192'::TIMESTAMP, '2026-06-22T18:53:45.224499'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_option_item (id, option_set_id, option_value, option_label, option_score, sort_order, is_active, metadata, create_by, update_by, create_at, update_at) VALUES ('1a199e4c-8a6c-4474-9c02-89c168e99cbb', '91759be2-ad0f-491b-be26-92070b6f1c36', 'DATA_ETL_ELT_BI', 'Data Project (ETL / ELT / BI)', NULL, 20, TRUE, '{}', 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:53:45.117734'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_option_item (id, option_set_id, option_value, option_label, option_score, sort_order, is_active, metadata, create_by, update_by, create_at, update_at) VALUES ('1e59b15d-c5ea-44f3-b521-0ef0eec7522c', '382398ad-87a3-4ea5-b4e9-2a74e7e31da9', 'GT_50', 'More than 50', NULL, 50, TRUE, '{}', 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:53:45.117734'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_option_item (id, option_set_id, option_value, option_label, option_score, sort_order, is_active, metadata, create_by, update_by, create_at, update_at) VALUES ('1e609c54-97bd-496b-b692-407059c0c1eb', '836b32c7-b320-4ff1-84b2-214d08b172b3', 'Yes', 'Yes', '2.000', 10, TRUE, '{}', 'migration_020', 'migration_020', '2026-06-22T18:51:07.389192'::TIMESTAMP, '2026-06-22T18:53:45.224499'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_option_item (id, option_set_id, option_value, option_label, option_score, sort_order, is_active, metadata, create_by, update_by, create_at, update_at) VALUES ('1eb301be-2a71-466d-8e02-1073bc5dc7bb', '6bdd3c42-0fe5-4b9f-9997-5d03df5ae5d6', '4_10', '4 to 10', NULL, 30, TRUE, '{}', 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:53:45.117734'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_option_item (id, option_set_id, option_value, option_label, option_score, sort_order, is_active, metadata, create_by, update_by, create_at, update_at) VALUES ('2766a2eb-ad7e-454a-a136-ac3b9a1f442e', 'f4af0fd5-004c-4419-9a0f-fd5a83f5aec8', '3_5', '3 to 5', NULL, 20, TRUE, '{}', 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:53:45.117734'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_option_item (id, option_set_id, option_value, option_label, option_score, sort_order, is_active, metadata, create_by, update_by, create_at, update_at) VALUES ('2e6781aa-70bb-412e-8071-97bd5afc2168', '4760e555-82e6-4b2c-8602-6af58fc08e0a', 'MULTI_CLOUD_SINGLE_REGION', 'Multi cloud / Single region', NULL, 30, TRUE, '{}', 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:53:45.117734'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_option_item (id, option_set_id, option_value, option_label, option_score, sort_order, is_active, metadata, create_by, update_by, create_at, update_at) VALUES ('2f18a9a8-81a8-44a5-a6ae-80fd299ea50e', '4760e555-82e6-4b2c-8602-6af58fc08e0a', 'MULTI_CLOUD_MULTI_REGION', 'Multi cloud / Multi region', NULL, 40, TRUE, '{}', 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:53:45.117734'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_option_item (id, option_set_id, option_value, option_label, option_score, sort_order, is_active, metadata, create_by, update_by, create_at, update_at) VALUES ('2f48c103-f64d-4c30-a3d3-59b59f66ca42', 'e7e0cd4d-b8a6-4097-b49e-cc72633a3178', '1_2', '1 to 2', NULL, 10, TRUE, '{}', 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:53:45.117734'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_option_item (id, option_set_id, option_value, option_label, option_score, sort_order, is_active, metadata, create_by, update_by, create_at, update_at) VALUES ('2fa1b367-36b7-493c-a7ee-d7c558f8c21c', '79f32ff9-d7d2-4308-819e-67c74d3b9476', 'Yes', 'Yes', '1.000', 10, TRUE, '{}', 'migration_020', 'migration_020', '2026-06-22T18:51:07.389192'::TIMESTAMP, '2026-06-22T18:53:45.224499'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_option_item (id, option_set_id, option_value, option_label, option_score, sort_order, is_active, metadata, create_by, update_by, create_at, update_at) VALUES ('30d7a9c2-2d08-4d9f-9c40-51d32adaf7d6', '91759be2-ad0f-491b-be26-92070b6f1c36', 'PERFORMANCE_RESILIENCE_HEAVY_INTEGRATION', 'Performance & Resilience-Heavy Integration', NULL, 60, TRUE, '{}', 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:53:45.117734'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_option_item (id, option_set_id, option_value, option_label, option_score, sort_order, is_active, metadata, create_by, update_by, create_at, update_at) VALUES ('33f236e1-d029-4c38-b8dd-0f31d2c34392', 'a1dc2c5e-a690-4340-ad5a-3a7ae53510ed', '20_50', '20 to 50', NULL, 40, TRUE, '{}', 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:53:45.117734'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_option_item (id, option_set_id, option_value, option_label, option_score, sort_order, is_active, metadata, create_by, update_by, create_at, update_at) VALUES ('39c1c8ae-73d5-49f0-9a16-44a141937c24', '4bb393e4-c2f6-4ea3-aee9-67b3d6bb4404', 'Yes', 'Yes', '2.000', 10, TRUE, '{}', 'migration_020', 'migration_020', '2026-06-22T18:51:07.389192'::TIMESTAMP, '2026-06-22T18:53:45.224499'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_option_item (id, option_set_id, option_value, option_label, option_score, sort_order, is_active, metadata, create_by, update_by, create_at, update_at) VALUES ('4328bfe4-c282-4f53-8949-20e70ac3512f', 'ab88196f-aa93-4a12-a2af-12e56ce61ef3', '21_50', '21 to 50', NULL, 30, TRUE, '{}', 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:53:45.117734'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_option_item (id, option_set_id, option_value, option_label, option_score, sort_order, is_active, metadata, create_by, update_by, create_at, update_at) VALUES ('4772da1a-844b-40a4-87f6-d875deb12000', '582363bb-e821-418f-8e0c-4dcc491e1de4', 'No', 'No', '0.000', 20, TRUE, '{}', 'migration_020', 'migration_020', '2026-06-22T18:51:07.389192'::TIMESTAMP, '2026-06-22T18:53:45.224499'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_option_item (id, option_set_id, option_value, option_label, option_score, sort_order, is_active, metadata, create_by, update_by, create_at, update_at) VALUES ('48bf7cdb-d4bb-4166-9f76-592061ef7f23', '6bdd3c42-0fe5-4b9f-9997-5d03df5ae5d6', '2_3', '2 to 3', NULL, 20, TRUE, '{}', 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:53:45.117734'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_option_item (id, option_set_id, option_value, option_label, option_score, sort_order, is_active, metadata, create_by, update_by, create_at, update_at) VALUES ('4ceb96b1-1546-46d4-b60f-e93876fecbc9', '650698ec-7399-42eb-8dd2-63dd4f6b59e1', 'Yes', 'Yes', '3.000', 10, TRUE, '{}', 'migration_020', 'migration_020', '2026-06-22T18:51:07.389192'::TIMESTAMP, '2026-06-22T18:53:45.224499'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_option_item (id, option_set_id, option_value, option_label, option_score, sort_order, is_active, metadata, create_by, update_by, create_at, update_at) VALUES ('4d3ac5fc-d2e5-4d36-8d9d-a0f09314a8f5', '382398ad-87a3-4ea5-b4e9-2a74e7e31da9', '20_50', '20 to 50', NULL, 40, TRUE, '{}', 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:53:45.117734'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_option_item (id, option_set_id, option_value, option_label, option_score, sort_order, is_active, metadata, create_by, update_by, create_at, update_at) VALUES ('4dc19437-d1d4-451f-91ab-d8d88f754de6', '4bb393e4-c2f6-4ea3-aee9-67b3d6bb4404', 'No', 'No', '0.000', 20, TRUE, '{}', 'migration_020', 'migration_020', '2026-06-22T18:51:07.389192'::TIMESTAMP, '2026-06-22T18:53:45.224499'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_option_item (id, option_set_id, option_value, option_label, option_score, sort_order, is_active, metadata, create_by, update_by, create_at, update_at) VALUES ('4dcee402-e618-4933-85c7-63d3cd288527', 'a1dc2c5e-a690-4340-ad5a-3a7ae53510ed', '5_20', '5 to 20', NULL, 30, TRUE, '{}', 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:53:45.117734'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_option_item (id, option_set_id, option_value, option_label, option_score, sort_order, is_active, metadata, create_by, update_by, create_at, update_at) VALUES ('588f99e9-f8b6-4c7e-83c3-bd40d41d7439', 'e43e7a03-c92e-4962-9f8d-3504ce2a4fd8', 'Yes', 'Yes', '3.000', 10, TRUE, '{}', 'migration_020', 'migration_020', '2026-06-22T18:51:07.389192'::TIMESTAMP, '2026-06-22T18:53:45.224499'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_option_item (id, option_set_id, option_value, option_label, option_score, sort_order, is_active, metadata, create_by, update_by, create_at, update_at) VALUES ('5c0a97bc-3d47-4386-8b33-b28519ea728c', '382398ad-87a3-4ea5-b4e9-2a74e7e31da9', '5_20', '5 to 20', NULL, 30, TRUE, '{}', 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:53:45.117734'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_option_item (id, option_set_id, option_value, option_label, option_score, sort_order, is_active, metadata, create_by, update_by, create_at, update_at) VALUES ('5d2f6953-73ad-4add-b241-4435f6fe8d07', '76fe51e5-17d8-4a28-aef5-be0508237aff', 'Yes', 'Yes', '1.000', 10, TRUE, '{}', 'migration_020', 'migration_020', '2026-06-22T18:51:07.389192'::TIMESTAMP, '2026-06-22T18:53:45.224499'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_option_item (id, option_set_id, option_value, option_label, option_score, sort_order, is_active, metadata, create_by, update_by, create_at, update_at) VALUES ('605ee641-4ff8-4e45-9112-23e95c4c0880', '0ffb49c8-3be4-4d9c-aecb-b02705737549', 'Yes', 'Yes', '3.000', 10, TRUE, '{}', 'migration_020', 'migration_020', '2026-06-22T18:51:07.389192'::TIMESTAMP, '2026-06-22T18:53:45.224499'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_option_item (id, option_set_id, option_value, option_label, option_score, sort_order, is_active, metadata, create_by, update_by, create_at, update_at) VALUES ('62e6ad18-23f8-404d-8859-7eddcad162b4', '16f7d720-02b3-4629-9753-e5f68312c53b', 'Yes', 'Yes', '2.000', 10, TRUE, '{}', 'migration_020', 'migration_020', '2026-06-22T18:51:07.389192'::TIMESTAMP, '2026-06-22T18:53:45.224499'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_option_item (id, option_set_id, option_value, option_label, option_score, sort_order, is_active, metadata, create_by, update_by, create_at, update_at) VALUES ('67ab262d-a961-4535-857f-a8f27b409963', '91759be2-ad0f-491b-be26-92070b6f1c36', 'COMPLEX_BUSINESS_PROCESS', 'Complex Business Process System', NULL, 40, TRUE, '{}', 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:53:45.117734'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_option_item (id, option_set_id, option_value, option_label, option_score, sort_order, is_active, metadata, create_by, update_by, create_at, update_at) VALUES ('686c6562-3987-46de-abd7-e1b3d2bf00bd', 'e7e0cd4d-b8a6-4097-b49e-cc72633a3178', 'GT_10', 'More than 10', NULL, 40, TRUE, '{}', 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:53:45.117734'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_option_item (id, option_set_id, option_value, option_label, option_score, sort_order, is_active, metadata, create_by, update_by, create_at, update_at) VALUES ('68e617bf-7265-4a3e-ba21-c18ea8313cfd', 'c6c8b6ca-7fc1-4396-b9dd-00de733dd31a', 'No', 'No', '0.000', 20, TRUE, '{}', 'migration_020', 'migration_020', '2026-06-22T18:51:07.389192'::TIMESTAMP, '2026-06-22T18:53:45.224499'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_option_item (id, option_set_id, option_value, option_label, option_score, sort_order, is_active, metadata, create_by, update_by, create_at, update_at) VALUES ('706a5605-4555-44aa-80de-8e445a2da2fc', '16f7d720-02b3-4629-9753-e5f68312c53b', 'No', 'No', '0.000', 20, TRUE, '{}', 'migration_020', 'migration_020', '2026-06-22T18:51:07.389192'::TIMESTAMP, '2026-06-22T18:53:45.224499'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_option_item (id, option_set_id, option_value, option_label, option_score, sort_order, is_active, metadata, create_by, update_by, create_at, update_at) VALUES ('70717798-3dc9-4783-8cf4-c7ea1eb71ec8', 'e7e0cd4d-b8a6-4097-b49e-cc72633a3178', '3_5', '3 to 5', NULL, 20, TRUE, '{}', 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:53:45.117734'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_option_item (id, option_set_id, option_value, option_label, option_score, sort_order, is_active, metadata, create_by, update_by, create_at, update_at) VALUES ('7128c5f9-6c29-4d30-a969-a94135d8982e', '6bdd3c42-0fe5-4b9f-9997-5d03df5ae5d6', '1', '1', NULL, 10, TRUE, '{}', 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:53:45.117734'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_option_item (id, option_set_id, option_value, option_label, option_score, sort_order, is_active, metadata, create_by, update_by, create_at, update_at) VALUES ('716a1d62-7e28-446c-afbf-f47666638f51', '836b32c7-b320-4ff1-84b2-214d08b172b3', 'No', 'No', '0.000', 20, TRUE, '{}', 'migration_020', 'migration_020', '2026-06-22T18:51:07.389192'::TIMESTAMP, '2026-06-22T18:53:45.224499'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_option_item (id, option_set_id, option_value, option_label, option_score, sort_order, is_active, metadata, create_by, update_by, create_at, update_at) VALUES ('767004be-5866-40d3-a71e-62838f72731a', 'f4af0fd5-004c-4419-9a0f-fd5a83f5aec8', '6_10', '6 to 10', NULL, 30, TRUE, '{}', 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:53:45.117734'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_option_item (id, option_set_id, option_value, option_label, option_score, sort_order, is_active, metadata, create_by, update_by, create_at, update_at) VALUES ('7a41c07c-56e1-46d8-9450-1da0c5bc2274', '0ffb49c8-3be4-4d9c-aecb-b02705737549', 'No', 'No', '0.000', 20, TRUE, '{}', 'migration_020', 'migration_020', '2026-06-22T18:51:07.389192'::TIMESTAMP, '2026-06-22T18:53:45.224499'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_option_item (id, option_set_id, option_value, option_label, option_score, sort_order, is_active, metadata, create_by, update_by, create_at, update_at) VALUES ('7bb4c7a5-632b-4f44-8ec0-917446ece637', '4760e555-82e6-4b2c-8602-6af58fc08e0a', 'SINGLE_CLOUD_MULTI_REGION', 'Single cloud / Multi region', NULL, 20, TRUE, '{}', 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:53:45.117734'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_option_item (id, option_set_id, option_value, option_label, option_score, sort_order, is_active, metadata, create_by, update_by, create_at, update_at) VALUES ('7fab444b-6b39-412f-94cb-aa8b5a485b45', 'f4af0fd5-004c-4419-9a0f-fd5a83f5aec8', 'GT_10', 'More than 10', NULL, 40, TRUE, '{}', 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:53:45.117734'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_option_item (id, option_set_id, option_value, option_label, option_score, sort_order, is_active, metadata, create_by, update_by, create_at, update_at) VALUES ('84e90a63-bc81-4c9f-961f-68c5b8118d71', 'ab88196f-aa93-4a12-a2af-12e56ce61ef3', 'LE_5', '5 or fewer', NULL, 10, TRUE, '{}', 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:53:45.117734'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_option_item (id, option_set_id, option_value, option_label, option_score, sort_order, is_active, metadata, create_by, update_by, create_at, update_at) VALUES ('88e76e66-8acf-42c8-9260-b5690b04b8b5', 'ab88196f-aa93-4a12-a2af-12e56ce61ef3', '51_100', '51 to 100', NULL, 40, TRUE, '{}', 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:53:45.117734'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_option_item (id, option_set_id, option_value, option_label, option_score, sort_order, is_active, metadata, create_by, update_by, create_at, update_at) VALUES ('88ebc3a1-164e-4d1a-a084-e0a2c57635d2', '6bdd3c42-0fe5-4b9f-9997-5d03df5ae5d6', 'GT_10', 'More than 10', NULL, 40, TRUE, '{}', 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:53:45.117734'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_option_item (id, option_set_id, option_value, option_label, option_score, sort_order, is_active, metadata, create_by, update_by, create_at, update_at) VALUES ('89286739-60d1-4404-a1fd-b2d4389891d6', 'cc0049dd-7de3-4ae4-8cbe-a3f61e60056d', 'N', 'No', NULL, 20, TRUE, '{}', 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:53:45.117734'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_option_item (id, option_set_id, option_value, option_label, option_score, sort_order, is_active, metadata, create_by, update_by, create_at, update_at) VALUES ('951169c2-3a71-40ef-ae78-83de0e26e222', 'ab88196f-aa93-4a12-a2af-12e56ce61ef3', '6_20', '6 to 20', NULL, 20, TRUE, '{}', 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:53:45.117734'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_option_item (id, option_set_id, option_value, option_label, option_score, sort_order, is_active, metadata, create_by, update_by, create_at, update_at) VALUES ('95a41133-8531-4ffd-9712-c5eed5470768', '76fe51e5-17d8-4a28-aef5-be0508237aff', 'No', 'No', '0.000', 20, TRUE, '{}', 'migration_020', 'migration_020', '2026-06-22T18:51:07.389192'::TIMESTAMP, '2026-06-22T18:53:45.224499'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_option_item (id, option_set_id, option_value, option_label, option_score, sort_order, is_active, metadata, create_by, update_by, create_at, update_at) VALUES ('96786c53-2a14-4cd7-a9c4-9242c1babed3', '91759be2-ad0f-491b-be26-92070b6f1c36', 'IDENTITY_INTERACTION_HEAVY_INTEGRATION', 'Identity & Interaction-Heavy Integration', NULL, 50, TRUE, '{}', 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:53:45.117734'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_option_item (id, option_set_id, option_value, option_label, option_score, sort_order, is_active, metadata, create_by, update_by, create_at, update_at) VALUES ('96fbbe41-f91a-4418-b733-8090cd0e9c1e', '91759be2-ad0f-491b-be26-92070b6f1c36', 'WEB_APP_SERVICE', 'Web Application / Service-Oriented System', NULL, 10, TRUE, '{}', 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:53:45.117734'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_option_item (id, option_set_id, option_value, option_label, option_score, sort_order, is_active, metadata, create_by, update_by, create_at, update_at) VALUES ('994c882d-15c1-4e9c-8d7d-b5a40f2cdd75', '769fdafc-c62e-4b39-a83b-35dcbb29e862', 'Yes', 'Yes', '3.000', 10, TRUE, '{}', 'migration_020', 'migration_020', '2026-06-22T18:51:07.389192'::TIMESTAMP, '2026-06-22T18:53:45.224499'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_option_item (id, option_set_id, option_value, option_label, option_score, sort_order, is_active, metadata, create_by, update_by, create_at, update_at) VALUES ('9b56b6fc-b9c0-45ff-a61f-16c4ff7527a9', '382398ad-87a3-4ea5-b4e9-2a74e7e31da9', '2_5', '2 to 5', NULL, 20, TRUE, '{}', 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:53:45.117734'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_option_item (id, option_set_id, option_value, option_label, option_score, sort_order, is_active, metadata, create_by, update_by, create_at, update_at) VALUES ('9d94faec-d5f9-4a98-99cd-128c000fb83a', '65730701-b5f9-46e4-a839-18489c0a16d9', '5_20', '5 to 20', NULL, 20, TRUE, '{}', 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:53:45.117734'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_option_item (id, option_set_id, option_value, option_label, option_score, sort_order, is_active, metadata, create_by, update_by, create_at, update_at) VALUES ('9dd19b1f-6784-4f13-a72e-ba3ffc386678', '582363bb-e821-418f-8e0c-4dcc491e1de4', 'Yes', 'Yes', '2.000', 10, TRUE, '{}', 'migration_020', 'migration_020', '2026-06-22T18:51:07.389192'::TIMESTAMP, '2026-06-22T18:53:45.224499'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_option_item (id, option_set_id, option_value, option_label, option_score, sort_order, is_active, metadata, create_by, update_by, create_at, update_at) VALUES ('9e4ee831-9cc9-4a6a-89f6-c452535f7570', '769fdafc-c62e-4b39-a83b-35dcbb29e862', 'No', 'No', '0.000', 20, TRUE, '{}', 'migration_020', 'migration_020', '2026-06-22T18:51:07.389192'::TIMESTAMP, '2026-06-22T18:53:45.224499'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_option_item (id, option_set_id, option_value, option_label, option_score, sort_order, is_active, metadata, create_by, update_by, create_at, update_at) VALUES ('a1c3b9bb-e56f-4212-af47-10e51149c1fc', 'e43e7a03-c92e-4962-9f8d-3504ce2a4fd8', 'No', 'No', '0.000', 20, TRUE, '{}', 'migration_020', 'migration_020', '2026-06-22T18:51:07.389192'::TIMESTAMP, '2026-06-22T18:53:45.224499'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_option_item (id, option_set_id, option_value, option_label, option_score, sort_order, is_active, metadata, create_by, update_by, create_at, update_at) VALUES ('aed40f7d-fedc-4d84-803a-7e62b4ce33f5', 'ab88196f-aa93-4a12-a2af-12e56ce61ef3', 'GT_100', 'More than 100', NULL, 50, TRUE, '{}', 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:53:45.117734'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_option_item (id, option_set_id, option_value, option_label, option_score, sort_order, is_active, metadata, create_by, update_by, create_at, update_at) VALUES ('b853e428-b382-4d63-b37a-e66ef1c5b665', 'e7e0cd4d-b8a6-4097-b49e-cc72633a3178', '6_10', '6 to 10', NULL, 30, TRUE, '{}', 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:53:45.117734'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_option_item (id, option_set_id, option_value, option_label, option_score, sort_order, is_active, metadata, create_by, update_by, create_at, update_at) VALUES ('c1761001-c667-4ba2-adce-c47a7bf4828a', 'a1dc2c5e-a690-4340-ad5a-3a7ae53510ed', '1', '1', NULL, 10, TRUE, '{}', 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:53:45.117734'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_option_item (id, option_set_id, option_value, option_label, option_score, sort_order, is_active, metadata, create_by, update_by, create_at, update_at) VALUES ('c9828c9e-335c-4490-a165-04181f0bcff6', '650698ec-7399-42eb-8dd2-63dd4f6b59e1', 'No', 'No', '0.000', 20, TRUE, '{}', 'migration_020', 'migration_020', '2026-06-22T18:51:07.389192'::TIMESTAMP, '2026-06-22T18:53:45.224499'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_option_item (id, option_set_id, option_value, option_label, option_score, sort_order, is_active, metadata, create_by, update_by, create_at, update_at) VALUES ('cba5dae4-430e-48d9-8878-c8501245137e', '65730701-b5f9-46e4-a839-18489c0a16d9', 'GT_50', 'More than 50', NULL, 40, TRUE, '{}', 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:53:45.117734'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_option_item (id, option_set_id, option_value, option_label, option_score, sort_order, is_active, metadata, create_by, update_by, create_at, update_at) VALUES ('cc9a8c85-b99f-4f6d-b3be-43265ccfcf54', 'cc0049dd-7de3-4ae4-8cbe-a3f61e60056d', 'Y', 'Yes', NULL, 10, TRUE, '{}', 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:53:45.117734'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_option_item (id, option_set_id, option_value, option_label, option_score, sort_order, is_active, metadata, create_by, update_by, create_at, update_at) VALUES ('d622be5a-2444-4340-b32a-0554d999ec15', 'a1dc2c5e-a690-4340-ad5a-3a7ae53510ed', '2_5', '2 to 5', NULL, 20, TRUE, '{}', 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:53:45.117734'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_option_item (id, option_set_id, option_value, option_label, option_score, sort_order, is_active, metadata, create_by, update_by, create_at, update_at) VALUES ('da8017c9-c7a1-4e5e-8a7f-32dad8d4b631', '65730701-b5f9-46e4-a839-18489c0a16d9', '20_50', '20 to 50', NULL, 30, TRUE, '{}', 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:53:45.117734'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_option_item (id, option_set_id, option_value, option_label, option_score, sort_order, is_active, metadata, create_by, update_by, create_at, update_at) VALUES ('dd1a145c-5987-4869-89ef-bb16f757f658', '65730701-b5f9-46e4-a839-18489c0a16d9', 'LE_5', '5 or fewer', NULL, 10, TRUE, '{}', 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:53:45.117734'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_option_item (id, option_set_id, option_value, option_label, option_score, sort_order, is_active, metadata, create_by, update_by, create_at, update_at) VALUES ('ddf7a12b-d5ea-4c68-8493-d0aeb7784525', '067532d5-c90b-41e9-8847-5a1e53aab13c', 'No', 'No', '0.000', 20, TRUE, '{}', 'migration_020', 'migration_020', '2026-06-22T18:51:07.389192'::TIMESTAMP, '2026-06-22T18:53:45.224499'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_option_item (id, option_set_id, option_value, option_label, option_score, sort_order, is_active, metadata, create_by, update_by, create_at, update_at) VALUES ('df6f02da-a684-4d18-bc00-804b6cd7541d', 'a1dc2c5e-a690-4340-ad5a-3a7ae53510ed', 'GT_50', 'More than 50', NULL, 50, TRUE, '{}', 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:53:45.117734'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_option_item (id, option_set_id, option_value, option_label, option_score, sort_order, is_active, metadata, create_by, update_by, create_at, update_at) VALUES ('e06080cf-9f21-40da-b6f5-f826dffa0079', '0bc73ce7-11c7-4f0a-8d3c-9c0f84b278eb', 'No', 'No', '0.000', 20, TRUE, '{}', 'migration_020', 'migration_020', '2026-06-22T18:51:07.389192'::TIMESTAMP, '2026-06-22T18:53:45.224499'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_option_item (id, option_set_id, option_value, option_label, option_score, sort_order, is_active, metadata, create_by, update_by, create_at, update_at) VALUES ('e08439aa-3ced-4e86-8bd8-98c468dc38ef', '79f32ff9-d7d2-4308-819e-67c74d3b9476', 'No', 'No', '0.000', 20, TRUE, '{}', 'migration_020', 'migration_020', '2026-06-22T18:51:07.389192'::TIMESTAMP, '2026-06-22T18:53:45.224499'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_option_item (id, option_set_id, option_value, option_label, option_score, sort_order, is_active, metadata, create_by, update_by, create_at, update_at) VALUES ('e124165d-6b72-4dfc-8943-770e22f53f4d', '91759be2-ad0f-491b-be26-92070b6f1c36', 'COMPLEX_LOGIC', 'Complex Logic System (Workflow / Rule Engine / Transaction Control)', NULL, 70, FALSE, '{}', 'migration_017', 'migration_018', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:53:45.186532'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_option_item (id, option_set_id, option_value, option_label, option_score, sort_order, is_active, metadata, create_by, update_by, create_at, update_at) VALUES ('f0f3af50-30ae-4d06-bc2a-a13ad93f1422', 'b1a46855-46ae-4dc2-b397-9c82ae163c10', 'Yes', 'Yes', '1.000', 10, TRUE, '{}', 'migration_020', 'migration_020', '2026-06-22T18:51:07.389192'::TIMESTAMP, '2026-06-22T18:53:45.224499'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_option_item (id, option_set_id, option_value, option_label, option_score, sort_order, is_active, metadata, create_by, update_by, create_at, update_at) VALUES ('f47971a8-8842-4987-b5e8-c36f8f622edf', 'eb84f8fd-3b4e-48fd-843d-0738e13dd9f8', 'Yes', 'Yes', '1.000', 10, TRUE, '{}', 'migration_020', 'migration_020', '2026-06-22T18:51:07.389192'::TIMESTAMP, '2026-06-22T18:53:45.224499'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_option_item (id, option_set_id, option_value, option_label, option_score, sort_order, is_active, metadata, create_by, update_by, create_at, update_at) VALUES ('fea988eb-6d3e-496f-9499-611f65370160', 'c6c8b6ca-7fc1-4396-b9dd-00de733dd31a', 'Yes', 'Yes', '10.000', 10, TRUE, '{}', 'migration_020', 'migration_020', '2026-06-22T18:51:07.389192'::TIMESTAMP, '2026-06-22T18:53:45.224499'::TIMESTAMP) ON CONFLICT DO NOTHING;
-- Table: eam.avdm_question_answer_concern_mapping
CREATE TABLE IF NOT EXISTS eam.avdm_question_answer_concern_mapping (
id UUID DEFAULT gen_random_uuid() PRIMARY KEY,
question_id UUID NOT NULL,
option_item_id UUID,
concern_id UUID NOT NULL,
match_operator VARCHAR NOT NULL DEFAULT 'equals'::character varying,
answer_value VARCHAR,
mapping_score NUMERIC NOT NULL DEFAULT 0,
severity NUMERIC,
likelihood NUMERIC,
hint_text text,
sort_order INTEGER NOT NULL DEFAULT 0,
is_active BOOLEAN NOT NULL DEFAULT true,
create_by VARCHAR NOT NULL DEFAULT 'system'::character varying,
update_by VARCHAR NOT NULL DEFAULT 'system'::character varying,
create_at TIMESTAMP NOT NULL DEFAULT now(),
update_at TIMESTAMP NOT NULL DEFAULT now()
);
-- Seed: eam.avdm_question_answer_concern_mapping (200 rows)
INSERT INTO eam.avdm_question_answer_concern_mapping (id, question_id, option_item_id, concern_id, match_operator, answer_value, mapping_score, severity, likelihood, hint_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('0041b132-1f3c-4ce1-bca3-ff61bc320ed4', 'fc6f72f5-6b16-4160-89ed-10a390ded5c9', NULL, '2ee0c84b-8b62-4733-a7c1-23756dd4a878', 'equals', 'Y', '8.000', NULL, NULL, 'Deployment topology | Data residency | Regulatory location', 40, TRUE, 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:51:06.967596'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_answer_concern_mapping (id, question_id, option_item_id, concern_id, match_operator, answer_value, mapping_score, severity, likelihood, hint_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('022b01b9-4983-44c6-aea7-d36b93b74c47', 'a72a0686-5c0f-4870-8886-ff9f92c56216', NULL, '38ca83cc-361b-4dce-8973-e67156a8d8d1', 'equals', 'Yes', '2.000', NULL, NULL, 'Assessment matrix: platform/domain dependency', 20, TRUE, 'migration_020', 'migration_020', '2026-06-22T18:51:07.389192'::TIMESTAMP, '2026-06-22T18:51:07.389192'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_answer_concern_mapping (id, question_id, option_item_id, concern_id, match_operator, answer_value, mapping_score, severity, likelihood, hint_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('04c41ba5-98e4-405a-abaa-c76a6ed21c1e', 'f001514d-4951-4aa3-8403-44328ad54c61', NULL, '3efe6823-5036-4d30-91d8-dfac1dd8d847', 'equals', 'personal', '5.000', '3.000', '3.000', NULL, 10, TRUE, 'migration_028', 'migration_028', '2026-06-24T11:30:56.408155'::TIMESTAMP, '2026-06-24T11:30:56.408155'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_answer_concern_mapping (id, question_id, option_item_id, concern_id, match_operator, answer_value, mapping_score, severity, likelihood, hint_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('0580d783-4502-4964-a387-63f17fffdc68', 'b170bbc8-308b-41c8-92d2-1d1624f71a63', NULL, '207c45e8-7e13-43a8-927f-b6e76c1ec5ab', 'equals', '4+', '7.000', '4.000', '4.000', NULL, 10, TRUE, 'migration_028', 'migration_028', '2026-06-24T11:30:56.408155'::TIMESTAMP, '2026-06-24T11:30:56.408155'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_answer_concern_mapping (id, question_id, option_item_id, concern_id, match_operator, answer_value, mapping_score, severity, likelihood, hint_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('08164e44-ce25-48df-8c64-4067903bda6a', '98024b59-c709-4270-8234-291633f197e5', NULL, 'a50b2934-a87b-44e1-a153-3d9407da3e3d', 'equals', 'Yes', '1.000', NULL, NULL, 'Assessment matrix: strategic priority', 20, TRUE, 'migration_020', 'migration_020', '2026-06-22T18:51:07.389192'::TIMESTAMP, '2026-06-22T18:51:07.389192'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_answer_concern_mapping (id, question_id, option_item_id, concern_id, match_operator, answer_value, mapping_score, severity, likelihood, hint_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('0a34a840-d27d-4d8f-bcce-922f648f8244', '894652b0-82ca-4649-849d-6d7466123230', NULL, '3e9d1504-b37a-4e94-abb3-7e142aeaf9b2', 'equals', 'Yes', '7.000', '5.000', '4.000', NULL, 10, TRUE, 'migration_028', 'migration_028', '2026-06-24T11:30:56.408155'::TIMESTAMP, '2026-06-24T11:30:56.408155'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_answer_concern_mapping (id, question_id, option_item_id, concern_id, match_operator, answer_value, mapping_score, severity, likelihood, hint_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('0aa093d5-1d6b-4bd5-b984-07deb885817b', 'fcff24b1-d48d-4e65-a5bf-6c7222eead7a', NULL, '28b57abf-5f74-431b-badf-739c32b7a898', 'equals', 'Yes', '5.000', '3.000', '3.000', NULL, 30, TRUE, 'migration_028', 'migration_028', '2026-06-24T11:30:56.408155'::TIMESTAMP, '2026-06-24T11:30:56.408155'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_answer_concern_mapping (id, question_id, option_item_id, concern_id, match_operator, answer_value, mapping_score, severity, likelihood, hint_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('0badc3ec-eec6-44c7-8d79-c84359187bbf', 'eedd3a88-ca35-4ed7-9b4e-2ca668b79e9c', NULL, '33fa7d86-f251-4dfd-b58a-1cb730a8218f', 'equals', 'Y', '8.000', NULL, NULL, 'Vendor dependency | Integration boundary | Identity federation', 50, TRUE, 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:51:06.967596'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_answer_concern_mapping (id, question_id, option_item_id, concern_id, match_operator, answer_value, mapping_score, severity, likelihood, hint_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('0ca48a5f-729d-4326-af72-69a88ef072cc', 'd7f72660-ce83-4c12-97c3-c95472fb797e', NULL, 'cdb6164a-9c95-4857-b20d-c5259ce2d130', 'equals', 'Yes', '1.000', NULL, NULL, 'Assessment matrix: business team commitment', 20, TRUE, 'migration_020', 'migration_020', '2026-06-22T18:51:07.389192'::TIMESTAMP, '2026-06-22T18:51:07.389192'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_answer_concern_mapping (id, question_id, option_item_id, concern_id, match_operator, answer_value, mapping_score, severity, likelihood, hint_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('0f15f9a4-eda8-47d2-a9c5-c41225ef3cd4', '9ba6c6ab-da87-4394-a7c9-bc7ba13ab1cd', NULL, 'b501e152-100e-47fd-99af-3a41377e54f8', 'equals', '4+', '7.000', '4.000', '4.000', NULL, 10, TRUE, 'migration_028', 'migration_028', '2026-06-24T11:30:56.408155'::TIMESTAMP, '2026-06-24T11:30:56.408155'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_answer_concern_mapping (id, question_id, option_item_id, concern_id, match_operator, answer_value, mapping_score, severity, likelihood, hint_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('0fd22bcd-10bd-4eb1-ab96-9a9e3d1a4470', '17c83dcb-afd8-400d-bf2d-1532d51431c2', NULL, 'bd5e1599-400f-4bcc-9386-a44e056d495a', 'equals', 'Y', '8.000', NULL, NULL, 'Model dependency | AI governance | Inference/data risk', 20, TRUE, 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:51:06.967596'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_answer_concern_mapping (id, question_id, option_item_id, concern_id, match_operator, answer_value, mapping_score, severity, likelihood, hint_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('1087d160-c7b2-4365-a028-80998a26dd50', '0b3669ba-6316-456e-9b9d-dc097d87b66e', NULL, '7e19731b-6f4c-49de-8af1-b2566ce8ae89', 'equals', '6+', '7.000', '4.000', '4.000', NULL, 20, TRUE, 'migration_028', 'migration_028', '2026-06-24T11:30:56.408155'::TIMESTAMP, '2026-06-24T11:30:56.408155'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_answer_concern_mapping (id, question_id, option_item_id, concern_id, match_operator, answer_value, mapping_score, severity, likelihood, hint_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('1113f0d1-2a8f-40a8-a042-9eb46e082165', 'a271f3a8-b3bb-413a-8b03-cfaf0f424197', NULL, '3827e763-ed52-440a-81fe-30e9cd10c279', 'equals', 'Y', '8.000', NULL, NULL, 'System interaction | Interface contract | Dependency map', 10, TRUE, 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:51:06.967596'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_answer_concern_mapping (id, question_id, option_item_id, concern_id, match_operator, answer_value, mapping_score, severity, likelihood, hint_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('1213007c-0994-4da5-9ce4-aae0531caf1f', 'eedd3a88-ca35-4ed7-9b4e-2ca668b79e9c', NULL, 'e0f38176-57f9-4c7f-8841-b224ab7c68ce', 'equals', 'Y', '8.000', NULL, NULL, 'Vendor dependency | Integration boundary | Identity federation', 30, TRUE, 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:51:06.967596'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_answer_concern_mapping (id, question_id, option_item_id, concern_id, match_operator, answer_value, mapping_score, severity, likelihood, hint_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('12c6a99a-e3fb-4db3-939e-097aa71786f0', '0b3669ba-6316-456e-9b9d-dc097d87b66e', NULL, '7e19731b-6f4c-49de-8af1-b2566ce8ae89', 'equals', '3-5', '5.000', '3.000', '3.000', NULL, 20, TRUE, 'migration_028', 'migration_028', '2026-06-24T11:30:56.408155'::TIMESTAMP, '2026-06-24T11:30:56.408155'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_answer_concern_mapping (id, question_id, option_item_id, concern_id, match_operator, answer_value, mapping_score, severity, likelihood, hint_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('130309ca-c826-4d95-983c-b879cd70c008', '6c7bfe77-8d16-478f-8bff-eb9de2b9f230', NULL, 'e0f38176-57f9-4c7f-8841-b224ab7c68ce', 'equals', 'Yes', '2.000', NULL, NULL, 'Assessment matrix: solution dependency complexity', 20, TRUE, 'migration_020', 'migration_020', '2026-06-22T18:51:07.389192'::TIMESTAMP, '2026-06-22T18:51:07.389192'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_answer_concern_mapping (id, question_id, option_item_id, concern_id, match_operator, answer_value, mapping_score, severity, likelihood, hint_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('147bcb06-7aba-4bb5-8e37-f62adb727f5d', '2b202d1c-4fde-4bbf-b0b0-8e019d056018', NULL, 'e0f38176-57f9-4c7f-8841-b224ab7c68ce', 'equals', 'Y', '8.000', NULL, NULL, 'Reuse boundary | Shared service governance | Change blast radius', 30, TRUE, 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:51:06.967596'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_answer_concern_mapping (id, question_id, option_item_id, concern_id, match_operator, answer_value, mapping_score, severity, likelihood, hint_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('15472fbc-206c-45e3-bfd3-6f5039a0727c', 'b5bd3105-e695-4b7e-96b2-8973efc51c7d', NULL, '40648691-6e25-4026-aff2-14e8803094fe', 'equals', 'Y', '8.000', NULL, NULL, 'Framework governance | Technology risk | Supportability', 30, TRUE, 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:51:06.967596'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_answer_concern_mapping (id, question_id, option_item_id, concern_id, match_operator, answer_value, mapping_score, severity, likelihood, hint_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('162fb1db-3f1e-49d8-a183-0ce2ad83e538', 'd7f72660-ce83-4c12-97c3-c95472fb797e', NULL, 'e52325d3-1109-4c83-8ff7-7337cf27bb80', 'equals', 'Yes', '1.000', NULL, NULL, 'Assessment matrix: business team commitment', 10, TRUE, 'migration_020', 'migration_020', '2026-06-22T18:51:07.389192'::TIMESTAMP, '2026-06-22T18:51:07.389192'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_answer_concern_mapping (id, question_id, option_item_id, concern_id, match_operator, answer_value, mapping_score, severity, likelihood, hint_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('18baa02f-fd89-40f8-a775-a825042b4b81', 'fc6f72f5-6b16-4160-89ed-10a390ded5c9', NULL, '207c45e8-7e13-43a8-927f-b6e76c1ec5ab', 'equals', 'Y', '8.000', NULL, NULL, 'Deployment topology | Data residency | Regulatory location', 30, TRUE, 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:51:06.967596'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_answer_concern_mapping (id, question_id, option_item_id, concern_id, match_operator, answer_value, mapping_score, severity, likelihood, hint_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('19088a1b-18d4-449d-803b-03b434b06d66', '0ce83598-0ad8-4fa9-9e72-e87656ecfafa', NULL, '40648691-6e25-4026-aff2-14e8803094fe', 'equals', 'Y', '8.000', NULL, NULL, 'Technology exception | Risk acceptance | Security review', 30, TRUE, 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:51:06.967596'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_answer_concern_mapping (id, question_id, option_item_id, concern_id, match_operator, answer_value, mapping_score, severity, likelihood, hint_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('1c11186b-0659-474f-8494-2c475826c197', '49efaff1-0bfc-4d5a-afb3-060fedfaa28a', NULL, '1cbe8c0e-c9d4-4119-88f2-3a00498d0876', 'equals', 'Y', '8.000', NULL, NULL, 'Channel architecture | Mobile runtime | External exposure', 20, TRUE, 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:51:06.967596'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_answer_concern_mapping (id, question_id, option_item_id, concern_id, match_operator, answer_value, mapping_score, severity, likelihood, hint_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('1c2be2d6-5460-40ab-93a0-913f37335d47', 'c5789d85-6c23-40a0-a901-f0955a3da330', NULL, '7a454779-a4bd-4c9d-9f02-dc0774f78ec5', 'equals', 'Y', '8.000', NULL, NULL, 'Scalability | Commercial dependency | Capacity planning', 10, TRUE, 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:51:06.967596'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_answer_concern_mapping (id, question_id, option_item_id, concern_id, match_operator, answer_value, mapping_score, severity, likelihood, hint_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('1e475e09-1da6-44c0-9c7b-fd37d31aede8', '2ae91adf-3517-488a-8b94-594503196751', NULL, '38ca83cc-361b-4dce-8973-e67156a8d8d1', 'equals', 'Y', '8.000', NULL, NULL, 'Legacy transition | Service refactoring | Backward compatibility', 40, TRUE, 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:51:06.967596'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_answer_concern_mapping (id, question_id, option_item_id, concern_id, match_operator, answer_value, mapping_score, severity, likelihood, hint_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('225a303d-cf20-41c5-9479-47c914ac2462', '8afc058c-f2bb-4b1e-b36e-d9a0dbf4ffb0', NULL, '38ca83cc-361b-4dce-8973-e67156a8d8d1', 'equals', 'Y', '8.000', NULL, NULL, 'Protocol compatibility | Network design | Observability', 30, TRUE, 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:51:06.967596'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_answer_concern_mapping (id, question_id, option_item_id, concern_id, match_operator, answer_value, mapping_score, severity, likelihood, hint_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('243e6e5e-4103-4570-b222-a4a1987d3848', 'eedd3a88-ca35-4ed7-9b4e-2ca668b79e9c', NULL, 'd4afd8ac-cb51-459d-887d-128eef4f23a5', 'equals', 'Y', '8.000', NULL, NULL, 'Vendor dependency | Integration boundary | Identity federation', 10, TRUE, 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:51:06.967596'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_answer_concern_mapping (id, question_id, option_item_id, concern_id, match_operator, answer_value, mapping_score, severity, likelihood, hint_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('258a4095-3e66-4180-9d95-747ef9de9d6d', 'fc6f72f5-6b16-4160-89ed-10a390ded5c9', NULL, '9dfed160-c657-4192-b65f-cc60729bb1e0', 'equals', 'Y', '8.000', NULL, NULL, 'Deployment topology | Data residency | Regulatory location', 50, TRUE, 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:51:06.967596'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_answer_concern_mapping (id, question_id, option_item_id, concern_id, match_operator, answer_value, mapping_score, severity, likelihood, hint_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('273f64fa-c87b-494a-8841-ca5107016fa8', '9ba6c6ab-da87-4394-a7c9-bc7ba13ab1cd', NULL, 'b501e152-100e-47fd-99af-3a41377e54f8', 'equals', '1', '3.000', '2.000', '2.000', NULL, 10, TRUE, 'migration_028', 'migration_028', '2026-06-24T11:30:56.408155'::TIMESTAMP, '2026-06-24T11:30:56.408155'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_answer_concern_mapping (id, question_id, option_item_id, concern_id, match_operator, answer_value, mapping_score, severity, likelihood, hint_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('286fd07d-b6d3-4351-99c1-39e9c0e26582', 'c6e04053-091b-4a54-b4e4-377bbf1b7cd0', NULL, 'b7751257-c599-4291-a108-43690f98bfcb', 'equals', 'Y', '8.000', NULL, NULL, 'Application boundary | Container/service decomposition | Ownership', 60, TRUE, 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:51:06.967596'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_answer_concern_mapping (id, question_id, option_item_id, concern_id, match_operator, answer_value, mapping_score, severity, likelihood, hint_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('297a6608-ff09-44e7-b6fd-03dceac38c96', 'a64b8e75-e77f-4f4f-a558-a731886248d3', NULL, 'cdb6164a-9c95-4857-b20d-c5259ce2d130', 'equals', 'Y', '8.000', NULL, NULL, 'Application lifecycle | Migration path | Dependency retirement', 40, TRUE, 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:51:06.967596'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_answer_concern_mapping (id, question_id, option_item_id, concern_id, match_operator, answer_value, mapping_score, severity, likelihood, hint_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('2ad4e8da-9d4d-4ae1-8a40-2b738224d5b0', 'c5789d85-6c23-40a0-a901-f0955a3da330', NULL, 'ccf8abd3-3794-4c3b-8f30-6d72d8b29815', 'equals', 'Y', '8.000', NULL, NULL, 'Scalability | Commercial dependency | Capacity planning', 20, TRUE, 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:51:06.967596'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_answer_concern_mapping (id, question_id, option_item_id, concern_id, match_operator, answer_value, mapping_score, severity, likelihood, hint_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('2e7789bd-ee90-4dd5-b1c4-7a5c43d24e46', '362e9819-bfbe-4a4c-a102-ebe6e75f10a3', NULL, '7a454779-a4bd-4c9d-9f02-dc0774f78ec5', 'equals', 'Y', '8.000', NULL, NULL, 'Platform architecture | Middleware dependency | Operational support', 30, TRUE, 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:51:06.967596'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_answer_concern_mapping (id, question_id, option_item_id, concern_id, match_operator, answer_value, mapping_score, severity, likelihood, hint_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('2f395ae7-b761-49d4-8555-dbbde5a99d31', 'a2db67bc-d604-4af6-853c-00067479a383', NULL, 'd907b90d-a1ad-46a5-b24d-164181c8ac12', 'equals', 'Y', '8.000', NULL, NULL, 'Authorization control | Access governance | Control traceability', 10, TRUE, 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:51:06.967596'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_answer_concern_mapping (id, question_id, option_item_id, concern_id, match_operator, answer_value, mapping_score, severity, likelihood, hint_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('3177c8d0-bd6a-40ae-9e5b-1ddb06ffc6d0', '6b6069f1-20e1-4406-86ef-1c3424b3d27a', NULL, '28b57abf-5f74-431b-badf-739c32b7a898', 'equals', 'Y', '8.000', NULL, NULL, 'Client architecture | Release governance | Security boundary', 30, TRUE, 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:51:06.967596'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_answer_concern_mapping (id, question_id, option_item_id, concern_id, match_operator, answer_value, mapping_score, severity, likelihood, hint_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('31b895d2-8097-4d1d-991a-2e8d212981f1', 'fcdf4619-69c5-4400-9d32-9bd66e9e93d3', NULL, '11ef6f1d-b005-4469-be15-14a516e1620a', 'equals', 'Yes', '3.000', NULL, NULL, 'Assessment matrix: solution option dependency', 20, TRUE, 'migration_020', 'migration_020', '2026-06-22T18:51:07.389192'::TIMESTAMP, '2026-06-22T18:51:07.389192'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_answer_concern_mapping (id, question_id, option_item_id, concern_id, match_operator, answer_value, mapping_score, severity, likelihood, hint_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('31bebd16-7749-48f9-b2a0-307643bd5469', '989c3e69-f5fc-46af-90b9-c13bd8e6822a', NULL, '9dfed160-c657-4192-b65f-cc60729bb1e0', 'equals', 'Yes', '2.000', NULL, NULL, 'Assessment matrix: security impact', 20, TRUE, 'migration_020', 'migration_020', '2026-06-22T18:51:07.389192'::TIMESTAMP, '2026-06-22T18:51:07.389192'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_answer_concern_mapping (id, question_id, option_item_id, concern_id, match_operator, answer_value, mapping_score, severity, likelihood, hint_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('3859f547-3999-4080-a4e0-31b163b446ac', 'c6e04053-091b-4a54-b4e4-377bbf1b7cd0', NULL, '48dfc8fd-540f-4aab-8664-ade612687973', 'equals', 'Y', '8.000', NULL, NULL, 'Application boundary | Container/service decomposition | Ownership', 40, TRUE, 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:51:06.967596'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_answer_concern_mapping (id, question_id, option_item_id, concern_id, match_operator, answer_value, mapping_score, severity, likelihood, hint_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('392263af-aa49-4f03-9b03-4d18add18989', 'b7fc4022-485d-450d-8076-673b288b55d0', NULL, 'b7751257-c599-4291-a108-43690f98bfcb', 'equals', '1-2', '3.000', '2.000', '2.000', NULL, 10, TRUE, 'migration_028', 'migration_028', '2026-06-24T11:30:56.408155'::TIMESTAMP, '2026-06-24T11:30:56.408155'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_answer_concern_mapping (id, question_id, option_item_id, concern_id, match_operator, answer_value, mapping_score, severity, likelihood, hint_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('39ae01ae-4ff7-497f-ba4b-1cdaec3b41b4', 'e2e4390e-ef54-4ccc-9486-d78108be4670', NULL, '3e9d1504-b37a-4e94-abb3-7e142aeaf9b2', 'equals', 'Yes', '6.000', '4.000', '3.000', NULL, 20, TRUE, 'migration_028', 'migration_028', '2026-06-24T11:30:56.408155'::TIMESTAMP, '2026-06-24T11:30:56.408155'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_answer_concern_mapping (id, question_id, option_item_id, concern_id, match_operator, answer_value, mapping_score, severity, likelihood, hint_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('3be6c837-c3f5-4419-ae3f-f0ddeb986866', '0b82ff82-b866-4a0c-a3b0-4071b59c6b1b', NULL, '28b57abf-5f74-431b-badf-739c32b7a898', 'equals', 'Yes', '10.000', NULL, NULL, 'Assessment matrix: architecture impact', 30, TRUE, 'migration_020', 'migration_020', '2026-06-22T18:51:07.389192'::TIMESTAMP, '2026-06-22T18:51:07.389192'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_answer_concern_mapping (id, question_id, option_item_id, concern_id, match_operator, answer_value, mapping_score, severity, likelihood, hint_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('3e35e371-0b7a-4bc3-b6b7-43afd72d8e55', 'c6e04053-091b-4a54-b4e4-377bbf1b7cd0', NULL, 'ef915c8b-811d-47ff-a417-35c7568ed117', 'equals', 'Y', '8.000', NULL, NULL, 'Application boundary | Container/service decomposition | Ownership', 70, TRUE, 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:51:06.967596'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_answer_concern_mapping (id, question_id, option_item_id, concern_id, match_operator, answer_value, mapping_score, severity, likelihood, hint_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('3f828bcc-5ce5-47a1-b0c9-5b71583bd41f', 'b7fc4022-485d-450d-8076-673b288b55d0', NULL, 'b7751257-c599-4291-a108-43690f98bfcb', 'equals', '3-5', '5.000', '3.000', '3.000', NULL, 10, TRUE, 'migration_028', 'migration_028', '2026-06-24T11:30:56.408155'::TIMESTAMP, '2026-06-24T11:30:56.408155'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_answer_concern_mapping (id, question_id, option_item_id, concern_id, match_operator, answer_value, mapping_score, severity, likelihood, hint_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('3fc73a3f-77ad-4405-9a5d-97ae277dd937', '2e8afab2-3a05-4183-983d-937ea2caf0b9', NULL, '33fa7d86-f251-4dfd-b58a-1cb730a8218f', 'equals', 'Yes', '6.000', '4.000', '3.000', NULL, 30, TRUE, 'migration_028', 'migration_028', '2026-06-24T11:30:56.408155'::TIMESTAMP, '2026-06-24T11:30:56.408155'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_answer_concern_mapping (id, question_id, option_item_id, concern_id, match_operator, answer_value, mapping_score, severity, likelihood, hint_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('41733c8e-07bb-49f4-a902-d0a628f2d72b', 'b33b2b45-53f8-41a6-aace-b8c259a8de9a', NULL, 'b7751257-c599-4291-a108-43690f98bfcb', 'equals', 'Y', '8.000', NULL, NULL, 'Technology standardization | Runtime support | Maintainability', 10, TRUE, 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:51:06.967596'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_answer_concern_mapping (id, question_id, option_item_id, concern_id, match_operator, answer_value, mapping_score, severity, likelihood, hint_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('422e9d8a-3c5f-4586-b31a-a506dc39aa5d', '49efaff1-0bfc-4d5a-afb3-060fedfaa28a', NULL, 'b501e152-100e-47fd-99af-3a41377e54f8', 'equals', 'Y', '8.000', NULL, NULL, 'Channel architecture | Mobile runtime | External exposure', 40, TRUE, 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:51:06.967596'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_answer_concern_mapping (id, question_id, option_item_id, concern_id, match_operator, answer_value, mapping_score, severity, likelihood, hint_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('4897e41d-6de5-466e-94c1-32606641afe4', 'aea44852-ae3a-436b-8942-1c8605d19de3', NULL, 'f2fa6488-c455-4103-85ef-993d180b2baf', 'equals', 'Yes', '5.000', '3.000', '3.000', NULL, 20, TRUE, 'migration_028', 'migration_028', '2026-06-24T11:30:56.408155'::TIMESTAMP, '2026-06-24T11:30:56.408155'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_answer_concern_mapping (id, question_id, option_item_id, concern_id, match_operator, answer_value, mapping_score, severity, likelihood, hint_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('4b27d74d-2bb2-4d79-9856-7ad1b321d4b7', '0b82ff82-b866-4a0c-a3b0-4071b59c6b1b', NULL, 'd4afd8ac-cb51-459d-887d-128eef4f23a5', 'equals', 'Yes', '10.000', NULL, NULL, 'Assessment matrix: architecture impact', 20, TRUE, 'migration_020', 'migration_020', '2026-06-22T18:51:07.389192'::TIMESTAMP, '2026-06-22T18:51:07.389192'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_answer_concern_mapping (id, question_id, option_item_id, concern_id, match_operator, answer_value, mapping_score, severity, likelihood, hint_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('4b38272d-cc2f-4fce-9a02-4e5d7de7bf8d', 'a64b8e75-e77f-4f4f-a558-a731886248d3', NULL, 'bd5e1599-400f-4bcc-9386-a44e056d495a', 'equals', 'Y', '8.000', NULL, NULL, 'Application lifecycle | Migration path | Dependency retirement', 20, TRUE, 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:51:06.967596'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_answer_concern_mapping (id, question_id, option_item_id, concern_id, match_operator, answer_value, mapping_score, severity, likelihood, hint_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('4d82221d-f118-4668-972d-4bcdc04d70c7', '9004697e-ece3-4c75-980b-2ff2dd331c52', NULL, 'e092f5e0-16f3-47f3-8343-bd77d8967788', 'equals', 'Y', '8.000', NULL, NULL, 'Data flow | Lineage | Semantic consistency', 40, TRUE, 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:51:06.967596'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_answer_concern_mapping (id, question_id, option_item_id, concern_id, match_operator, answer_value, mapping_score, severity, likelihood, hint_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('4dca2d2b-4d7c-422b-a588-17edae5f22c0', '0b3669ba-6316-456e-9b9d-dc097d87b66e', NULL, 'e0f38176-57f9-4c7f-8841-b224ab7c68ce', 'equals', '3-5', '5.000', '3.000', '3.000', NULL, 10, TRUE, 'migration_028', 'migration_028', '2026-06-24T11:30:56.408155'::TIMESTAMP, '2026-06-24T11:30:56.408155'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_answer_concern_mapping (id, question_id, option_item_id, concern_id, match_operator, answer_value, mapping_score, severity, likelihood, hint_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('4e011030-1844-47cb-adfb-21157eb5d5c2', '3656cee1-8bfa-46e4-89ec-932b1a9148bb', NULL, 'a50b2934-a87b-44e1-a153-3d9407da3e3d', 'equals', 'Yes', '3.000', NULL, NULL, 'Assessment matrix: delivery timeline complexity', 10, TRUE, 'migration_020', 'migration_020', '2026-06-22T18:51:07.389192'::TIMESTAMP, '2026-06-22T18:51:07.389192'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_answer_concern_mapping (id, question_id, option_item_id, concern_id, match_operator, answer_value, mapping_score, severity, likelihood, hint_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('4efd05db-b867-407c-80b4-b50809f38612', '9ba6c6ab-da87-4394-a7c9-bc7ba13ab1cd', NULL, 'b501e152-100e-47fd-99af-3a41377e54f8', 'equals', '2-3', '5.000', '3.000', '3.000', NULL, 10, TRUE, 'migration_028', 'migration_028', '2026-06-24T11:30:56.408155'::TIMESTAMP, '2026-06-24T11:30:56.408155'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_answer_concern_mapping (id, question_id, option_item_id, concern_id, match_operator, answer_value, mapping_score, severity, likelihood, hint_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('4f1fa7c9-d2bc-4c3d-b2bf-4792ae5721e3', '7b69daa8-a783-4bb7-a901-470164bebec3', NULL, '11ef6f1d-b005-4469-be15-14a516e1620a', 'equals', '4-6', '5.000', '3.000', '3.000', NULL, 20, TRUE, 'migration_028', 'migration_028', '2026-06-24T11:30:56.408155'::TIMESTAMP, '2026-06-24T11:30:56.408155'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_answer_concern_mapping (id, question_id, option_item_id, concern_id, match_operator, answer_value, mapping_score, severity, likelihood, hint_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('5043d9d4-3799-4dce-b1c4-e737d44fafd3', 'b7fc4022-485d-450d-8076-673b288b55d0', NULL, 'be1af365-bc9c-4678-a0e1-18aa5eb3dc9a', 'equals', '3-5', '5.000', '3.000', '3.000', NULL, 20, TRUE, 'migration_028', 'migration_028', '2026-06-24T11:30:56.408155'::TIMESTAMP, '2026-06-24T11:30:56.408155'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_answer_concern_mapping (id, question_id, option_item_id, concern_id, match_operator, answer_value, mapping_score, severity, likelihood, hint_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('512958d0-b450-4699-a413-7aee4a18c71d', 'cbc4531c-5a4b-49fc-9f52-9e26853b11b8', NULL, 'ce132670-3e9a-4606-a407-291eff16446e', 'equals', 'Y', '8.000', NULL, NULL, 'Identity architecture | SSO boundary | Compliance impact', 10, TRUE, 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:51:06.967596'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_answer_concern_mapping (id, question_id, option_item_id, concern_id, match_operator, answer_value, mapping_score, severity, likelihood, hint_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('518f16b1-86ae-4090-b884-512172c6565b', 'c5789d85-6c23-40a0-a901-f0955a3da330', NULL, 'a50b2934-a87b-44e1-a153-3d9407da3e3d', 'equals', 'Y', '8.000', NULL, NULL, 'Scalability | Commercial dependency | Capacity planning', 30, TRUE, 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:51:06.967596'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_answer_concern_mapping (id, question_id, option_item_id, concern_id, match_operator, answer_value, mapping_score, severity, likelihood, hint_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('51c81bd1-5077-46bc-bcd0-cb98b295f606', 'e2e4390e-ef54-4ccc-9486-d78108be4670', NULL, '3efe6823-5036-4d30-91d8-dfac1dd8d847', 'equals', 'Yes', '7.000', '5.000', '4.000', NULL, 10, TRUE, 'migration_028', 'migration_028', '2026-06-24T11:30:56.408155'::TIMESTAMP, '2026-06-24T11:30:56.408155'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_answer_concern_mapping (id, question_id, option_item_id, concern_id, match_operator, answer_value, mapping_score, severity, likelihood, hint_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('51d65c0f-9ddd-4947-8a46-89ef1e742961', '6b6069f1-20e1-4406-86ef-1c3424b3d27a', NULL, 'b501e152-100e-47fd-99af-3a41377e54f8', 'equals', 'Y', '8.000', NULL, NULL, 'Client architecture | Release governance | Security boundary', 40, TRUE, 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:51:06.967596'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_answer_concern_mapping (id, question_id, option_item_id, concern_id, match_operator, answer_value, mapping_score, severity, likelihood, hint_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('51f326e9-d09f-479c-8bdf-5f228a8c52db', '0c825395-7258-4684-a6a4-06f5561c0672', NULL, '33fa7d86-f251-4dfd-b58a-1cb730a8218f', 'equals', 'Yes', '8.000', '5.000', '5.000', NULL, 10, TRUE, 'migration_028', 'migration_028', '2026-06-24T11:30:56.408155'::TIMESTAMP, '2026-06-24T11:30:56.408155'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_answer_concern_mapping (id, question_id, option_item_id, concern_id, match_operator, answer_value, mapping_score, severity, likelihood, hint_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('543bcfa1-49d6-4830-a9a7-11e13bf36606', '0b3669ba-6316-456e-9b9d-dc097d87b66e', NULL, 'e0f38176-57f9-4c7f-8841-b224ab7c68ce', 'equals', '1-2', '3.000', '2.000', '2.000', NULL, 10, TRUE, 'migration_028', 'migration_028', '2026-06-24T11:30:56.408155'::TIMESTAMP, '2026-06-24T11:30:56.408155'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_answer_concern_mapping (id, question_id, option_item_id, concern_id, match_operator, answer_value, mapping_score, severity, likelihood, hint_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('55f3d108-081f-46d7-ba3a-58addb34d75c', '700b260e-61fd-46c6-aacd-0d0c43a8b0ce', NULL, '28504628-97c3-432d-8a6a-78517e288efd', 'equals', 'Y', '8.000', NULL, NULL, 'Privacy scope | Data classification | Protection controls', 40, TRUE, 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:51:06.967596'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_answer_concern_mapping (id, question_id, option_item_id, concern_id, match_operator, answer_value, mapping_score, severity, likelihood, hint_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('56e8c62a-3838-45b7-b9fb-d7d9bfe09669', '2ae91adf-3517-488a-8b94-594503196751', NULL, 'cdb6164a-9c95-4857-b20d-c5259ce2d130', 'equals', 'Y', '8.000', NULL, NULL, 'Legacy transition | Service refactoring | Backward compatibility', 50, TRUE, 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:51:06.967596'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_answer_concern_mapping (id, question_id, option_item_id, concern_id, match_operator, answer_value, mapping_score, severity, likelihood, hint_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('5759d095-ec90-4881-a5fb-63569f4d4d76', 'c6e04053-091b-4a54-b4e4-377bbf1b7cd0', NULL, 'd4afd8ac-cb51-459d-887d-128eef4f23a5', 'equals', 'Y', '8.000', NULL, NULL, 'Application boundary | Container/service decomposition | Ownership', 10, TRUE, 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:51:06.967596'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_answer_concern_mapping (id, question_id, option_item_id, concern_id, match_operator, answer_value, mapping_score, severity, likelihood, hint_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('57a0119e-a406-4a1d-aff0-da08b87f817c', 'a2db67bc-d604-4af6-853c-00067479a383', NULL, '9dfed160-c657-4192-b65f-cc60729bb1e0', 'equals', 'Y', '8.000', NULL, NULL, 'Authorization control | Access governance | Control traceability', 20, TRUE, 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:51:06.967596'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_answer_concern_mapping (id, question_id, option_item_id, concern_id, match_operator, answer_value, mapping_score, severity, likelihood, hint_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('58166758-3566-40d9-9409-b323c9337c8f', '7b69daa8-a783-4bb7-a901-470164bebec3', NULL, '11ef6f1d-b005-4469-be15-14a516e1620a', 'equals', '1-3', '3.000', '2.000', '2.000', NULL, 20, TRUE, 'migration_028', 'migration_028', '2026-06-24T11:30:56.408155'::TIMESTAMP, '2026-06-24T11:30:56.408155'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_answer_concern_mapping (id, question_id, option_item_id, concern_id, match_operator, answer_value, mapping_score, severity, likelihood, hint_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('583c4a40-75f5-44d2-9195-8d246b4c2625', '49efaff1-0bfc-4d5a-afb3-060fedfaa28a', NULL, 'd4afd8ac-cb51-459d-887d-128eef4f23a5', 'equals', 'Y', '8.000', NULL, NULL, 'Channel architecture | Mobile runtime | External exposure', 10, TRUE, 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:51:06.967596'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_answer_concern_mapping (id, question_id, option_item_id, concern_id, match_operator, answer_value, mapping_score, severity, likelihood, hint_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('584717bf-bc7b-4609-9d7b-04acbc5c1459', '7b65890a-8131-4083-b026-59a68049529d', NULL, 'b7751257-c599-4291-a108-43690f98bfcb', 'equals', 'Yes', '1.000', NULL, NULL, 'Assessment matrix: solution technology fit', 10, TRUE, 'migration_020', 'migration_020', '2026-06-22T18:51:07.389192'::TIMESTAMP, '2026-06-22T18:51:07.389192'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_answer_concern_mapping (id, question_id, option_item_id, concern_id, match_operator, answer_value, mapping_score, severity, likelihood, hint_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('584c24a7-ba60-4f00-9125-761673a31a7d', '3caa4539-0192-4507-ad9e-67154ea9d633', NULL, 'cdb6164a-9c95-4857-b20d-c5259ce2d130', 'equals', 'Y', '8.000', NULL, NULL, 'Business capability | Business process | Stakeholder alignment', 40, TRUE, 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:51:06.967596'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_answer_concern_mapping (id, question_id, option_item_id, concern_id, match_operator, answer_value, mapping_score, severity, likelihood, hint_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('585f94ba-94cb-46bc-afaa-e6831b2a9576', '7b69daa8-a783-4bb7-a901-470164bebec3', NULL, '11ef6f1d-b005-4469-be15-14a516e1620a', 'equals', '7+', '7.000', '4.000', '4.000', NULL, 20, TRUE, 'migration_028', 'migration_028', '2026-06-24T11:30:56.408155'::TIMESTAMP, '2026-06-24T11:30:56.408155'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_answer_concern_mapping (id, question_id, option_item_id, concern_id, match_operator, answer_value, mapping_score, severity, likelihood, hint_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('58bff709-84ac-42b9-984d-ce717f85388b', '0b71ea36-5250-4ee0-8f01-d6f5202d7b99', NULL, '0a56429c-278f-4160-99a3-75d7e1b91e09', 'equals', 'Yes', '6.000', '4.000', '3.000', NULL, 20, TRUE, 'migration_028', 'migration_028', '2026-06-24T11:30:56.408155'::TIMESTAMP, '2026-06-24T11:30:56.408155'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_answer_concern_mapping (id, question_id, option_item_id, concern_id, match_operator, answer_value, mapping_score, severity, likelihood, hint_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('5b206bc6-2ce8-49a4-a262-ea77091812bf', 'e1b8822b-d552-442a-a71f-223544c6df09', NULL, 'f2fa6488-c455-4103-85ef-993d180b2baf', 'equals', 'Y', '8.000', NULL, NULL, 'Service authentication | Token flow | Security control', 30, TRUE, 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:51:06.967596'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_answer_concern_mapping (id, question_id, option_item_id, concern_id, match_operator, answer_value, mapping_score, severity, likelihood, hint_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('5b975356-d771-4520-9ed9-cd29c9238b87', 'e1b8822b-d552-442a-a71f-223544c6df09', NULL, '3e9d1504-b37a-4e94-abb3-7e142aeaf9b2', 'equals', 'Y', '8.000', NULL, NULL, 'Service authentication | Token flow | Security control', 20, TRUE, 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:51:06.967596'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_answer_concern_mapping (id, question_id, option_item_id, concern_id, match_operator, answer_value, mapping_score, severity, likelihood, hint_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('613d3c6e-138a-4060-9735-5d9f3fe461b5', 'c6e04053-091b-4a54-b4e4-377bbf1b7cd0', NULL, '1cbe8c0e-c9d4-4119-88f2-3a00498d0876', 'equals', 'Y', '8.000', NULL, NULL, 'Application boundary | Container/service decomposition | Ownership', 20, TRUE, 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:51:06.967596'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_answer_concern_mapping (id, question_id, option_item_id, concern_id, match_operator, answer_value, mapping_score, severity, likelihood, hint_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('61e45b9a-bf79-417f-94d4-66f431a01ceb', '92af3d9e-01ca-41df-ad7d-4a0a0f29264c', NULL, '2fdc5548-aae8-4073-a863-177d95264e9d', 'equals', 'Y', '8.000', NULL, NULL, 'Toolchain governance | Delivery pipeline | Ops enablement', 30, TRUE, 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:51:06.967596'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_answer_concern_mapping (id, question_id, option_item_id, concern_id, match_operator, answer_value, mapping_score, severity, likelihood, hint_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('6403575f-778c-47de-9f14-d6f602f8b8b0', '92af3d9e-01ca-41df-ad7d-4a0a0f29264c', NULL, 'ef915c8b-811d-47ff-a417-35c7568ed117', 'equals', 'Y', '8.000', NULL, NULL, 'Toolchain governance | Delivery pipeline | Ops enablement', 20, TRUE, 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:51:06.967596'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_answer_concern_mapping (id, question_id, option_item_id, concern_id, match_operator, answer_value, mapping_score, severity, likelihood, hint_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('66d210a9-3d4b-4b45-8c29-1c0f2bdcd5a2', '5e8f103b-308b-4f7b-bfc0-bcc783a6c373', NULL, 'ccf8abd3-3794-4c3b-8f30-6d72d8b29815', 'equals', 'Yes', '3.000', NULL, NULL, 'Assessment matrix: funding scale', 20, TRUE, 'migration_020', 'migration_020', '2026-06-22T18:51:07.389192'::TIMESTAMP, '2026-06-22T18:51:07.389192'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_answer_concern_mapping (id, question_id, option_item_id, concern_id, match_operator, answer_value, mapping_score, severity, likelihood, hint_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('69e265f9-4c77-4640-970c-577068c96307', '8a7b2a38-8942-4d75-b31b-f79e03f6d113', NULL, '207c45e8-7e13-43a8-927f-b6e76c1ec5ab', 'equals', 'Y', '8.000', NULL, NULL, 'External interface | Security boundary | Trust zone', 30, TRUE, 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:51:06.967596'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_answer_concern_mapping (id, question_id, option_item_id, concern_id, match_operator, answer_value, mapping_score, severity, likelihood, hint_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('6a462411-04b6-4fff-9c6f-24a165ac0f0b', 'b5bd3105-e695-4b7e-96b2-8973efc51c7d', NULL, '11ef6f1d-b005-4469-be15-14a516e1620a', 'equals', 'Y', '8.000', NULL, NULL, 'Framework governance | Technology risk | Supportability', 10, TRUE, 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:51:06.967596'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_answer_concern_mapping (id, question_id, option_item_id, concern_id, match_operator, answer_value, mapping_score, severity, likelihood, hint_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('6d8d4fb8-45e7-498a-9dc6-f4c3a6677ace', '17c83dcb-afd8-400d-bf2d-1532d51431c2', NULL, 'bf6048e2-2604-4d23-a2fa-aa3afae283b5', 'equals', 'Y', '8.000', NULL, NULL, 'Model dependency | AI governance | Inference/data risk', 10, TRUE, 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:51:06.967596'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_answer_concern_mapping (id, question_id, option_item_id, concern_id, match_operator, answer_value, mapping_score, severity, likelihood, hint_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('6f20da98-eeca-4999-b3bb-453b43027b80', 'd6293d19-48ec-47f5-bbb9-3d3d30530fe9', NULL, '7a454779-a4bd-4c9d-9f02-dc0774f78ec5', 'equals', 'Yes', '3.000', NULL, NULL, 'Assessment matrix: resource scale', 20, TRUE, 'migration_020', 'migration_020', '2026-06-22T18:51:07.389192'::TIMESTAMP, '2026-06-22T18:51:07.389192'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_answer_concern_mapping (id, question_id, option_item_id, concern_id, match_operator, answer_value, mapping_score, severity, likelihood, hint_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('6f43c4cb-d8ea-4c74-9299-6beddbbebd47', '6b6069f1-20e1-4406-86ef-1c3424b3d27a', NULL, '33fa7d86-f251-4dfd-b58a-1cb730a8218f', 'equals', 'Y', '8.000', NULL, NULL, 'Client architecture | Release governance | Security boundary', 60, TRUE, 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:51:06.967596'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_answer_concern_mapping (id, question_id, option_item_id, concern_id, match_operator, answer_value, mapping_score, severity, likelihood, hint_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('70500b8e-e6ca-4912-a6cf-c439b7fd439f', '0b3669ba-6316-456e-9b9d-dc097d87b66e', NULL, 'e0f38176-57f9-4c7f-8841-b224ab7c68ce', 'equals', '6+', '7.000', '4.000', '4.000', NULL, 10, TRUE, 'migration_028', 'migration_028', '2026-06-24T11:30:56.408155'::TIMESTAMP, '2026-06-24T11:30:56.408155'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_answer_concern_mapping (id, question_id, option_item_id, concern_id, match_operator, answer_value, mapping_score, severity, likelihood, hint_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('709d38a9-1f75-4d20-a823-7c4611dc3151', '2ae91adf-3517-488a-8b94-594503196751', NULL, '3827e763-ed52-440a-81fe-30e9cd10c279', 'equals', 'Y', '8.000', NULL, NULL, 'Legacy transition | Service refactoring | Backward compatibility', 10, TRUE, 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:51:06.967596'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_answer_concern_mapping (id, question_id, option_item_id, concern_id, match_operator, answer_value, mapping_score, severity, likelihood, hint_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('71f04495-ae27-462d-be92-fd180d69e17c', '5e8f103b-308b-4f7b-bfc0-bcc783a6c373', NULL, 'a50b2934-a87b-44e1-a153-3d9407da3e3d', 'equals', 'Yes', '3.000', NULL, NULL, 'Assessment matrix: funding scale', 10, TRUE, 'migration_020', 'migration_020', '2026-06-22T18:51:07.389192'::TIMESTAMP, '2026-06-22T18:51:07.389192'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_answer_concern_mapping (id, question_id, option_item_id, concern_id, match_operator, answer_value, mapping_score, severity, likelihood, hint_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('73d556a4-29c7-4a50-a6ba-e9301474c970', 'ba19c553-635b-472d-ada2-c14c835a502d', NULL, '0a9b2496-b20d-459c-a589-3620a78fedae', 'equals', 'Yes', '2.000', NULL, NULL, 'Assessment matrix: cross BU / GEO scope', 10, TRUE, 'migration_020', 'migration_020', '2026-06-22T18:51:07.389192'::TIMESTAMP, '2026-06-22T18:51:07.389192'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_answer_concern_mapping (id, question_id, option_item_id, concern_id, match_operator, answer_value, mapping_score, severity, likelihood, hint_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('7539052d-e4a9-4f9b-96b6-0eb44afd69a5', '7b69daa8-a783-4bb7-a901-470164bebec3', NULL, 'b0ae8094-e55d-449d-9fda-f30f918923a9', 'equals', '7+', '7.000', '4.000', '4.000', NULL, 10, TRUE, 'migration_028', 'migration_028', '2026-06-24T11:30:56.408155'::TIMESTAMP, '2026-06-24T11:30:56.408155'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_answer_concern_mapping (id, question_id, option_item_id, concern_id, match_operator, answer_value, mapping_score, severity, likelihood, hint_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('75d0e700-8903-4898-91c4-41ddcba32645', '2e8afab2-3a05-4183-983d-937ea2caf0b9', NULL, '3e9d1504-b37a-4e94-abb3-7e142aeaf9b2', 'equals', 'Yes', '7.000', '5.000', '4.000', NULL, 20, TRUE, 'migration_028', 'migration_028', '2026-06-24T11:30:56.408155'::TIMESTAMP, '2026-06-24T11:30:56.408155'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_answer_concern_mapping (id, question_id, option_item_id, concern_id, match_operator, answer_value, mapping_score, severity, likelihood, hint_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('75ef324c-dac9-432a-a8f2-599a0198c7c6', 'fc6f72f5-6b16-4160-89ed-10a390ded5c9', NULL, 'b501e152-100e-47fd-99af-3a41377e54f8', 'equals', 'Y', '8.000', NULL, NULL, 'Deployment topology | Data residency | Regulatory location', 20, TRUE, 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:51:06.967596'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_answer_concern_mapping (id, question_id, option_item_id, concern_id, match_operator, answer_value, mapping_score, severity, likelihood, hint_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('76186ed9-530c-4465-9f29-b4bcd4a612d3', '8afc058c-f2bb-4b1e-b36e-d9a0dbf4ffb0', NULL, 'be1af365-bc9c-4678-a0e1-18aa5eb3dc9a', 'equals', 'Y', '8.000', NULL, NULL, 'Protocol compatibility | Network design | Observability', 10, TRUE, 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:51:06.967596'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_answer_concern_mapping (id, question_id, option_item_id, concern_id, match_operator, answer_value, mapping_score, severity, likelihood, hint_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('78e21b7b-c1ec-47b1-b402-12bae09c6a02', '0b82ff82-b866-4a0c-a3b0-4071b59c6b1b', NULL, 'ef915c8b-811d-47ff-a417-35c7568ed117', 'equals', 'Yes', '10.000', NULL, NULL, 'Assessment matrix: architecture impact', 10, TRUE, 'migration_020', 'migration_020', '2026-06-22T18:51:07.389192'::TIMESTAMP, '2026-06-22T18:51:07.389192'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_answer_concern_mapping (id, question_id, option_item_id, concern_id, match_operator, answer_value, mapping_score, severity, likelihood, hint_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('7a02d593-291f-4c1f-9687-05d3f005da18', '8a7b2a38-8942-4d75-b31b-f79e03f6d113', NULL, '28504628-97c3-432d-8a6a-78517e288efd', 'equals', 'Y', '8.000', NULL, NULL, 'External interface | Security boundary | Trust zone', 40, TRUE, 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:51:06.967596'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_answer_concern_mapping (id, question_id, option_item_id, concern_id, match_operator, answer_value, mapping_score, severity, likelihood, hint_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('7a5282ad-6133-4d15-9a0a-1c5bd980b238', '3caa4539-0192-4507-ad9e-67154ea9d633', NULL, '790ea5f7-68a4-414a-9ff9-c215af2ce53f', 'equals', 'Y', '8.000', NULL, NULL, 'Business capability | Business process | Stakeholder alignment', 10, TRUE, 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:51:06.967596'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_answer_concern_mapping (id, question_id, option_item_id, concern_id, match_operator, answer_value, mapping_score, severity, likelihood, hint_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('7c11dc62-9a87-44c6-864c-6bd74485bf65', '0ce83598-0ad8-4fa9-9e72-e87656ecfafa', NULL, '3efe6823-5036-4d30-91d8-dfac1dd8d847', 'equals', 'Y', '8.000', NULL, NULL, 'Technology exception | Risk acceptance | Security review', 10, TRUE, 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:51:06.967596'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_answer_concern_mapping (id, question_id, option_item_id, concern_id, match_operator, answer_value, mapping_score, severity, likelihood, hint_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('7d1f0b7a-45fa-418e-92ab-0596c1ee5e47', 'b170bbc8-308b-41c8-92d2-1d1624f71a63', NULL, '207c45e8-7e13-43a8-927f-b6e76c1ec5ab', 'equals', '2-3', '5.000', '3.000', '3.000', NULL, 10, TRUE, 'migration_028', 'migration_028', '2026-06-24T11:30:56.408155'::TIMESTAMP, '2026-06-24T11:30:56.408155'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_answer_concern_mapping (id, question_id, option_item_id, concern_id, match_operator, answer_value, mapping_score, severity, likelihood, hint_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('7d54837c-cac4-46d3-a2c8-a925e0594923', '8a7b2a38-8942-4d75-b31b-f79e03f6d113', NULL, '3efe6823-5036-4d30-91d8-dfac1dd8d847', 'equals', 'Y', '8.000', NULL, NULL, 'External interface | Security boundary | Trust zone', 50, TRUE, 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:51:06.967596'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_answer_concern_mapping (id, question_id, option_item_id, concern_id, match_operator, answer_value, mapping_score, severity, likelihood, hint_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('7df66858-bbd0-4926-b766-33b074d7a79a', 'c44660eb-74f6-4214-8079-f7511fd176f9', NULL, 'ce132670-3e9a-4606-a407-291eff16446e', 'equals', 'Y', '8.000', NULL, NULL, 'Authorization model | Role design | Segregation of duties', 20, TRUE, 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:51:06.967596'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_answer_concern_mapping (id, question_id, option_item_id, concern_id, match_operator, answer_value, mapping_score, severity, likelihood, hint_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('7e6a9104-b194-430a-a966-9c030345bf42', 'd7aeb818-e7d5-44b6-bf18-2b029ddd1c8b', NULL, '33fa7d86-f251-4dfd-b58a-1cb730a8218f', 'equals', 'Yes', '7.000', '5.000', '4.000', NULL, 10, TRUE, 'migration_028', 'migration_028', '2026-06-24T11:30:56.408155'::TIMESTAMP, '2026-06-24T11:30:56.408155'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_answer_concern_mapping (id, question_id, option_item_id, concern_id, match_operator, answer_value, mapping_score, severity, likelihood, hint_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('7e89ba78-c7f8-4c16-a13b-ed348113f0e4', 'c44660eb-74f6-4214-8079-f7511fd176f9', NULL, 'd907b90d-a1ad-46a5-b24d-164181c8ac12', 'equals', 'Y', '8.000', NULL, NULL, 'Authorization model | Role design | Segregation of duties', 30, TRUE, 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:51:06.967596'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_answer_concern_mapping (id, question_id, option_item_id, concern_id, match_operator, answer_value, mapping_score, severity, likelihood, hint_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('7ef1ccab-1fec-4461-8f2b-151249c09624', '700b260e-61fd-46c6-aacd-0d0c43a8b0ce', NULL, '9185b6da-ff40-459f-b2fe-f7fb4c2f0e9f', 'equals', 'Y', '8.000', NULL, NULL, 'Privacy scope | Data classification | Protection controls', 30, TRUE, 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:51:06.967596'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_answer_concern_mapping (id, question_id, option_item_id, concern_id, match_operator, answer_value, mapping_score, severity, likelihood, hint_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('7f53b113-2390-4fbe-91ff-5b30a97b86d4', 'b5bd3105-e695-4b7e-96b2-8973efc51c7d', NULL, 'b7751257-c599-4291-a108-43690f98bfcb', 'equals', 'Y', '8.000', NULL, NULL, 'Framework governance | Technology risk | Supportability', 20, TRUE, 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:51:06.967596'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_answer_concern_mapping (id, question_id, option_item_id, concern_id, match_operator, answer_value, mapping_score, severity, likelihood, hint_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('8190f0cf-c1ae-4006-bce8-236333fc4709', '6b6069f1-20e1-4406-86ef-1c3424b3d27a', NULL, '1cbe8c0e-c9d4-4119-88f2-3a00498d0876', 'equals', 'Y', '8.000', NULL, NULL, 'Client architecture | Release governance | Security boundary', 20, TRUE, 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:51:06.967596'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_answer_concern_mapping (id, question_id, option_item_id, concern_id, match_operator, answer_value, mapping_score, severity, likelihood, hint_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('84df130a-9560-492c-ac07-b1f9734ee368', '989c3e69-f5fc-46af-90b9-c13bd8e6822a', NULL, '28504628-97c3-432d-8a6a-78517e288efd', 'equals', 'Yes', '2.000', NULL, NULL, 'Assessment matrix: security impact', 10, TRUE, 'migration_020', 'migration_020', '2026-06-22T18:51:07.389192'::TIMESTAMP, '2026-06-22T18:51:07.389192'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_answer_concern_mapping (id, question_id, option_item_id, concern_id, match_operator, answer_value, mapping_score, severity, likelihood, hint_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('87168fcb-b497-4a96-a395-df3f64a000cc', 'cbc4531c-5a4b-49fc-9f52-9e26853b11b8', NULL, '28504628-97c3-432d-8a6a-78517e288efd', 'equals', 'Y', '8.000', NULL, NULL, 'Identity architecture | SSO boundary | Compliance impact', 20, TRUE, 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:51:06.967596'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_answer_concern_mapping (id, question_id, option_item_id, concern_id, match_operator, answer_value, mapping_score, severity, likelihood, hint_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('88fd1880-f3e5-4d4e-ae16-4010b3b78d43', '8a7b2a38-8942-4d75-b31b-f79e03f6d113', NULL, '9dfed160-c657-4192-b65f-cc60729bb1e0', 'equals', 'Y', '8.000', NULL, NULL, 'External interface | Security boundary | Trust zone', 70, TRUE, 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:51:06.967596'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_answer_concern_mapping (id, question_id, option_item_id, concern_id, match_operator, answer_value, mapping_score, severity, likelihood, hint_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('8a7e2451-4fea-44a7-8fb7-be39fc84c890', 'ac1e0f11-c3d8-444c-9d47-1324ea31e57a', NULL, '3827e763-ed52-440a-81fe-30e9cd10c279', 'equals', 'Yes', '1.000', NULL, NULL, 'Assessment matrix: function area impact', 20, TRUE, 'migration_020', 'migration_020', '2026-06-22T18:51:07.389192'::TIMESTAMP, '2026-06-22T18:51:07.389192'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_answer_concern_mapping (id, question_id, option_item_id, concern_id, match_operator, answer_value, mapping_score, severity, likelihood, hint_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('8b0743dc-d744-4727-b875-644519e06a49', 'a2db67bc-d604-4af6-853c-00067479a383', NULL, 'ef915c8b-811d-47ff-a417-35c7568ed117', 'equals', 'Y', '8.000', NULL, NULL, 'Authorization control | Access governance | Control traceability', 30, TRUE, 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:51:06.967596'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_answer_concern_mapping (id, question_id, option_item_id, concern_id, match_operator, answer_value, mapping_score, severity, likelihood, hint_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('8b135be6-5e4e-41ee-82f5-f0c4f4136c17', '9628ee72-05b0-4354-93f8-e0e3b96827f0', NULL, '83dff545-c341-47d8-b929-544cc66a9077', 'equals', 'Yes', '5.000', '3.000', '3.000', NULL, 10, TRUE, 'migration_028', 'migration_028', '2026-06-24T11:30:56.408155'::TIMESTAMP, '2026-06-24T11:30:56.408155'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_answer_concern_mapping (id, question_id, option_item_id, concern_id, match_operator, answer_value, mapping_score, severity, likelihood, hint_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('8c654d2e-122d-407a-8810-66445cb6a6ba', '2b202d1c-4fde-4bbf-b0b0-8e019d056018', NULL, '3827e763-ed52-440a-81fe-30e9cd10c279', 'equals', 'Y', '8.000', NULL, NULL, 'Reuse boundary | Shared service governance | Change blast radius', 10, TRUE, 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:51:06.967596'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_answer_concern_mapping (id, question_id, option_item_id, concern_id, match_operator, answer_value, mapping_score, severity, likelihood, hint_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('8d7cbab9-4e4d-467f-a4e2-e33f52510afe', 'c6e04053-091b-4a54-b4e4-377bbf1b7cd0', NULL, '28b57abf-5f74-431b-badf-739c32b7a898', 'equals', 'Y', '8.000', NULL, NULL, 'Application boundary | Container/service decomposition | Ownership', 30, TRUE, 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:51:06.967596'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_answer_concern_mapping (id, question_id, option_item_id, concern_id, match_operator, answer_value, mapping_score, severity, likelihood, hint_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('8fc42b4a-1afa-4008-8d40-32ff20121dd7', 'a3ab0846-762f-48b5-87a6-9acdbeca039e', NULL, '3e9d1504-b37a-4e94-abb3-7e142aeaf9b2', 'equals', 'Yes', '6.000', '4.000', '3.000', NULL, 20, TRUE, 'migration_028', 'migration_028', '2026-06-24T11:30:56.408155'::TIMESTAMP, '2026-06-24T11:30:56.408155'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_answer_concern_mapping (id, question_id, option_item_id, concern_id, match_operator, answer_value, mapping_score, severity, likelihood, hint_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('90a6880e-3dac-4d95-ba27-7cf64bfaf48a', 'b33b2b45-53f8-41a6-aace-b8c259a8de9a', NULL, '2fdc5548-aae8-4073-a863-177d95264e9d', 'equals', 'Y', '8.000', NULL, NULL, 'Technology standardization | Runtime support | Maintainability', 30, TRUE, 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:51:06.967596'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_answer_concern_mapping (id, question_id, option_item_id, concern_id, match_operator, answer_value, mapping_score, severity, likelihood, hint_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('91cdb52c-a6f4-400d-a01a-7d5f573baa83', 'a64b8e75-e77f-4f4f-a558-a731886248d3', NULL, 'e943a552-617b-4112-93d5-d9d3bd94b9a6', 'equals', 'Y', '8.000', NULL, NULL, 'Application lifecycle | Migration path | Dependency retirement', 30, TRUE, 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:51:06.967596'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_answer_concern_mapping (id, question_id, option_item_id, concern_id, match_operator, answer_value, mapping_score, severity, likelihood, hint_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('91ec1d22-75e0-4e67-a332-55a1b8c58b31', '0b71ea36-5250-4ee0-8f01-d6f5202d7b99', NULL, '3e9d1504-b37a-4e94-abb3-7e142aeaf9b2', 'equals', 'Yes', '6.000', '4.000', '3.000', NULL, 30, TRUE, 'migration_028', 'migration_028', '2026-06-24T11:30:56.408155'::TIMESTAMP, '2026-06-24T11:30:56.408155'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_answer_concern_mapping (id, question_id, option_item_id, concern_id, match_operator, answer_value, mapping_score, severity, likelihood, hint_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('93c789c0-d20f-498e-b640-395d3a843826', '92af3d9e-01ca-41df-ad7d-4a0a0f29264c', NULL, 'b7751257-c599-4291-a108-43690f98bfcb', 'equals', 'Y', '8.000', NULL, NULL, 'Toolchain governance | Delivery pipeline | Ops enablement', 10, TRUE, 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:51:06.967596'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_answer_concern_mapping (id, question_id, option_item_id, concern_id, match_operator, answer_value, mapping_score, severity, likelihood, hint_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('9417a030-1f65-47f1-808e-7e7cd8d9e6d9', '8a7b2a38-8942-4d75-b31b-f79e03f6d113', NULL, '3827e763-ed52-440a-81fe-30e9cd10c279', 'equals', 'Y', '8.000', NULL, NULL, 'External interface | Security boundary | Trust zone', 20, TRUE, 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:51:06.967596'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_answer_concern_mapping (id, question_id, option_item_id, concern_id, match_operator, answer_value, mapping_score, severity, likelihood, hint_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('988b38cf-24e8-498c-ab31-4ee4a2f7d6a1', '6b6069f1-20e1-4406-86ef-1c3424b3d27a', NULL, '4b7a1ac7-fc11-4391-9902-c5c632f4acad', 'equals', 'Y', '8.000', NULL, NULL, 'Client architecture | Release governance | Security boundary', 50, TRUE, 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:51:06.967596'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_answer_concern_mapping (id, question_id, option_item_id, concern_id, match_operator, answer_value, mapping_score, severity, likelihood, hint_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('98af0a26-bf55-439a-8840-86f2ef6a57b1', 'b170bbc8-308b-41c8-92d2-1d1624f71a63', NULL, '207c45e8-7e13-43a8-927f-b6e76c1ec5ab', 'equals', '1', '3.000', '2.000', '2.000', NULL, 10, TRUE, 'migration_028', 'migration_028', '2026-06-24T11:30:56.408155'::TIMESTAMP, '2026-06-24T11:30:56.408155'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_answer_concern_mapping (id, question_id, option_item_id, concern_id, match_operator, answer_value, mapping_score, severity, likelihood, hint_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('9b50107f-59d0-408a-8234-86319f86ba48', '17c83dcb-afd8-400d-bf2d-1532d51431c2', NULL, '0a56429c-278f-4160-99a3-75d7e1b91e09', 'equals', 'Y', '8.000', NULL, NULL, 'Model dependency | AI governance | Inference/data risk', 30, TRUE, 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:51:06.967596'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_answer_concern_mapping (id, question_id, option_item_id, concern_id, match_operator, answer_value, mapping_score, severity, likelihood, hint_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('9b6a9a72-c3de-49b0-bfe6-6fe0f10716be', '9004697e-ece3-4c75-980b-2ff2dd331c52', NULL, 'bd5e1599-400f-4bcc-9386-a44e056d495a', 'equals', 'Y', '8.000', NULL, NULL, 'Data flow | Lineage | Semantic consistency', 30, TRUE, 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:51:06.967596'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_answer_concern_mapping (id, question_id, option_item_id, concern_id, match_operator, answer_value, mapping_score, severity, likelihood, hint_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('9cdf066a-257c-4176-a535-8330531affaf', '362e9819-bfbe-4a4c-a102-ebe6e75f10a3', NULL, '2fdc5548-aae8-4073-a863-177d95264e9d', 'equals', 'Y', '8.000', NULL, NULL, 'Platform architecture | Middleware dependency | Operational support', 40, TRUE, 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:51:06.967596'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_answer_concern_mapping (id, question_id, option_item_id, concern_id, match_operator, answer_value, mapping_score, severity, likelihood, hint_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('9e631757-0745-45c1-975d-e7fbe2982ed1', '7b65890a-8131-4083-b026-59a68049529d', NULL, '2fdc5548-aae8-4073-a863-177d95264e9d', 'equals', 'Yes', '1.000', NULL, NULL, 'Assessment matrix: solution technology fit', 20, TRUE, 'migration_020', 'migration_020', '2026-06-22T18:51:07.389192'::TIMESTAMP, '2026-06-22T18:51:07.389192'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_answer_concern_mapping (id, question_id, option_item_id, concern_id, match_operator, answer_value, mapping_score, severity, likelihood, hint_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('9e9cb08d-0adf-492f-8b5b-77330ae7c052', 'e50e4207-f27f-412a-914a-a0448a7ef7b6', NULL, '33fa7d86-f251-4dfd-b58a-1cb730a8218f', 'equals', 'Yes', '8.000', '5.000', '5.000', NULL, 10, TRUE, 'migration_028', 'migration_028', '2026-06-24T11:30:56.408155'::TIMESTAMP, '2026-06-24T11:30:56.408155'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_answer_concern_mapping (id, question_id, option_item_id, concern_id, match_operator, answer_value, mapping_score, severity, likelihood, hint_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('a1354f96-4e54-44b5-a282-74c46b529048', '7b69daa8-a783-4bb7-a901-470164bebec3', NULL, 'b0ae8094-e55d-449d-9fda-f30f918923a9', 'equals', '1-3', '3.000', '2.000', '2.000', NULL, 10, TRUE, 'migration_028', 'migration_028', '2026-06-24T11:30:56.408155'::TIMESTAMP, '2026-06-24T11:30:56.408155'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_answer_concern_mapping (id, question_id, option_item_id, concern_id, match_operator, answer_value, mapping_score, severity, likelihood, hint_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('a189e692-ee83-4f67-a797-8b999424cb09', '59a57cf4-c4e8-4f3a-b88c-c3ceb573bde1', NULL, '3e9d1504-b37a-4e94-abb3-7e142aeaf9b2', 'equals', 'Yes', '6.000', '4.000', '3.000', NULL, 20, TRUE, 'migration_028', 'migration_028', '2026-06-24T11:30:56.408155'::TIMESTAMP, '2026-06-24T11:30:56.408155'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_answer_concern_mapping (id, question_id, option_item_id, concern_id, match_operator, answer_value, mapping_score, severity, likelihood, hint_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('a1a61dbe-1314-41fe-9696-ac87556e0491', '8afc058c-f2bb-4b1e-b36e-d9a0dbf4ffb0', NULL, '4b7a1ac7-fc11-4391-9902-c5c632f4acad', 'equals', 'Y', '8.000', NULL, NULL, 'Protocol compatibility | Network design | Observability', 50, TRUE, 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:51:06.967596'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_answer_concern_mapping (id, question_id, option_item_id, concern_id, match_operator, answer_value, mapping_score, severity, likelihood, hint_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('a3764dde-3d73-4786-9b80-2bfac459e26e', '49efaff1-0bfc-4d5a-afb3-060fedfaa28a', NULL, '28b57abf-5f74-431b-badf-739c32b7a898', 'equals', 'Y', '8.000', NULL, NULL, 'Channel architecture | Mobile runtime | External exposure', 30, TRUE, 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:51:06.967596'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_answer_concern_mapping (id, question_id, option_item_id, concern_id, match_operator, answer_value, mapping_score, severity, likelihood, hint_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('a64fcb5e-1479-41bb-bc93-b3b7b5ec4d27', '8a7b2a38-8942-4d75-b31b-f79e03f6d113', NULL, 'c46eec72-b92a-4f2a-ac80-bd3097694729', 'equals', 'Y', '8.000', NULL, NULL, 'External interface | Security boundary | Trust zone', 60, TRUE, 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:51:06.967596'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_answer_concern_mapping (id, question_id, option_item_id, concern_id, match_operator, answer_value, mapping_score, severity, likelihood, hint_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('a721e401-067e-46d2-87c7-b84e0b0b510b', '2e8afab2-3a05-4183-983d-937ea2caf0b9', NULL, '0a56429c-278f-4160-99a3-75d7e1b91e09', 'equals', 'Yes', '6.000', '4.000', '3.000', NULL, 10, TRUE, 'migration_028', 'migration_028', '2026-06-24T11:30:56.408155'::TIMESTAMP, '2026-06-24T11:30:56.408155'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_answer_concern_mapping (id, question_id, option_item_id, concern_id, match_operator, answer_value, mapping_score, severity, likelihood, hint_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('a850cc75-1b98-40e1-9ca4-ab08ee546f52', 'c73a5ee6-aaba-47a3-9a75-38ac5ff05c48', NULL, '28504628-97c3-432d-8a6a-78517e288efd', 'equals', 'Yes', '6.000', '4.000', '3.000', NULL, 10, TRUE, 'migration_028', 'migration_028', '2026-06-24T11:30:56.408155'::TIMESTAMP, '2026-06-24T11:30:56.408155'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_answer_concern_mapping (id, question_id, option_item_id, concern_id, match_operator, answer_value, mapping_score, severity, likelihood, hint_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('a85c8048-8409-4986-9188-8b233b2e3edc', 'a271f3a8-b3bb-413a-8b03-cfaf0f424197', NULL, 'e0f38176-57f9-4c7f-8841-b224ab7c68ce', 'equals', 'Y', '8.000', NULL, NULL, 'System interaction | Interface contract | Dependency map', 20, TRUE, 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:51:06.967596'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_answer_concern_mapping (id, question_id, option_item_id, concern_id, match_operator, answer_value, mapping_score, severity, likelihood, hint_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('abcab871-8a61-4cd3-bd93-21a595480638', '2b202d1c-4fde-4bbf-b0b0-8e019d056018', NULL, '1a319400-ba6a-4a3a-bc98-7a4f9d765d59', 'equals', 'Y', '8.000', NULL, NULL, 'Reuse boundary | Shared service governance | Change blast radius', 50, TRUE, 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:51:06.967596'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_answer_concern_mapping (id, question_id, option_item_id, concern_id, match_operator, answer_value, mapping_score, severity, likelihood, hint_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('ae212222-8115-4eae-a76c-75db0bacf7c5', 'fcff24b1-d48d-4e65-a5bf-6c7222eead7a', NULL, 'd4afd8ac-cb51-459d-887d-128eef4f23a5', 'equals', 'Yes', '6.000', '4.000', '3.000', NULL, 10, TRUE, 'migration_028', 'migration_028', '2026-06-24T11:30:56.408155'::TIMESTAMP, '2026-06-24T11:30:56.408155'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_answer_concern_mapping (id, question_id, option_item_id, concern_id, match_operator, answer_value, mapping_score, severity, likelihood, hint_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('aef03894-9f77-4739-a42a-ec3520a01412', '2ae91adf-3517-488a-8b94-594503196751', NULL, '11ef6f1d-b005-4469-be15-14a516e1620a', 'equals', 'Y', '8.000', NULL, NULL, 'Legacy transition | Service refactoring | Backward compatibility', 30, TRUE, 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:51:06.967596'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_answer_concern_mapping (id, question_id, option_item_id, concern_id, match_operator, answer_value, mapping_score, severity, likelihood, hint_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('afeb0a2d-c6fa-4319-a8a3-615b40fc9f6c', 'a271f3a8-b3bb-413a-8b03-cfaf0f424197', NULL, 'bd5e1599-400f-4bcc-9386-a44e056d495a', 'equals', 'Y', '8.000', NULL, NULL, 'System interaction | Interface contract | Dependency map', 50, TRUE, 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:51:06.967596'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_answer_concern_mapping (id, question_id, option_item_id, concern_id, match_operator, answer_value, mapping_score, severity, likelihood, hint_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('aff55486-3771-46f9-b4e3-1cd0602f570c', 'c73a5ee6-aaba-47a3-9a75-38ac5ff05c48', NULL, '3e9d1504-b37a-4e94-abb3-7e142aeaf9b2', 'equals', 'Yes', '5.000', '3.000', '3.000', NULL, 20, TRUE, 'migration_028', 'migration_028', '2026-06-24T11:30:56.408155'::TIMESTAMP, '2026-06-24T11:30:56.408155'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_answer_concern_mapping (id, question_id, option_item_id, concern_id, match_operator, answer_value, mapping_score, severity, likelihood, hint_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('b1a69fc6-7dd6-41ea-9323-1cec0e8c97d2', '9004697e-ece3-4c75-980b-2ff2dd331c52', NULL, 'f7f896c5-3f2c-49d3-9db1-c9882dcc5ce3', 'equals', 'Y', '8.000', NULL, NULL, 'Data flow | Lineage | Semantic consistency', 10, TRUE, 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:51:06.967596'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_answer_concern_mapping (id, question_id, option_item_id, concern_id, match_operator, answer_value, mapping_score, severity, likelihood, hint_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('b2bc2d39-4a06-4973-a695-9ee2c5d9a609', 'a72a0686-5c0f-4870-8886-ff9f92c56216', NULL, '7a454779-a4bd-4c9d-9f02-dc0774f78ec5', 'equals', 'Yes', '2.000', NULL, NULL, 'Assessment matrix: platform/domain dependency', 10, TRUE, 'migration_020', 'migration_020', '2026-06-22T18:51:07.389192'::TIMESTAMP, '2026-06-22T18:51:07.389192'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_answer_concern_mapping (id, question_id, option_item_id, concern_id, match_operator, answer_value, mapping_score, severity, likelihood, hint_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('b301bf0e-f4da-4980-b412-8aed632da3ef', '2ae91adf-3517-488a-8b94-594503196751', NULL, '48dfc8fd-540f-4aab-8664-ade612687973', 'equals', 'Y', '8.000', NULL, NULL, 'Legacy transition | Service refactoring | Backward compatibility', 20, TRUE, 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:51:06.967596'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_answer_concern_mapping (id, question_id, option_item_id, concern_id, match_operator, answer_value, mapping_score, severity, likelihood, hint_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('b67125b8-50fd-4123-9236-5bbd1450bf13', '8d3718a4-ab76-4793-8cef-738680126ad2', NULL, '790ea5f7-68a4-414a-9ff9-c215af2ce53f', 'equals', 'Yes', '3.000', NULL, NULL, 'Assessment matrix: requirement understanding complexity', 10, TRUE, 'migration_020', 'migration_020', '2026-06-22T18:51:07.389192'::TIMESTAMP, '2026-06-22T18:51:07.389192'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_answer_concern_mapping (id, question_id, option_item_id, concern_id, match_operator, answer_value, mapping_score, severity, likelihood, hint_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('b818a857-5c32-4e19-b3d4-e8723beba3da', 'b5bd3105-e695-4b7e-96b2-8973efc51c7d', NULL, '2fdc5548-aae8-4073-a863-177d95264e9d', 'equals', 'Y', '8.000', NULL, NULL, 'Framework governance | Technology risk | Supportability', 40, TRUE, 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:51:06.967596'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_answer_concern_mapping (id, question_id, option_item_id, concern_id, match_operator, answer_value, mapping_score, severity, likelihood, hint_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('b88b8c1f-4ae7-4b7c-9680-54cc98878ec6', 'c6e04053-091b-4a54-b4e4-377bbf1b7cd0', NULL, '11ef6f1d-b005-4469-be15-14a516e1620a', 'equals', 'Y', '8.000', NULL, NULL, 'Application boundary | Container/service decomposition | Ownership', 50, TRUE, 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:51:06.967596'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_answer_concern_mapping (id, question_id, option_item_id, concern_id, match_operator, answer_value, mapping_score, severity, likelihood, hint_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('b8fef6d9-1f07-4ed1-95f9-e0098a91824a', '17c83dcb-afd8-400d-bf2d-1532d51431c2', NULL, '40648691-6e25-4026-aff2-14e8803094fe', 'equals', 'Y', '8.000', NULL, NULL, 'Model dependency | AI governance | Inference/data risk', 60, TRUE, 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:51:06.967596'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_answer_concern_mapping (id, question_id, option_item_id, concern_id, match_operator, answer_value, mapping_score, severity, likelihood, hint_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('bbc04e54-07d6-41bd-8b0a-752bb0eed140', '8afc058c-f2bb-4b1e-b36e-d9a0dbf4ffb0', NULL, 'f2fa6488-c455-4103-85ef-993d180b2baf', 'equals', 'Y', '8.000', NULL, NULL, 'Protocol compatibility | Network design | Observability', 20, TRUE, 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:51:06.967596'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_answer_concern_mapping (id, question_id, option_item_id, concern_id, match_operator, answer_value, mapping_score, severity, likelihood, hint_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('bc457a3a-bd55-4179-9c75-f7620028eb1f', 'e50e4207-f27f-412a-914a-a0448a7ef7b6', NULL, '2ee0c84b-8b62-4733-a7c1-23756dd4a878', 'equals', 'Yes', '6.000', '4.000', '3.000', NULL, 20, TRUE, 'migration_028', 'migration_028', '2026-06-24T11:30:56.408155'::TIMESTAMP, '2026-06-24T11:30:56.408155'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_answer_concern_mapping (id, question_id, option_item_id, concern_id, match_operator, answer_value, mapping_score, severity, likelihood, hint_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('be3bf26a-b9ce-409a-a6e0-7df2e13d7abe', '8d3718a4-ab76-4793-8cef-738680126ad2', NULL, '29001e8b-7082-4ce1-971b-9220bd86b590', 'equals', 'Yes', '3.000', NULL, NULL, 'Assessment matrix: requirement understanding complexity', 20, TRUE, 'migration_020', 'migration_020', '2026-06-22T18:51:07.389192'::TIMESTAMP, '2026-06-22T18:51:07.389192'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_answer_concern_mapping (id, question_id, option_item_id, concern_id, match_operator, answer_value, mapping_score, severity, likelihood, hint_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('be7f30c2-63a8-4f18-904c-11e67f39339f', 'bb27334e-9bd2-4702-8079-edf505230b1c', NULL, 'bf6048e2-2604-4d23-a2fa-aa3afae283b5', 'equals', 'Yes', '1.000', NULL, NULL, 'Assessment matrix: business process and organization change', 20, TRUE, 'migration_020', 'migration_020', '2026-06-22T18:51:07.389192'::TIMESTAMP, '2026-06-22T18:51:07.389192'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_answer_concern_mapping (id, question_id, option_item_id, concern_id, match_operator, answer_value, mapping_score, severity, likelihood, hint_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('c1446955-eaec-405e-94fa-55bb4ed94993', 'a271f3a8-b3bb-413a-8b03-cfaf0f424197', NULL, 'f2fa6488-c455-4103-85ef-993d180b2baf', 'equals', 'Y', '8.000', NULL, NULL, 'System interaction | Interface contract | Dependency map', 30, TRUE, 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:51:06.967596'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_answer_concern_mapping (id, question_id, option_item_id, concern_id, match_operator, answer_value, mapping_score, severity, likelihood, hint_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('c4e647a6-ba5c-4881-bbf8-286d2c1e5bab', '9628ee72-05b0-4354-93f8-e0e3b96827f0', NULL, '3e9d1504-b37a-4e94-abb3-7e142aeaf9b2', 'equals', 'Yes', '6.000', '4.000', '3.000', NULL, 20, TRUE, 'migration_028', 'migration_028', '2026-06-24T11:30:56.408155'::TIMESTAMP, '2026-06-24T11:30:56.408155'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_answer_concern_mapping (id, question_id, option_item_id, concern_id, match_operator, answer_value, mapping_score, severity, likelihood, hint_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('c5358641-76ab-4dff-b91e-87ec1e032842', 'b7fc4022-485d-450d-8076-673b288b55d0', NULL, 'be1af365-bc9c-4678-a0e1-18aa5eb3dc9a', 'equals', '1-2', '3.000', '2.000', '2.000', NULL, 20, TRUE, 'migration_028', 'migration_028', '2026-06-24T11:30:56.408155'::TIMESTAMP, '2026-06-24T11:30:56.408155'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_answer_concern_mapping (id, question_id, option_item_id, concern_id, match_operator, answer_value, mapping_score, severity, likelihood, hint_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('c5b48293-6113-47ca-9b25-8c5417d8d0aa', '2b202d1c-4fde-4bbf-b0b0-8e019d056018', NULL, '11ef6f1d-b005-4469-be15-14a516e1620a', 'equals', 'Y', '8.000', NULL, NULL, 'Reuse boundary | Shared service governance | Change blast radius', 20, TRUE, 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:51:06.967596'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_answer_concern_mapping (id, question_id, option_item_id, concern_id, match_operator, answer_value, mapping_score, severity, likelihood, hint_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('c6104036-c95c-4246-baa2-c3cfbc86ae58', 'c44660eb-74f6-4214-8079-f7511fd176f9', NULL, 'e52325d3-1109-4c83-8ff7-7337cf27bb80', 'equals', 'Y', '8.000', NULL, NULL, 'Authorization model | Role design | Segregation of duties', 10, TRUE, 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:51:06.967596'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_answer_concern_mapping (id, question_id, option_item_id, concern_id, match_operator, answer_value, mapping_score, severity, likelihood, hint_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('c6774a87-2c59-4e16-8a2d-0e53b8aeb4e7', '9004697e-ece3-4c75-980b-2ff2dd331c52', NULL, 'e0f38176-57f9-4c7f-8841-b224ab7c68ce', 'equals', 'Y', '8.000', NULL, NULL, 'Data flow | Lineage | Semantic consistency', 50, TRUE, 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:51:06.967596'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_answer_concern_mapping (id, question_id, option_item_id, concern_id, match_operator, answer_value, mapping_score, severity, likelihood, hint_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('c80b20fd-fb45-440e-ae3b-1199f716ccf2', '0c825395-7258-4684-a6a4-06f5561c0672', NULL, '2ee0c84b-8b62-4733-a7c1-23756dd4a878', 'equals', 'Yes', '6.000', '4.000', '3.000', NULL, 20, TRUE, 'migration_028', 'migration_028', '2026-06-24T11:30:56.408155'::TIMESTAMP, '2026-06-24T11:30:56.408155'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_answer_concern_mapping (id, question_id, option_item_id, concern_id, match_operator, answer_value, mapping_score, severity, likelihood, hint_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('c810f3ce-ce9c-44b1-a1a8-a8d424f6b301', 'd6293d19-48ec-47f5-bbb9-3d3d30530fe9', NULL, 'ccf8abd3-3794-4c3b-8f30-6d72d8b29815', 'equals', 'Yes', '3.000', NULL, NULL, 'Assessment matrix: resource scale', 10, TRUE, 'migration_020', 'migration_020', '2026-06-22T18:51:07.389192'::TIMESTAMP, '2026-06-22T18:51:07.389192'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_answer_concern_mapping (id, question_id, option_item_id, concern_id, match_operator, answer_value, mapping_score, severity, likelihood, hint_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('c8427784-ce74-4289-bf38-10b456bb41c5', '3caa4539-0192-4507-ad9e-67154ea9d633', NULL, '0a9b2496-b20d-459c-a589-3620a78fedae', 'equals', 'Y', '8.000', NULL, NULL, 'Business capability | Business process | Stakeholder alignment', 30, TRUE, 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:51:06.967596'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_answer_concern_mapping (id, question_id, option_item_id, concern_id, match_operator, answer_value, mapping_score, severity, likelihood, hint_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('c928ad6f-6a32-40fa-be92-1f6a16e3d988', 'b33b2b45-53f8-41a6-aace-b8c259a8de9a', NULL, '40648691-6e25-4026-aff2-14e8803094fe', 'equals', 'Y', '8.000', NULL, NULL, 'Technology standardization | Runtime support | Maintainability', 20, TRUE, 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:51:06.967596'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_answer_concern_mapping (id, question_id, option_item_id, concern_id, match_operator, answer_value, mapping_score, severity, likelihood, hint_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('cb03e8f7-554f-4a46-b898-3591f0b4dce8', '3656cee1-8bfa-46e4-89ec-932b1a9148bb', NULL, 'ccf8abd3-3794-4c3b-8f30-6d72d8b29815', 'equals', 'Yes', '3.000', NULL, NULL, 'Assessment matrix: delivery timeline complexity', 20, TRUE, 'migration_020', 'migration_020', '2026-06-22T18:51:07.389192'::TIMESTAMP, '2026-06-22T18:51:07.389192'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_answer_concern_mapping (id, question_id, option_item_id, concern_id, match_operator, answer_value, mapping_score, severity, likelihood, hint_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('cbe3d41a-77eb-4c9e-9129-1df4eae6b588', 'fcff24b1-d48d-4e65-a5bf-6c7222eead7a', NULL, '1cbe8c0e-c9d4-4119-88f2-3a00498d0876', 'equals', 'Yes', '5.000', '3.000', '3.000', NULL, 20, TRUE, 'migration_028', 'migration_028', '2026-06-24T11:30:56.408155'::TIMESTAMP, '2026-06-24T11:30:56.408155'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_answer_concern_mapping (id, question_id, option_item_id, concern_id, match_operator, answer_value, mapping_score, severity, likelihood, hint_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('cc526317-3406-4ebc-830c-7d3fcdb7462d', '700b260e-61fd-46c6-aacd-0d0c43a8b0ce', NULL, 'e092f5e0-16f3-47f3-8343-bd77d8967788', 'equals', 'Y', '8.000', NULL, NULL, 'Privacy scope | Data classification | Protection controls', 20, TRUE, 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:51:06.967596'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_answer_concern_mapping (id, question_id, option_item_id, concern_id, match_operator, answer_value, mapping_score, severity, likelihood, hint_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('cd422f2a-9e9e-45ef-8e36-08381221f214', 'a271f3a8-b3bb-413a-8b03-cfaf0f424197', NULL, 'f7f896c5-3f2c-49d3-9db1-c9882dcc5ce3', 'equals', 'Y', '8.000', NULL, NULL, 'System interaction | Interface contract | Dependency map', 40, TRUE, 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:51:06.967596'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_answer_concern_mapping (id, question_id, option_item_id, concern_id, match_operator, answer_value, mapping_score, severity, likelihood, hint_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('cd7f5367-671e-411e-bedd-4ac27de4facc', '8a7b2a38-8942-4d75-b31b-f79e03f6d113', NULL, 'd4afd8ac-cb51-459d-887d-128eef4f23a5', 'equals', 'Y', '8.000', NULL, NULL, 'External interface | Security boundary | Trust zone', 10, TRUE, 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:51:06.967596'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_answer_concern_mapping (id, question_id, option_item_id, concern_id, match_operator, answer_value, mapping_score, severity, likelihood, hint_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('ce4fc387-ef59-4361-b1ff-8bdd2a35fc3e', '700b260e-61fd-46c6-aacd-0d0c43a8b0ce', NULL, 'e943a552-617b-4112-93d5-d9d3bd94b9a6', 'equals', 'Y', '8.000', NULL, NULL, 'Privacy scope | Data classification | Protection controls', 10, TRUE, 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:51:06.967596'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_answer_concern_mapping (id, question_id, option_item_id, concern_id, match_operator, answer_value, mapping_score, severity, likelihood, hint_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('cf213db5-0d0f-444d-9c11-cf9ddd7a8202', 'fcdf4619-69c5-4400-9d32-9bd66e9e93d3', NULL, '3827e763-ed52-440a-81fe-30e9cd10c279', 'equals', 'Yes', '3.000', NULL, NULL, 'Assessment matrix: solution option dependency', 10, TRUE, 'migration_020', 'migration_020', '2026-06-22T18:51:07.389192'::TIMESTAMP, '2026-06-22T18:51:07.389192'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_answer_concern_mapping (id, question_id, option_item_id, concern_id, match_operator, answer_value, mapping_score, severity, likelihood, hint_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('d141a843-e7b6-4be0-aa46-ebaa5de480b2', '98024b59-c709-4270-8234-291633f197e5', NULL, '790ea5f7-68a4-414a-9ff9-c215af2ce53f', 'equals', 'Yes', '1.000', NULL, NULL, 'Assessment matrix: strategic priority', 10, TRUE, 'migration_020', 'migration_020', '2026-06-22T18:51:07.389192'::TIMESTAMP, '2026-06-22T18:51:07.389192'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_answer_concern_mapping (id, question_id, option_item_id, concern_id, match_operator, answer_value, mapping_score, severity, likelihood, hint_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('d17e4d95-54e4-4d65-b45b-09011183a42f', '0ce83598-0ad8-4fa9-9e72-e87656ecfafa', NULL, '9dfed160-c657-4192-b65f-cc60729bb1e0', 'equals', 'Y', '8.000', NULL, NULL, 'Technology exception | Risk acceptance | Security review', 20, TRUE, 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:51:06.967596'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_answer_concern_mapping (id, question_id, option_item_id, concern_id, match_operator, answer_value, mapping_score, severity, likelihood, hint_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('d40830a8-d548-4219-ae28-3127aef0284e', 'aea44852-ae3a-436b-8942-1c8605d19de3', NULL, 'c46eec72-b92a-4f2a-ac80-bd3097694729', 'equals', 'Yes', '4.000', '3.000', '2.000', NULL, 30, TRUE, 'migration_028', 'migration_028', '2026-06-24T11:30:56.408155'::TIMESTAMP, '2026-06-24T11:30:56.408155'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_answer_concern_mapping (id, question_id, option_item_id, concern_id, match_operator, answer_value, mapping_score, severity, likelihood, hint_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('d4b7c1dc-2ff0-405a-b3f1-d5c19ab373a7', '9004697e-ece3-4c75-980b-2ff2dd331c52', NULL, 'bf6048e2-2604-4d23-a2fa-aa3afae283b5', 'equals', 'Y', '8.000', NULL, NULL, 'Data flow | Lineage | Semantic consistency', 20, TRUE, 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:51:06.967596'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_answer_concern_mapping (id, question_id, option_item_id, concern_id, match_operator, answer_value, mapping_score, severity, likelihood, hint_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('d4e8f694-d839-4c48-b126-03b3a98a9556', 'ac1e0f11-c3d8-444c-9d47-1324ea31e57a', NULL, '0a9b2496-b20d-459c-a589-3620a78fedae', 'equals', 'Yes', '1.000', NULL, NULL, 'Assessment matrix: function area impact', 10, TRUE, 'migration_020', 'migration_020', '2026-06-22T18:51:07.389192'::TIMESTAMP, '2026-06-22T18:51:07.389192'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_answer_concern_mapping (id, question_id, option_item_id, concern_id, match_operator, answer_value, mapping_score, severity, likelihood, hint_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('d7276b53-53ba-4ab6-84e3-426a9c8438d6', '894652b0-82ca-4649-849d-6d7466123230', NULL, '0a56429c-278f-4160-99a3-75d7e1b91e09', 'equals', 'Yes', '6.000', '4.000', '3.000', NULL, 20, TRUE, 'migration_028', 'migration_028', '2026-06-24T11:30:56.408155'::TIMESTAMP, '2026-06-24T11:30:56.408155'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_answer_concern_mapping (id, question_id, option_item_id, concern_id, match_operator, answer_value, mapping_score, severity, likelihood, hint_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('d98343b8-9c4e-47ca-8deb-7324aa883eda', '7b69daa8-a783-4bb7-a901-470164bebec3', NULL, 'b0ae8094-e55d-449d-9fda-f30f918923a9', 'equals', '4-6', '5.000', '3.000', '3.000', NULL, 10, TRUE, 'migration_028', 'migration_028', '2026-06-24T11:30:56.408155'::TIMESTAMP, '2026-06-24T11:30:56.408155'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_answer_concern_mapping (id, question_id, option_item_id, concern_id, match_operator, answer_value, mapping_score, severity, likelihood, hint_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('d9f58b25-07c5-4556-9ffe-ab04841ba36a', 'b7fc4022-485d-450d-8076-673b288b55d0', NULL, 'b7751257-c599-4291-a108-43690f98bfcb', 'equals', '6+', '7.000', '4.000', '4.000', NULL, 10, TRUE, 'migration_028', 'migration_028', '2026-06-24T11:30:56.408155'::TIMESTAMP, '2026-06-24T11:30:56.408155'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_answer_concern_mapping (id, question_id, option_item_id, concern_id, match_operator, answer_value, mapping_score, severity, likelihood, hint_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('de5da2c9-49ea-4a09-a57b-28d5931139b0', 'a64b8e75-e77f-4f4f-a558-a731886248d3', NULL, '3827e763-ed52-440a-81fe-30e9cd10c279', 'equals', 'Y', '8.000', NULL, NULL, 'Application lifecycle | Migration path | Dependency retirement', 10, TRUE, 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:51:06.967596'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_answer_concern_mapping (id, question_id, option_item_id, concern_id, match_operator, answer_value, mapping_score, severity, likelihood, hint_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('dfbae93c-4efc-404a-95ae-ae08ba80e653', '17c83dcb-afd8-400d-bf2d-1532d51431c2', NULL, '3efe6823-5036-4d30-91d8-dfac1dd8d847', 'equals', 'Y', '8.000', NULL, NULL, 'Model dependency | AI governance | Inference/data risk', 40, TRUE, 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:51:06.967596'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_answer_concern_mapping (id, question_id, option_item_id, concern_id, match_operator, answer_value, mapping_score, severity, likelihood, hint_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('e0824573-0733-45b1-934e-55e68c131bf6', 'ba19c553-635b-472d-ada2-c14c835a502d', NULL, '9185b6da-ff40-459f-b2fe-f7fb4c2f0e9f', 'equals', 'Yes', '2.000', NULL, NULL, 'Assessment matrix: cross BU / GEO scope', 20, TRUE, 'migration_020', 'migration_020', '2026-06-22T18:51:07.389192'::TIMESTAMP, '2026-06-22T18:51:07.389192'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_answer_concern_mapping (id, question_id, option_item_id, concern_id, match_operator, answer_value, mapping_score, severity, likelihood, hint_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('e557dc86-0df3-45a8-b1fa-572b8170790e', 'f001514d-4951-4aa3-8403-44328ad54c61', NULL, '3efe6823-5036-4d30-91d8-dfac1dd8d847', 'equals', 'sensitive_personal', '8.000', '5.000', '5.000', NULL, 10, TRUE, 'migration_028', 'migration_028', '2026-06-24T11:30:56.408155'::TIMESTAMP, '2026-06-24T11:30:56.408155'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_answer_concern_mapping (id, question_id, option_item_id, concern_id, match_operator, answer_value, mapping_score, severity, likelihood, hint_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('e6a57d1a-b407-49c7-9fa6-da8d25b93d9b', '2b202d1c-4fde-4bbf-b0b0-8e019d056018', NULL, 'cdb6164a-9c95-4857-b20d-c5259ce2d130', 'equals', 'Y', '8.000', NULL, NULL, 'Reuse boundary | Shared service governance | Change blast radius', 40, TRUE, 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:51:06.967596'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_answer_concern_mapping (id, question_id, option_item_id, concern_id, match_operator, answer_value, mapping_score, severity, likelihood, hint_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('e73c5c84-2c3b-491a-9bea-2c9f7e8101ae', '49efaff1-0bfc-4d5a-afb3-060fedfaa28a', NULL, '33fa7d86-f251-4dfd-b58a-1cb730a8218f', 'equals', 'Y', '8.000', NULL, NULL, 'Channel architecture | Mobile runtime | External exposure', 50, TRUE, 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:51:06.967596'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_answer_concern_mapping (id, question_id, option_item_id, concern_id, match_operator, answer_value, mapping_score, severity, likelihood, hint_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('e87c900e-423c-408f-a3fb-4bc18a01c546', '700b260e-61fd-46c6-aacd-0d0c43a8b0ce', NULL, '9dfed160-c657-4192-b65f-cc60729bb1e0', 'equals', 'Y', '8.000', NULL, NULL, 'Privacy scope | Data classification | Protection controls', 50, TRUE, 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:51:06.967596'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_answer_concern_mapping (id, question_id, option_item_id, concern_id, match_operator, answer_value, mapping_score, severity, likelihood, hint_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('e90ce5a8-84e9-4ca4-bf28-a827ecd62749', 'fc6f72f5-6b16-4160-89ed-10a390ded5c9', NULL, '9185b6da-ff40-459f-b2fe-f7fb4c2f0e9f', 'equals', 'Y', '8.000', NULL, NULL, 'Deployment topology | Data residency | Regulatory location', 10, TRUE, 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:51:06.967596'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_answer_concern_mapping (id, question_id, option_item_id, concern_id, match_operator, answer_value, mapping_score, severity, likelihood, hint_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('e99c5756-9ea2-4059-8c6c-ad905672cad2', 'eedd3a88-ca35-4ed7-9b4e-2ca668b79e9c', NULL, '3827e763-ed52-440a-81fe-30e9cd10c279', 'equals', 'Y', '8.000', NULL, NULL, 'Vendor dependency | Integration boundary | Identity federation', 20, TRUE, 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:51:06.967596'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_answer_concern_mapping (id, question_id, option_item_id, concern_id, match_operator, answer_value, mapping_score, severity, likelihood, hint_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('e9c10a91-4748-4b37-a65a-9673f52f6285', 'cbc4531c-5a4b-49fc-9f52-9e26853b11b8', NULL, '33fa7d86-f251-4dfd-b58a-1cb730a8218f', 'equals', 'Y', '8.000', NULL, NULL, 'Identity architecture | SSO boundary | Compliance impact', 30, TRUE, 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:51:06.967596'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_answer_concern_mapping (id, question_id, option_item_id, concern_id, match_operator, answer_value, mapping_score, severity, likelihood, hint_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('eacae16c-6541-4362-8f3a-2314f0deda17', 'eedd3a88-ca35-4ed7-9b4e-2ca668b79e9c', NULL, '3e9d1504-b37a-4e94-abb3-7e142aeaf9b2', 'equals', 'Y', '8.000', NULL, NULL, 'Vendor dependency | Integration boundary | Identity federation', 40, TRUE, 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:51:06.967596'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_answer_concern_mapping (id, question_id, option_item_id, concern_id, match_operator, answer_value, mapping_score, severity, likelihood, hint_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('eb067ddf-e05d-4e12-86de-6c0827cb5581', 'aea44852-ae3a-436b-8942-1c8605d19de3', NULL, 'e0f38176-57f9-4c7f-8841-b224ab7c68ce', 'equals', 'Yes', '6.000', '4.000', '3.000', NULL, 10, TRUE, 'migration_028', 'migration_028', '2026-06-24T11:30:56.408155'::TIMESTAMP, '2026-06-24T11:30:56.408155'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_answer_concern_mapping (id, question_id, option_item_id, concern_id, match_operator, answer_value, mapping_score, severity, likelihood, hint_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('eb716678-b1fe-4c1f-aaf6-5ef398ffb9f9', 'eedd3a88-ca35-4ed7-9b4e-2ca668b79e9c', NULL, '9dfed160-c657-4192-b65f-cc60729bb1e0', 'equals', 'Y', '8.000', NULL, NULL, 'Vendor dependency | Integration boundary | Identity federation', 60, TRUE, 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:51:06.967596'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_answer_concern_mapping (id, question_id, option_item_id, concern_id, match_operator, answer_value, mapping_score, severity, likelihood, hint_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('ebb791c6-e1c7-41ef-bc89-3e868e1276ce', '362e9819-bfbe-4a4c-a102-ebe6e75f10a3', NULL, '2ee0c84b-8b62-4733-a7c1-23756dd4a878', 'equals', 'Y', '8.000', NULL, NULL, 'Platform architecture | Middleware dependency | Operational support', 20, TRUE, 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:51:06.967596'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_answer_concern_mapping (id, question_id, option_item_id, concern_id, match_operator, answer_value, mapping_score, severity, likelihood, hint_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('ebc2461e-2078-4b78-a6af-804b0087f09c', 'd7aeb818-e7d5-44b6-bf18-2b029ddd1c8b', NULL, '3e9d1504-b37a-4e94-abb3-7e142aeaf9b2', 'equals', 'Yes', '6.000', '4.000', '3.000', NULL, 20, TRUE, 'migration_028', 'migration_028', '2026-06-24T11:30:56.408155'::TIMESTAMP, '2026-06-24T11:30:56.408155'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_answer_concern_mapping (id, question_id, option_item_id, concern_id, match_operator, answer_value, mapping_score, severity, likelihood, hint_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('ebef4926-b19f-4eb0-b403-14b066c85ee8', '8afc058c-f2bb-4b1e-b36e-d9a0dbf4ffb0', NULL, '207c45e8-7e13-43a8-927f-b6e76c1ec5ab', 'equals', 'Y', '8.000', NULL, NULL, 'Protocol compatibility | Network design | Observability', 40, TRUE, 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:51:06.967596'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_answer_concern_mapping (id, question_id, option_item_id, concern_id, match_operator, answer_value, mapping_score, severity, likelihood, hint_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('ec27c57e-8264-46c7-9600-3957c8895fb4', 'b7fc4022-485d-450d-8076-673b288b55d0', NULL, 'be1af365-bc9c-4678-a0e1-18aa5eb3dc9a', 'equals', '6+', '7.000', '4.000', '4.000', NULL, 20, TRUE, 'migration_028', 'migration_028', '2026-06-24T11:30:56.408155'::TIMESTAMP, '2026-06-24T11:30:56.408155'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_answer_concern_mapping (id, question_id, option_item_id, concern_id, match_operator, answer_value, mapping_score, severity, likelihood, hint_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('f2ed314c-b969-402a-8423-988359fe9493', '17c83dcb-afd8-400d-bf2d-1532d51431c2', NULL, '9dfed160-c657-4192-b65f-cc60729bb1e0', 'equals', 'Y', '8.000', NULL, NULL, 'Model dependency | AI governance | Inference/data risk', 50, TRUE, 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:51:06.967596'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_answer_concern_mapping (id, question_id, option_item_id, concern_id, match_operator, answer_value, mapping_score, severity, likelihood, hint_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('f2f402ad-64f1-4014-bde8-3e095cfe6706', 'e1b8822b-d552-442a-a71f-223544c6df09', NULL, '28504628-97c3-432d-8a6a-78517e288efd', 'equals', 'Y', '8.000', NULL, NULL, 'Service authentication | Token flow | Security control', 10, TRUE, 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:51:06.967596'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_answer_concern_mapping (id, question_id, option_item_id, concern_id, match_operator, answer_value, mapping_score, severity, likelihood, hint_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('f3ab2ea3-bf47-45ed-b84d-bccc52cc7a03', '59a57cf4-c4e8-4f3a-b88c-c3ceb573bde1', NULL, 'c46eec72-b92a-4f2a-ac80-bd3097694729', 'equals', 'Yes', '7.000', '5.000', '4.000', NULL, 10, TRUE, 'migration_028', 'migration_028', '2026-06-24T11:30:56.408155'::TIMESTAMP, '2026-06-24T11:30:56.408155'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_answer_concern_mapping (id, question_id, option_item_id, concern_id, match_operator, answer_value, mapping_score, severity, likelihood, hint_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('f609a2ec-1dae-481d-9ce0-d083a1a5979d', 'bb27334e-9bd2-4702-8079-edf505230b1c', NULL, '29001e8b-7082-4ce1-971b-9220bd86b590', 'equals', 'Yes', '1.000', NULL, NULL, 'Assessment matrix: business process and organization change', 10, TRUE, 'migration_020', 'migration_020', '2026-06-22T18:51:07.389192'::TIMESTAMP, '2026-06-22T18:51:07.389192'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_answer_concern_mapping (id, question_id, option_item_id, concern_id, match_operator, answer_value, mapping_score, severity, likelihood, hint_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('f83a8b1e-7625-44c7-9c89-a3d67462c05f', '3caa4539-0192-4507-ad9e-67154ea9d633', NULL, '29001e8b-7082-4ce1-971b-9220bd86b590', 'equals', 'Y', '8.000', NULL, NULL, 'Business capability | Business process | Stakeholder alignment', 20, TRUE, 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:51:06.967596'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_answer_concern_mapping (id, question_id, option_item_id, concern_id, match_operator, answer_value, mapping_score, severity, likelihood, hint_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('fa5aa96d-c7c9-40c4-b0f1-bab23743e415', '0b71ea36-5250-4ee0-8f01-d6f5202d7b99', NULL, '3efe6823-5036-4d30-91d8-dfac1dd8d847', 'equals', 'Yes', '7.000', '5.000', '4.000', NULL, 10, TRUE, 'migration_028', 'migration_028', '2026-06-24T11:30:56.408155'::TIMESTAMP, '2026-06-24T11:30:56.408155'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_answer_concern_mapping (id, question_id, option_item_id, concern_id, match_operator, answer_value, mapping_score, severity, likelihood, hint_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('fa807add-c6e2-45c7-a552-aa7950adc87a', '6c7bfe77-8d16-478f-8bff-eb9de2b9f230', NULL, '3827e763-ed52-440a-81fe-30e9cd10c279', 'equals', 'Yes', '2.000', NULL, NULL, 'Assessment matrix: solution dependency complexity', 10, TRUE, 'migration_020', 'migration_020', '2026-06-22T18:51:07.389192'::TIMESTAMP, '2026-06-22T18:51:07.389192'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_answer_concern_mapping (id, question_id, option_item_id, concern_id, match_operator, answer_value, mapping_score, severity, likelihood, hint_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('fbc30afd-c0c8-4349-9210-9a305276661f', '362e9819-bfbe-4a4c-a102-ebe6e75f10a3', NULL, 'b7751257-c599-4291-a108-43690f98bfcb', 'equals', 'Y', '8.000', NULL, NULL, 'Platform architecture | Middleware dependency | Operational support', 10, TRUE, 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:51:06.967596'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_answer_concern_mapping (id, question_id, option_item_id, concern_id, match_operator, answer_value, mapping_score, severity, likelihood, hint_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('fc441c62-85e1-4b40-992c-e2834124c5fc', '6b6069f1-20e1-4406-86ef-1c3424b3d27a', NULL, 'd4afd8ac-cb51-459d-887d-128eef4f23a5', 'equals', 'Y', '8.000', NULL, NULL, 'Client architecture | Release governance | Security boundary', 10, TRUE, 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:51:06.967596'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_answer_concern_mapping (id, question_id, option_item_id, concern_id, match_operator, answer_value, mapping_score, severity, likelihood, hint_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('fd830ef0-de4b-4e07-b433-3be00be01836', 'a3ab0846-762f-48b5-87a6-9acdbeca039e', NULL, '0a56429c-278f-4160-99a3-75d7e1b91e09', 'equals', 'Yes', '7.000', '5.000', '4.000', NULL, 10, TRUE, 'migration_028', 'migration_028', '2026-06-24T11:30:56.408155'::TIMESTAMP, '2026-06-24T11:30:56.408155'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_answer_concern_mapping (id, question_id, option_item_id, concern_id, match_operator, answer_value, mapping_score, severity, likelihood, hint_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('fe8c7c28-e488-4d02-824d-d46faa63ef9c', '0b3669ba-6316-456e-9b9d-dc097d87b66e', NULL, '7e19731b-6f4c-49de-8af1-b2566ce8ae89', 'equals', '1-2', '3.000', '2.000', '2.000', NULL, 20, TRUE, 'migration_028', 'migration_028', '2026-06-24T11:30:56.408155'::TIMESTAMP, '2026-06-24T11:30:56.408155'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_question_answer_concern_mapping (id, question_id, option_item_id, concern_id, match_operator, answer_value, mapping_score, severity, likelihood, hint_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('ff410ffa-8d12-409e-a5b7-9ade9407c08b', '963ba85e-160d-4abc-a625-41951f6e5870', NULL, '33fa7d86-f251-4dfd-b58a-1cb730a8218f', 'equals', 'Yes', '5.000', '3.000', '3.000', NULL, 10, TRUE, 'migration_028', 'migration_028', '2026-06-24T11:30:56.408155'::TIMESTAMP, '2026-06-24T11:30:56.408155'::TIMESTAMP) ON CONFLICT DO NOTHING;
-- Table: eam.avdm_questionnaire_config
CREATE TABLE IF NOT EXISTS eam.avdm_questionnaire_config (
id UUID DEFAULT gen_random_uuid() PRIMARY KEY,
config_key VARCHAR NOT NULL,
config_json jsonb NOT NULL DEFAULT '{}'::jsonb,
version INTEGER NOT NULL DEFAULT 1,
change_note text,
create_by VARCHAR NOT NULL DEFAULT 'system'::character varying,
update_by VARCHAR NOT NULL DEFAULT 'system'::character varying,
create_at TIMESTAMP NOT NULL DEFAULT now(),
update_at TIMESTAMP NOT NULL DEFAULT now()
);
-- Table: eam.avdm_concern_activation_rule
CREATE TABLE IF NOT EXISTS eam.avdm_concern_activation_rule (
id UUID DEFAULT gen_random_uuid() PRIMARY KEY,
rule_key VARCHAR NOT NULL,
description text NOT NULL,
all_conditions jsonb NOT NULL DEFAULT '[]'::jsonb,
any_conditions jsonb NOT NULL DEFAULT '[]'::jsonb,
sort_order INTEGER NOT NULL DEFAULT 0,
is_active BOOLEAN NOT NULL DEFAULT true,
create_by VARCHAR NOT NULL DEFAULT 'system'::character varying,
update_by VARCHAR NOT NULL DEFAULT 'system'::character varying,
create_at TIMESTAMP NOT NULL DEFAULT now(),
update_at TIMESTAMP NOT NULL DEFAULT now()
);
-- Seed: eam.avdm_concern_activation_rule (4 rows)
-- 'cross-border-sensitive-data' is an ACTIVE combination rule in the full rule set: when cross-border
-- data flow combines with sensitive-data / checkpoint conditions it escalates D7, D9, SCR1, SCR7.
-- The AVDM manuscript walkthrough reports a selected single-signal activation trace that does not include
-- the checkpoint predicates required to trigger this rule; the rule remains active here by design.
INSERT INTO eam.avdm_concern_activation_rule (id, rule_key, description, all_conditions, any_conditions, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('164e153c-4911-4f5f-8a97-a3cc3f73eb12', 'cross-border-sensitive-data', 'Cross-border flow plus privacy or important data checkpoint escalates data sovereignty and compliance concerns.', '[{''equals'': ''Yes'', ''source'': ''complexitySection.hasCrossBorderDataFlow''}]', '[{''equals'': ''Y'', ''source'': ''question.9.answer''}, {''equals'': ''Yes'', ''source'': ''checkpoint2.required''}, {''equals'': ''Yes'', ''source'': ''checkpoint3.required''}, {''in'': [''Yes'', ''Not Sure''], ''source'': ''checkpoint3.crossBorderTransfer''}]', 20, TRUE, 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:53:45.117734'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_concern_activation_rule (id, rule_key, description, all_conditions, any_conditions, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('d0e55862-0f61-4c14-966d-f5016976f484', 'identity-and-authorization-combination', 'User group change combined with non-standard authentication or authorization requires identity/access concern review.', '[{''equals'': ''Y'', ''source'': ''question.7.answer''}, {''equals'': ''Y'', ''source'': ''question.19.answer''}]', '[{''equals'': ''Y'', ''source'': ''question.20.answer''}, {''equals'': ''Y'', ''source'': ''question.8.answer''}]', 10, TRUE, 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:53:45.117734'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_concern_activation_rule (id, rule_key, description, all_conditions, any_conditions, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('d553a41d-ccd4-4451-8a81-1fa27f7953f8', 'large-scale-integration', 'Large application scope with external systems activates integration, dependency, reliability, and capacity concerns.', '[{''in'': [''21_50'', ''51_100'', ''GT_100''], ''source'': ''projectScaleSection.applicationsInScope''}, {''equals'': ''Yes'', ''source'': ''projectScaleSection.hasExternalSystems''}]', '[]', 30, TRUE, 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:53:45.117734'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_concern_activation_rule (id, rule_key, description, all_conditions, any_conditions, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('e6b42b59-0787-46cb-9f63-2fabaefd51ea', 'technology-exception-stack-complexity', 'Technology exception combined with broad tech stack variety increases governance and operability concern priority.', '[{''equals'': ''Y'', ''source'': ''question.16.answer''}, {''in'': [''6_10'', ''GT_10''], ''source'': ''complexitySection.techStackKindsCount''}]', '[]', 40, TRUE, 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:53:45.117734'::TIMESTAMP) ON CONFLICT DO NOTHING;
-- Architecture Type activation rules (Phase 2): one rule per option of the 5 category multiselect
-- fields under architectureTypeSection. The question is rendered from questionnaireSections
-- (questionnaire_config.py / DEFAULT_QUESTIONNAIRE_CONFIG), NOT from avdm_question; these rules
-- consume the submitted keys architectureTypeSection.<field>.
-- NOTE: these are SINGLE-SIGNAL, array-valued activation rules (ALL = one 'in' condition over a
-- multiselect answer; ANY empty). Stored in avdm_concern_activation_rule because the answer is
-- array-valued; they are NOT combination rules.
INSERT INTO eam.avdm_concern_activation_rule (id, rule_key, description, all_conditions, any_conditions, sort_order, is_active, create_by, update_by, create_at, update_at)
SELECT gen_random_uuid(), m.rule_key, m.description, m.all_conditions::jsonb, '[]'::jsonb, m.sort_order, TRUE, 'avdm_seed', 'avdm_seed', now(), now()
FROM (VALUES
('at-business-capability_based', 'Architecture type (business): capability_based.', '[{"in": ["capability_based"], "source": "architectureTypeSection.businessArchitectureType"}]', 110),
('at-business-process_centric', 'Architecture type (business): process_centric.', '[{"in": ["process_centric"], "source": "architectureTypeSection.businessArchitectureType"}]', 120),
('at-business-customer_journey', 'Architecture type (business): customer_journey.', '[{"in": ["customer_journey"], "source": "architectureTypeSection.businessArchitectureType"}]', 130),
('at-business-multi_entity', 'Architecture type (business): multi_entity.', '[{"in": ["multi_entity"], "source": "architectureTypeSection.businessArchitectureType"}]', 140),
('at-business-platform_business', 'Architecture type (business): platform_business.', '[{"in": ["platform_business"], "source": "architectureTypeSection.businessArchitectureType"}]', 150),
('at-application-monolith', 'Architecture type (application): monolith.', '[{"in": ["monolith"], "source": "architectureTypeSection.applicationArchitectureType"}]', 160),
('at-application-modular_monolith', 'Architecture type (application): modular_monolith.', '[{"in": ["modular_monolith"], "source": "architectureTypeSection.applicationArchitectureType"}]', 170),
('at-application-microservices', 'Architecture type (application): microservices.', '[{"in": ["microservices"], "source": "architectureTypeSection.applicationArchitectureType"}]', 180),
('at-application-event_driven', 'Architecture type (application): event_driven.', '[{"in": ["event_driven"], "source": "architectureTypeSection.applicationArchitectureType"}]', 190),
('at-application-web_application', 'Architecture type (application): web_application.', '[{"in": ["web_application"], "source": "architectureTypeSection.applicationArchitectureType"}]', 200),
('at-application-mobile_or_client', 'Architecture type (application): mobile_or_client.', '[{"in": ["mobile_or_client"], "source": "architectureTypeSection.applicationArchitectureType"}]', 210),
('at-technical-cloud_native', 'Architecture type (technical): cloud_native.', '[{"in": ["cloud_native"], "source": "architectureTypeSection.technicalArchitectureType"}]', 220),
('at-technical-containerized', 'Architecture type (technical): containerized.', '[{"in": ["containerized"], "source": "architectureTypeSection.technicalArchitectureType"}]', 230),
('at-technical-on_premise', 'Architecture type (technical): on_premise.', '[{"in": ["on_premise"], "source": "architectureTypeSection.technicalArchitectureType"}]', 240),
('at-technical-hybrid_multicloud', 'Architecture type (technical): hybrid_multicloud.', '[{"in": ["hybrid_multicloud"], "source": "architectureTypeSection.technicalArchitectureType"}]', 250),
('at-technical-legacy_modernization', 'Architecture type (technical): legacy_modernization.', '[{"in": ["legacy_modernization"], "source": "architectureTypeSection.technicalArchitectureType"}]', 260),
('at-technical-high_availability', 'Architecture type (technical): high_availability.', '[{"in": ["high_availability"], "source": "architectureTypeSection.technicalArchitectureType"}]', 270),
('at-data-relational_oltp', 'Architecture type (data): relational_oltp.', '[{"in": ["relational_oltp"], "source": "architectureTypeSection.dataArchitectureType"}]', 280),
('at-data-data_warehouse', 'Architecture type (data): data_warehouse.', '[{"in": ["data_warehouse"], "source": "architectureTypeSection.dataArchitectureType"}]', 290),
('at-data-data_lake', 'Architecture type (data): data_lake.', '[{"in": ["data_lake"], "source": "architectureTypeSection.dataArchitectureType"}]', 300),
('at-data-streaming', 'Architecture type (data): streaming.', '[{"in": ["streaming"], "source": "architectureTypeSection.dataArchitectureType"}]', 310),
('at-data-ai_ml', 'Architecture type (data): ai_ml.', '[{"in": ["ai_ml"], "source": "architectureTypeSection.dataArchitectureType"}]', 320),
('at-data-llm_rag', 'Architecture type (data): llm_rag.', '[{"in": ["llm_rag"], "source": "architectureTypeSection.dataArchitectureType"}]', 330),
('at-data-master_data', 'Architecture type (data): master_data.', '[{"in": ["master_data"], "source": "architectureTypeSection.dataArchitectureType"}]', 340),
('at-security-zero_trust', 'Architecture type (security): zero_trust.', '[{"in": ["zero_trust"], "source": "architectureTypeSection.securityArchitectureType"}]', 350),
('at-security-iam_integration', 'Architecture type (security): iam_integration.', '[{"in": ["iam_integration"], "source": "architectureTypeSection.securityArchitectureType"}]', 360),
('at-security-perimeter_network', 'Architecture type (security): perimeter_network.', '[{"in": ["perimeter_network"], "source": "architectureTypeSection.securityArchitectureType"}]', 370),
('at-security-data_protection', 'Architecture type (security): data_protection.', '[{"in": ["data_protection"], "source": "architectureTypeSection.securityArchitectureType"}]', 380),
('at-security-compliance_driven', 'Architecture type (security): compliance_driven.', '[{"in": ["compliance_driven"], "source": "architectureTypeSection.securityArchitectureType"}]', 390),
('at-security-cross_border', 'Architecture type (security): cross_border.', '[{"in": ["cross_border"], "source": "architectureTypeSection.securityArchitectureType"}]', 400)
) AS m(rule_key, description, all_conditions, sort_order)
WHERE NOT EXISTS (
SELECT 1 FROM eam.avdm_concern_activation_rule existing WHERE existing.rule_key = m.rule_key
);
-- Table: eam.avdm_concern_activation_rule_score
CREATE TABLE IF NOT EXISTS eam.avdm_concern_activation_rule_score (
id UUID DEFAULT gen_random_uuid() PRIMARY KEY,
rule_id UUID NOT NULL,
concern_id UUID NOT NULL,
mapping_score NUMERIC NOT NULL DEFAULT 0,
severity NUMERIC,
likelihood NUMERIC,
note_text text,
sort_order INTEGER NOT NULL DEFAULT 0,
is_active BOOLEAN NOT NULL DEFAULT true,
create_by VARCHAR NOT NULL DEFAULT 'system'::character varying,
update_by VARCHAR NOT NULL DEFAULT 'system'::character varying,
create_at TIMESTAMP NOT NULL DEFAULT now(),
update_at TIMESTAMP NOT NULL DEFAULT now()
);
-- Seed: eam.avdm_concern_activation_rule_score (21 rows)
INSERT INTO eam.avdm_concern_activation_rule_score (id, rule_id, concern_id, mapping_score, severity, likelihood, note_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('0982bf79-2f94-4071-b6fe-f8faf5b9d136', 'd553a41d-ccd4-4451-8a81-1fa27f7953f8', '38ca83cc-361b-4dce-8973-e67156a8d8d1', '10.000', NULL, NULL, NULL, 40, TRUE, 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:53:45.117734'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_concern_activation_rule_score (id, rule_id, concern_id, mapping_score, severity, likelihood, note_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('15809e34-6475-4e31-a04c-cee0e74e7fbe', '164e153c-4911-4f5f-8a97-a3cc3f73eb12', 'e092f5e0-16f3-47f3-8343-bd77d8967788', '15.000', NULL, NULL, NULL, 10, TRUE, 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:53:45.117734'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_concern_activation_rule_score (id, rule_id, concern_id, mapping_score, severity, likelihood, note_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('188ac1d9-f8dc-415d-ba4c-9f150509a9e9', '164e153c-4911-4f5f-8a97-a3cc3f73eb12', '9185b6da-ff40-459f-b2fe-f7fb4c2f0e9f', '15.000', NULL, NULL, NULL, 20, TRUE, 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:53:45.117734'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_concern_activation_rule_score (id, rule_id, concern_id, mapping_score, severity, likelihood, note_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('18ac100a-afbe-479f-b6a5-f0f54950c517', 'e6b42b59-0787-46cb-9f63-2fabaefd51ea', 'ef915c8b-811d-47ff-a417-35c7568ed117', '12.000', NULL, NULL, NULL, 40, TRUE, 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:53:45.117734'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_concern_activation_rule_score (id, rule_id, concern_id, mapping_score, severity, likelihood, note_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('1c9cfd61-377c-4b6e-b231-14e9a6ce38dc', 'd0e55862-0f61-4c14-966d-f5016976f484', '9dfed160-c657-4192-b65f-cc60729bb1e0', '12.000', NULL, NULL, NULL, 40, TRUE, 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:53:45.117734'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_concern_activation_rule_score (id, rule_id, concern_id, mapping_score, severity, likelihood, note_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('26cbf8d6-e920-41aa-b7d7-ccf5ce042742', 'e6b42b59-0787-46cb-9f63-2fabaefd51ea', '40648691-6e25-4026-aff2-14e8803094fe', '12.000', NULL, NULL, NULL, 50, TRUE, 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:53:45.117734'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_concern_activation_rule_score (id, rule_id, concern_id, mapping_score, severity, likelihood, note_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('32bba2f3-773e-4ecb-98ac-5e879a13260d', 'd553a41d-ccd4-4451-8a81-1fa27f7953f8', 'e0f38176-57f9-4c7f-8841-b224ab7c68ce', '10.000', NULL, NULL, NULL, 20, TRUE, 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:53:45.117734'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_concern_activation_rule_score (id, rule_id, concern_id, mapping_score, severity, likelihood, note_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('428b8c8b-8f38-4412-b292-b73868077361', 'e6b42b59-0787-46cb-9f63-2fabaefd51ea', '3efe6823-5036-4d30-91d8-dfac1dd8d847', '12.000', NULL, NULL, NULL, 20, TRUE, 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:53:45.117734'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_concern_activation_rule_score (id, rule_id, concern_id, mapping_score, severity, likelihood, note_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('482b3c42-5a59-435d-9cad-435dedffe1ef', 'e6b42b59-0787-46cb-9f63-2fabaefd51ea', '2fdc5548-aae8-4073-a863-177d95264e9d', '12.000', NULL, NULL, NULL, 60, TRUE, 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:53:45.117734'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_concern_activation_rule_score (id, rule_id, concern_id, mapping_score, severity, likelihood, note_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('4ef9f1ff-cfb2-4e44-879e-bf33664c9a8c', 'e6b42b59-0787-46cb-9f63-2fabaefd51ea', 'b7751257-c599-4291-a108-43690f98bfcb', '12.000', NULL, NULL, NULL, 10, TRUE, 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:53:45.117734'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_concern_activation_rule_score (id, rule_id, concern_id, mapping_score, severity, likelihood, note_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('52925543-408b-4c6e-9be8-17e5a56c812c', '164e153c-4911-4f5f-8a97-a3cc3f73eb12', '9dfed160-c657-4192-b65f-cc60729bb1e0', '15.000', NULL, NULL, NULL, 40, TRUE, 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:53:45.117734'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_concern_activation_rule_score (id, rule_id, concern_id, mapping_score, severity, likelihood, note_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('5358545e-a910-4783-9052-f2a6e2739104', 'e6b42b59-0787-46cb-9f63-2fabaefd51ea', '9dfed160-c657-4192-b65f-cc60729bb1e0', '12.000', NULL, NULL, NULL, 30, TRUE, 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:53:45.117734'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_concern_activation_rule_score (id, rule_id, concern_id, mapping_score, severity, likelihood, note_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('633c8ef0-6254-4dd7-8d28-b4f4bfb9ba8e', 'd553a41d-ccd4-4451-8a81-1fa27f7953f8', '3827e763-ed52-440a-81fe-30e9cd10c279', '10.000', NULL, NULL, NULL, 10, TRUE, 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:53:45.117734'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_concern_activation_rule_score (id, rule_id, concern_id, mapping_score, severity, likelihood, note_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('7754f361-abd9-4119-b40e-f69dda8a052b', 'd553a41d-ccd4-4451-8a81-1fa27f7953f8', '4b7a1ac7-fc11-4391-9902-c5c632f4acad', '10.000', NULL, NULL, NULL, 70, TRUE, 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:53:45.117734'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_concern_activation_rule_score (id, rule_id, concern_id, mapping_score, severity, likelihood, note_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('7d17eba4-38b2-4adb-bba7-58d34a0cd557', 'd553a41d-ccd4-4451-8a81-1fa27f7953f8', '7a454779-a4bd-4c9d-9f02-dc0774f78ec5', '10.000', NULL, NULL, NULL, 50, TRUE, 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:53:45.117734'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_concern_activation_rule_score (id, rule_id, concern_id, mapping_score, severity, likelihood, note_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('8638a0f9-e457-48a3-a8b9-5004a1a374d9', 'd553a41d-ccd4-4451-8a81-1fa27f7953f8', 'f2fa6488-c455-4103-85ef-993d180b2baf', '10.000', NULL, NULL, NULL, 30, TRUE, 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:53:45.117734'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_concern_activation_rule_score (id, rule_id, concern_id, mapping_score, severity, likelihood, note_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('93aee5a8-225d-4abe-9859-50b9b24fc3dc', 'd0e55862-0f61-4c14-966d-f5016976f484', 'ce132670-3e9a-4606-a407-291eff16446e', '12.000', NULL, NULL, NULL, 10, TRUE, 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:53:45.117734'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_concern_activation_rule_score (id, rule_id, concern_id, mapping_score, severity, likelihood, note_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('a809f008-4828-4840-b629-f85b4b7487cc', 'd0e55862-0f61-4c14-966d-f5016976f484', 'd907b90d-a1ad-46a5-b24d-164181c8ac12', '12.000', NULL, NULL, NULL, 30, TRUE, 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:53:45.117734'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_concern_activation_rule_score (id, rule_id, concern_id, mapping_score, severity, likelihood, note_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('b7f1047b-bcef-4147-94f4-ea2f7b3f289c', '164e153c-4911-4f5f-8a97-a3cc3f73eb12', '28504628-97c3-432d-8a6a-78517e288efd', '15.000', NULL, NULL, NULL, 30, TRUE, 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:53:45.117734'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_concern_activation_rule_score (id, rule_id, concern_id, mapping_score, severity, likelihood, note_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('e2141b1e-d2e0-4a3a-8a6d-4a79c592ef8e', 'd553a41d-ccd4-4451-8a81-1fa27f7953f8', 'ccf8abd3-3794-4c3b-8f30-6d72d8b29815', '10.000', NULL, NULL, NULL, 60, TRUE, 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:53:45.117734'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_concern_activation_rule_score (id, rule_id, concern_id, mapping_score, severity, likelihood, note_text, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('e7bb5410-b10a-4e16-92d8-417e04e7301f', 'd0e55862-0f61-4c14-966d-f5016976f484', '33fa7d86-f251-4dfd-b58a-1cb730a8218f', '12.000', NULL, NULL, NULL, 20, TRUE, 'migration_017', 'migration_017', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-22T18:53:45.117734'::TIMESTAMP) ON CONFLICT DO NOTHING;
-- Phase 2 cleanup: remove Phase 1 single-question architecture-type rules and scores.
DELETE FROM eam.avdm_concern_activation_rule_score WHERE rule_id IN (SELECT id FROM eam.avdm_concern_activation_rule WHERE rule_key LIKE 'arch-type-%');
DELETE FROM eam.avdm_concern_activation_rule WHERE rule_key LIKE 'arch-type-%';
-- Architecture Type rule scores (Phase 2). All concern keys are active + viewpoint-mapped.
INSERT INTO eam.avdm_concern_activation_rule_score (id, rule_id, concern_id, mapping_score, severity, likelihood, note_text, sort_order, is_active, create_by, update_by, create_at, update_at)
SELECT gen_random_uuid(), r.id, c.id, m.score, NULL, NULL, NULL, m.sort_order, TRUE, 'avdm_seed', 'avdm_seed', now(), now()
FROM (VALUES
('at-business-capability_based', 'B1', 8.0, 10),
('at-business-capability_based', 'B5', 8.0, 20),
('at-business-process_centric', 'B2', 8.0, 10),
('at-business-process_centric', 'IP5', 8.0, 20),
('at-business-process_centric', 'IP4', 8.0, 30),
('at-business-customer_journey', 'B3', 8.0, 10),
('at-business-customer_journey', 'A4', 8.0, 20),
('at-business-multi_entity', 'B4', 8.0, 10),
('at-business-multi_entity', 'B5', 8.0, 20),
('at-business-multi_entity', 'AGD5', 8.0, 30),
('at-business-platform_business', 'B1', 8.0, 10),
('at-business-platform_business', 'B5', 8.0, 20),
('at-business-platform_business', 'A3', 8.0, 30),
('at-application-monolith', 'A2', 8.0, 10),
('at-application-monolith', 'C1', 8.0, 20),
('at-application-modular_monolith', 'A1', 8.0, 10),
('at-application-modular_monolith', 'A2', 8.0, 20),
('at-application-modular_monolith', 'C2', 8.0, 30),
('at-application-microservices', 'C1', 8.0, 10),
('at-application-microservices', 'C2', 8.0, 20),
('at-application-microservices', 'A3', 8.0, 30),
('at-application-microservices', 'C5', 8.0, 40),
('at-application-event_driven', 'C5', 8.0, 10),
('at-application-event_driven', 'IP5', 8.0, 20),
('at-application-event_driven', 'IP6', 8.0, 30),
('at-application-web_application', 'A1', 8.0, 10),
('at-application-web_application', 'A2', 8.0, 20),
('at-application-web_application', 'A4', 8.0, 30),
('at-application-mobile_or_client', 'A1', 8.0, 10),
('at-application-mobile_or_client', 'A4', 8.0, 20),
('at-application-mobile_or_client', 'C5', 8.0, 30),
('at-technical-cloud_native', 'C4', 8.0, 10),
('at-technical-cloud_native', 'DIN3', 8.0, 20),
('at-technical-cloud_native', 'DIN4', 8.0, 30),
('at-technical-containerized', 'C1', 8.0, 10),
('at-technical-containerized', 'DIN3', 8.0, 20),
('at-technical-containerized', 'DIN4', 8.0, 30),
('at-technical-on_premise', 'DIP8', 8.0, 10),
('at-technical-on_premise', 'DIN3', 8.0, 20),
('at-technical-hybrid_multicloud', 'DIP7', 8.0, 10),
('at-technical-hybrid_multicloud', 'DIP8', 8.0, 20),
('at-technical-hybrid_multicloud', 'DIN3', 8.0, 30),
('at-technical-legacy_modernization', 'AGD2', 8.0, 10),
('at-technical-legacy_modernization', 'C3', 8.0, 20),
('at-technical-legacy_modernization', 'C4', 8.0, 30),
('at-technical-high_availability', 'OR2', 8.0, 10),
('at-technical-high_availability', 'OR3', 8.0, 20),
('at-technical-high_availability', 'A6', 8.0, 30),
('at-data-relational_oltp', 'D5', 8.0, 10),
('at-data-relational_oltp', 'D10', 8.0, 20),
('at-data-relational_oltp', 'D11', 8.0, 30),
('at-data-data_warehouse', 'D1', 8.0, 10),
('at-data-data_warehouse', 'D2', 8.0, 20),
('at-data-data_warehouse', 'D4', 8.0, 30),
('at-data-data_lake', 'D3', 8.0, 10),
('at-data-data_lake', 'D8', 8.0, 20),
('at-data-data_lake', 'D6', 8.0, 30),
('at-data-streaming', 'D8', 8.0, 10),
('at-data-streaming', 'IP6', 8.0, 20),
('at-data-streaming', 'OR4', 8.0, 30),
('at-data-ai_ml', 'D6', 8.0, 10),
('at-data-ai_ml', 'D3', 8.0, 20),
('at-data-ai_ml', 'OR4', 8.0, 30),
('at-data-llm_rag', 'D6', 8.0, 10),
('at-data-llm_rag', 'D7', 8.0, 20),
('at-data-llm_rag', 'SCR1', 8.0, 30),
('at-data-llm_rag', 'OR4', 8.0, 40),
('at-data-master_data', 'D4', 8.0, 10),
('at-data-master_data', 'D5', 8.0, 20),
('at-data-master_data', 'D6', 8.0, 30),
('at-security-zero_trust', 'SCR1', 8.0, 10),
('at-security-zero_trust', 'SCR4', 8.0, 20),
('at-security-zero_trust', 'SCR5', 8.0, 30),
('at-security-iam_integration', 'SCR4', 8.0, 10),
('at-security-iam_integration', 'SCR5', 8.0, 20),
('at-security-iam_integration', 'SCR6', 8.0, 30),
('at-security-iam_integration', 'A4', 8.0, 40),
('at-security-perimeter_network', 'SCR1', 8.0, 10),
('at-security-perimeter_network', 'SCR3', 8.0, 20),
('at-security-perimeter_network', 'DIP8', 8.0, 30),
('at-security-data_protection', 'SCR1', 8.0, 10),
('at-security-data_protection', 'SCR2', 8.0, 20),
('at-security-data_protection', 'D7', 8.0, 30),
('at-security-compliance_driven', 'SCR7', 8.0, 10),
('at-security-compliance_driven', 'D7', 8.0, 20),
('at-security-compliance_driven', 'AGD1', 8.0, 30),
('at-security-cross_border', 'D9', 8.0, 10),
('at-security-cross_border', 'D7', 8.0, 20),
('at-security-cross_border', 'DIP7', 8.0, 30),
('at-security-cross_border', 'SCR7', 8.0, 40)
) AS m(rule_key, concern_key, score, sort_order)
JOIN eam.avdm_concern_activation_rule r ON r.rule_key = m.rule_key
JOIN eam.avdm_pact_concern c ON c.concern_key = m.concern_key
WHERE NOT EXISTS (
SELECT 1 FROM eam.avdm_concern_activation_rule_score s WHERE s.rule_id = r.id AND s.concern_id = c.id
);
-- Table: eam.avdm_artifact
CREATE TABLE IF NOT EXISTS eam.avdm_artifact (
id UUID DEFAULT gen_random_uuid() PRIMARY KEY,
artifact_key VARCHAR NOT NULL,
artifact_category_id UUID NOT NULL,
artifact_name VARCHAR NOT NULL,
purpose text NOT NULL,
stage VARCHAR NOT NULL DEFAULT 'Preparation'::character varying,
typical_contents jsonb NOT NULL DEFAULT '[]'::jsonb,
sort_order INTEGER NOT NULL DEFAULT 0,
is_active BOOLEAN NOT NULL DEFAULT true,
create_by VARCHAR NOT NULL DEFAULT 'system'::character varying,
update_by VARCHAR NOT NULL DEFAULT 'system'::character varying,
create_at TIMESTAMP NOT NULL DEFAULT now(),
update_at TIMESTAMP NOT NULL DEFAULT now()
);
-- Seed: eam.avdm_artifact (11 rows)
INSERT INTO eam.avdm_artifact (id, artifact_key, artifact_category_id, artifact_name, purpose, stage, typical_contents, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('0c1fdebb-5bc1-452f-a489-d34622a8ab4e', 'tech_diagram', 'bb51c2f4-1a88-43ad-a546-aac1c59009c9', 'Technical Architecture Diagram', 'Shows the major technical components, runtime units, boundaries, and relationships.', 'Preparation', '[]', 1, TRUE, 'migration_017', 'dev_admin', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-23T23:19:21.201124'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_artifact (id, artifact_key, artifact_category_id, artifact_name, purpose, stage, typical_contents, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('0e15f6f6-4341-41ba-9e2f-0d8b98e8b499', 'resource_list', '710e6321-33a7-4fc9-8e45-01c74ab6309d', 'Resource List', 'Provides an inventory of systems, services, environments, and deployed resources.', 'Preparation', '[]', 11, TRUE, 'migration_017', 'dev_admin', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-23T23:19:21.201124'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_artifact (id, artifact_key, artifact_category_id, artifact_name, purpose, stage, typical_contents, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('10864a32-7397-4ae6-9087-bbc5af706920', 'system_process_flow', 'd0e4d40f-1cfb-4289-b4a9-8e612c3f8bed', 'System Process Flow Diagram', 'Shows runtime execution flow, orchestration, retries, and processing logic.', 'Preparation', '[]', 10, TRUE, 'migration_017', 'dev_admin', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-23T23:19:21.201124'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_artifact (id, artifact_key, artifact_category_id, artifact_name, purpose, stage, typical_contents, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('2cace55f-0227-48f5-861e-ac4f86d983e7', 'app_collab', 'bb51c2f4-1a88-43ad-a546-aac1c59009c9', 'Application Collaboration Diagram', 'Illustrates communication and dependency relationships between applications.', 'Preparation', '[]', 2, TRUE, 'migration_017', 'dev_admin', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-23T23:19:21.201124'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_artifact (id, artifact_key, artifact_category_id, artifact_name, purpose, stage, typical_contents, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('3980d626-dea4-4e27-b197-6be8716d0c48', 'auth_flow', 'e9af8014-72e4-4777-9975-d4ddc5b1fa93', 'Auth Flow Diagram', 'Describes authentication, authorization, token exchange, and trust boundaries.', 'Preparation', '[]', 7, TRUE, 'migration_017', 'dev_admin', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-23T23:19:21.201124'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_artifact (id, artifact_key, artifact_category_id, artifact_name, purpose, stage, typical_contents, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('3dd880b0-72c2-4009-9185-dfd7876c5544', 'biz_diagram', '96bb2369-64e9-4872-b115-9179f7ac8a84', 'Business Diagram', 'Represents high-level business structures such as capabilities, actors, organizations, and interactions.', 'Preparation', '[]', 3, TRUE, 'migration_017', 'dev_admin', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-23T23:19:21.201124'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_artifact (id, artifact_key, artifact_category_id, artifact_name, purpose, stage, typical_contents, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('461007d7-b9ba-4f60-adba-0873d1bbfb9a', 'data_compliance_diagram', '0bf36d1c-65d3-469a-ab00-07d3fffc34f7', 'Data Compliance Diagram', 'Shows regulatory, residency, and control boundaries for sensitive data.', 'Preparation', '[]', 4, TRUE, 'migration_017', 'dev_admin', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-23T23:19:21.201124'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_artifact (id, artifact_key, artifact_category_id, artifact_name, purpose, stage, typical_contents, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('85c3e85d-f80c-4389-9f48-8b3399a3d166', 'business_process', 'd0e4d40f-1cfb-4289-b4a9-8e612c3f8bed', 'Business Process Diagram', 'Represents workflow, decision paths, and activity execution across roles and systems.', 'Preparation', '[]', 8, TRUE, 'migration_017', 'dev_admin', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-23T23:19:21.201124'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_artifact (id, artifact_key, artifact_category_id, artifact_name, purpose, stage, typical_contents, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('9c71a803-e029-467d-b261-76382159eb34', 'data_asset_matrix', '0bf36d1c-65d3-469a-ab00-07d3fffc34f7', 'Data Asset Matrix', 'Maps data assets to ownership, classification, value, and usage.', 'Preparation', '[]', 6, TRUE, 'migration_017', 'dev_admin', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-23T23:19:21.201124'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_artifact (id, artifact_key, artifact_category_id, artifact_name, purpose, stage, typical_contents, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('c30e2a0e-7e2d-4ab3-b02c-c1f8ba43b871', 'data_model', '0bf36d1c-65d3-469a-ab00-07d3fffc34f7', 'Data Model Diagram', 'Defines entities, relationships, and key structural attributes for data architecture.', 'Preparation', '[]', 5, TRUE, 'migration_017', 'dev_admin', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-23T23:19:21.201124'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_artifact (id, artifact_key, artifact_category_id, artifact_name, purpose, stage, typical_contents, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('d407ec10-7dcd-4778-8186-d584c2163f1f', 'data_pipeline', '0bf36d1c-65d3-469a-ab00-07d3fffc34f7', 'Data Pipeline Diagram', 'Shows movement, transformation, and processing stages for data pipelines.', 'Preparation', '[]', 9, TRUE, 'migration_017', 'dev_admin', '2026-06-22T18:51:06.967596'::TIMESTAMP, '2026-06-23T23:19:21.201124'::TIMESTAMP) ON CONFLICT DO NOTHING;
-- Removed: eam.avdm_concern_artifact_mapping (direct concern -> artifact shortcut).
-- The canonical AVDM chain is concern -> viewpoint -> artifact.
DROP TABLE IF EXISTS eam.avdm_concern_artifact_mapping CASCADE;
-- Table: eam.avdm_viewpoint
CREATE TABLE IF NOT EXISTS eam.avdm_viewpoint (
id UUID DEFAULT gen_random_uuid() PRIMARY KEY,
viewpoint_number INTEGER NOT NULL,
layer_name VARCHAR NOT NULL,
viewpoint_name VARCHAR NOT NULL,
logical_physical VARCHAR,
structure_behavior VARCHAR,
purpose text,
example text,
primary_source VARCHAR,
audience VARCHAR,
notes text,
sort_order INTEGER NOT NULL DEFAULT 0,
is_active BOOLEAN NOT NULL DEFAULT true,
create_by VARCHAR NOT NULL DEFAULT 'system'::character varying,
update_by VARCHAR NOT NULL DEFAULT 'system'::character varying,
create_at TIMESTAMP NOT NULL DEFAULT now(),
update_at TIMESTAMP NOT NULL DEFAULT now()
);
-- Seed: eam.avdm_viewpoint (45 rows)
INSERT INTO eam.avdm_viewpoint (id, viewpoint_number, layer_name, viewpoint_name, logical_physical, structure_behavior, purpose, example, primary_source, audience, notes, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('0abb506a-e351-4746-813a-aa49eaf757e1', 29, 'Data Architecture', 'Data Sovereignty View', 'P', 'S', 'Data residency and cross-border compliance boundaries.', 'CN-only / EU-only datasets', 'Legal / GDPR', 'Compliance / EA', 'Affects deployment and access.', 29, TRUE, 'csv_import', 'csv_import', '2026-06-23T16:47:14.632271'::TIMESTAMP, '2026-06-23T16:47:14.632271'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_viewpoint (id, viewpoint_number, layer_name, viewpoint_name, logical_physical, structure_behavior, purpose, example, primary_source, audience, notes, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('0cd5d96e-3bd2-4efe-8636-5bb611c25956', 19, 'Integration and Processing', 'Process Flow View', 'L', 'B', 'Executable business or technical workflow.', 'KYC -> Risk Scan -> Approve', 'BPMN', 'Product / SRE', 'Execution-level orchestration.', 19, TRUE, 'csv_import', 'csv_import', '2026-06-23T16:47:14.632271'::TIMESTAMP, '2026-06-23T16:47:14.632271'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_viewpoint (id, viewpoint_number, layer_name, viewpoint_name, logical_physical, structure_behavior, purpose, example, primary_source, audience, notes, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('1301a846-6524-499a-951d-37822ad705ae', 5, 'Business / Organization Layer', 'Interaction and Influence View', 'L', 'S', 'Influence and decision flow across teams and domains.', 'Biz -> Data -> Infra', 'EA', 'Product / Dev', 'Crosses process and capability.', 5, TRUE, 'csv_import', 'csv_import', '2026-06-23T16:47:14.632271'::TIMESTAMP, '2026-06-23T16:47:14.632271'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_viewpoint (id, viewpoint_number, layer_name, viewpoint_name, logical_physical, structure_behavior, purpose, example, primary_source, audience, notes, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('1662d4f7-2c16-4192-8db7-5a7200c7f435', 13, 'Container / Component / Technical Service', 'Technical Stack View', 'P', 'S', 'Language, framework, runtime, and platform stack.', 'Java + Spring Boot + Redis + k8s', 'SA / Dev / Infra', 'Dev / Ops', 'Implementation mapping.', 13, TRUE, 'csv_import', 'csv_import', '2026-06-23T16:47:14.632271'::TIMESTAMP, '2026-06-23T16:47:14.632271'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_viewpoint (id, viewpoint_number, layer_name, viewpoint_name, logical_physical, structure_behavior, purpose, example, primary_source, audience, notes, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('23576827-f9f1-4ab2-9734-1eee7f01f613', 8, 'Context and Application Architecture', 'Application Interaction / Impact View', 'L', 'B', 'Application dependencies, events, and impact propagation.', 'Service A -> Service B -> Event', 'C4 / Event Storming', 'Dev / Product', 'Behavior and impact chain.', 8, TRUE, 'csv_import', 'csv_import', '2026-06-23T16:47:14.632271'::TIMESTAMP, '2026-06-23T16:47:14.632271'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_viewpoint (id, viewpoint_number, layer_name, viewpoint_name, logical_physical, structure_behavior, purpose, example, primary_source, audience, notes, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('2a487898-5a01-440a-a40c-1fa5d0261e5f', 21, 'Data Architecture', 'Business Data Flow View', 'L', 'B', 'Data inputs and outputs between business actions.', 'Order -> Billing -> Invoice', 'EA / Business Arch', 'Product / Ops', 'Business-focused data movement.', 21, TRUE, 'csv_import', 'csv_import', '2026-06-23T16:47:14.632271'::TIMESTAMP, '2026-06-23T16:47:14.632271'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_viewpoint (id, viewpoint_number, layer_name, viewpoint_name, logical_physical, structure_behavior, purpose, example, primary_source, audience, notes, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('32d718bb-e8dc-44b0-b4ce-9e97e2f823ec', 22, 'Data Architecture', 'Data Evolution / Derivation View', 'L/P', 'B', 'Data transformation, derivation logic, and algorithms.', 'Raw Clicks -> Session -> Feature', 'Data Gov / Data Eng', 'Data Eng / ML', 'Focus on derivation logic.', 22, TRUE, 'csv_import', 'csv_import', '2026-06-23T16:47:14.632271'::TIMESTAMP, '2026-06-23T16:47:14.632271'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_viewpoint (id, viewpoint_number, layer_name, viewpoint_name, logical_physical, structure_behavior, purpose, example, primary_source, audience, notes, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('3f0bc38e-1e07-40e1-9741-60fbba96b2ac', 33, 'Security / Risk Architecture', 'Risk / Threat Modeling View', 'L/P', 'S/B', 'Threat modeling and attack surface analysis.', 'Phishing -> Priv Esc -> DB', 'STRIDE / MITRE ATT&CK', 'Security / Risk', 'Used for mitigation design.', 33, TRUE, 'csv_import', 'csv_import', '2026-06-23T16:47:14.632271'::TIMESTAMP, '2026-06-23T16:47:14.632271'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_viewpoint (id, viewpoint_number, layer_name, viewpoint_name, logical_physical, structure_behavior, purpose, example, primary_source, audience, notes, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('438072e7-8cda-43c2-a80f-a8a6de5376dc', 14, 'Container / Component / Technical Service', 'Communication / Protocol View', 'L/P', 'S/B', 'Communication protocols, message formats, and interaction patterns.', 'REST / gRPC / MQ / PubSub / MTLS', 'UML / Network Docs', 'Dev / SRE / Security', 'Includes QoS and format constraints.', 14, TRUE, 'csv_import', 'csv_import', '2026-06-23T16:47:14.632271'::TIMESTAMP, '2026-06-23T16:47:14.632271'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_viewpoint (id, viewpoint_number, layer_name, viewpoint_name, logical_physical, structure_behavior, purpose, example, primary_source, audience, notes, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('44c9c3f6-b15f-44ad-be79-68bda49f0228', 4, 'Business / Organization Layer', 'Organizational View', 'L', 'S', 'Departments, responsibilities, RACI, and governance structures.', 'IT Ops -> Owner', 'EA / Governance', 'Exec / EA', 'Organization and responsibility mapping.', 4, TRUE, 'csv_import', 'csv_import', '2026-06-23T16:47:14.632271'::TIMESTAMP, '2026-06-23T16:47:14.632271'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_viewpoint (id, viewpoint_number, layer_name, viewpoint_name, logical_physical, structure_behavior, purpose, example, primary_source, audience, notes, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('45d10e3c-f5a3-48e0-9e53-ed1d342bb845', 1, 'Business / Organization Layer', 'Business Capability View', 'L', 'S', 'High-level business capability structure and capability map.', 'Sales / Billing / Risk', 'TOGAF', 'Exec / EA', 'Capability and prioritization.', 1, TRUE, 'csv_import', 'csv_import', '2026-06-23T16:47:14.632271'::TIMESTAMP, '2026-06-23T16:47:14.632271'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_viewpoint (id, viewpoint_number, layer_name, viewpoint_name, logical_physical, structure_behavior, purpose, example, primary_source, audience, notes, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('4732930d-a63a-4e1d-b1d4-c404ce97b0cb', 10, 'Container / Component / Technical Service', 'Container View (C4 L2)', 'L', 'S', 'Containers and runtime units.', 'Web / API / DB Containers', 'C4', 'SA / Dev', 'C4 L2.', 10, TRUE, 'csv_import', 'csv_import', '2026-06-23T16:47:14.632271'::TIMESTAMP, '2026-06-23T16:47:14.632271'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_viewpoint (id, viewpoint_number, layer_name, viewpoint_name, logical_physical, structure_behavior, purpose, example, primary_source, audience, notes, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('481123d3-f460-4efb-87a3-0fa91526b508', 41, 'Governance / Compliance', 'Architecture Governance View', 'L/P', 'S', 'Standards, review checkpoints, maturity, and decisions.', 'Arch Review -> Exceptions', 'EA Governance', 'Exec / EA', 'Holistic cross-view governance.', 41, TRUE, 'csv_import', 'csv_import', '2026-06-23T16:47:14.632271'::TIMESTAMP, '2026-06-23T16:47:14.632271'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_viewpoint (id, viewpoint_number, layer_name, viewpoint_name, logical_physical, structure_behavior, purpose, example, primary_source, audience, notes, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('48c31226-09de-4aa5-9374-4f244faf003f', 36, 'Security / Risk Architecture', 'User Authentication View', 'L/P', 'S/B', 'User login and federated authentication patterns.', 'SSO via SAML + MFA', 'IAM / OIDC', 'Security / Product', 'User-side authentication.', 36, TRUE, 'csv_import', 'csv_import', '2026-06-23T16:47:14.632271'::TIMESTAMP, '2026-06-23T16:47:14.632271'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_viewpoint (id, viewpoint_number, layer_name, viewpoint_name, logical_physical, structure_behavior, purpose, example, primary_source, audience, notes, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('5349f202-8c0e-470a-bc8a-1698434e24ea', 31, 'Data Architecture', 'Physical Data Model', 'P', 'S', 'Physical tables, types, indexes, and partitions.', 'tables/orders (id PK, created_at)', 'DB Engineering', 'Dev / Data Eng / DBA', 'Includes performance design.', 31, TRUE, 'csv_import', 'csv_import', '2026-06-23T16:47:14.632271'::TIMESTAMP, '2026-06-23T16:47:14.632271'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_viewpoint (id, viewpoint_number, layer_name, viewpoint_name, logical_physical, structure_behavior, purpose, example, primary_source, audience, notes, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('6402bbf0-786c-4005-b66f-4a4e4e516336', 3, 'Business / Organization Layer', 'User / Organization / Actor View', 'L', 'S', 'Mapping of users, roles, organizations, and boundaries.', 'Analyst -> Payment', 'C4 / IAM', 'Product / Security', 'Role and boundary modeling.', 3, TRUE, 'csv_import', 'csv_import', '2026-06-23T16:47:14.632271'::TIMESTAMP, '2026-06-23T16:47:14.632271'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_viewpoint (id, viewpoint_number, layer_name, viewpoint_name, logical_physical, structure_behavior, purpose, example, primary_source, audience, notes, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('6e742abf-1a2c-4e87-8c38-02b6ae34b802', 40, 'Deployment / Infra / Networking', 'Resource View', 'P', 'S', 'Compute SKU, CPU, memory, and scaling profile.', 'NodeGroup: c6g.4xlarge', 'Cloud Provider Docs', 'Infra / SRE', 'Supports capacity planning.', 40, TRUE, 'csv_import', 'csv_import', '2026-06-23T16:47:14.632271'::TIMESTAMP, '2026-06-23T16:47:14.632271'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_viewpoint (id, viewpoint_number, layer_name, viewpoint_name, logical_physical, structure_behavior, purpose, example, primary_source, audience, notes, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('6eac4e5a-6e00-4458-b76f-25f5c7ec978a', 34, 'Security / Risk Architecture', 'Attack Path / Threat Flow', 'P', 'B', 'Attacker kill-chain behavior and exploitation path.', 'Phishing -> VPN -> Priv Esc -> Exfil', 'ATT&CK', 'Security / IR', 'Used for detection and drills.', 34, TRUE, 'csv_import', 'csv_import', '2026-06-23T16:47:14.632271'::TIMESTAMP, '2026-06-23T16:47:14.632271'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_viewpoint (id, viewpoint_number, layer_name, viewpoint_name, logical_physical, structure_behavior, purpose, example, primary_source, audience, notes, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('715c8cc4-2ff1-494b-9a96-200522e0af58', 35, 'Security / Risk Architecture', 'Service Authentication View', 'L/P', 'S/B', 'Service-to-service authentication patterns.', 'OAuth2 client credentials / mTLS', 'IAM / OAuth2', 'Security / Dev', 'Works with communication view.', 35, TRUE, 'csv_import', 'csv_import', '2026-06-23T16:47:14.632271'::TIMESTAMP, '2026-06-23T16:47:14.632271'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_viewpoint (id, viewpoint_number, layer_name, viewpoint_name, logical_physical, structure_behavior, purpose, example, primary_source, audience, notes, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('764358a6-abb9-484c-a8ec-f2949a38d218', 37, 'Deployment / Infra / Networking', 'Application Location View', 'P', 'S', 'Deployment country, region, or data-center location.', 'CN DC / SG DC / AWS us-east-1', 'EA / Compliance', 'EA / Infra / Ops', 'Affects sovereignty.', 37, TRUE, 'csv_import', 'csv_import', '2026-06-23T16:47:14.632271'::TIMESTAMP, '2026-06-23T16:47:14.632271'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_viewpoint (id, viewpoint_number, layer_name, viewpoint_name, logical_physical, structure_behavior, purpose, example, primary_source, audience, notes, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('767691ec-f060-490b-8209-46d8dae1f52f', 16, 'Integration and Processing', 'Technical Integration View', 'P', 'B', 'Latency, throughput, serialization, and technical integration constraints.', 'Kafka latency <10ms, 1MB max', 'SA / Infra', 'Dev / SRE', 'Technical constraints for application integration.', 16, TRUE, 'csv_import', 'csv_import', '2026-06-23T16:47:14.632271'::TIMESTAMP, '2026-06-23T16:47:14.632271'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_viewpoint (id, viewpoint_number, layer_name, viewpoint_name, logical_physical, structure_behavior, purpose, example, primary_source, audience, notes, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('77e16ded-b538-4fbf-a18d-988640c9ae79', 12, 'Container / Component / Technical Service', 'Technical Service View', 'L', 'S', 'Functional boundaries of technical services without implementation detail.', 'Auth Service / Order MS', 'SA Practice', 'Dev / SA / Security', 'Maps to tech stack.', 12, TRUE, 'csv_import', 'csv_import', '2026-06-23T16:47:14.632271'::TIMESTAMP, '2026-06-23T16:47:14.632271'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_viewpoint (id, viewpoint_number, layer_name, viewpoint_name, logical_physical, structure_behavior, purpose, example, primary_source, audience, notes, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('8de5a6cf-0898-485f-8300-11a28b67b62b', 17, 'Integration and Processing', 'System Processing View', 'L', 'B', 'Internal processing pipeline and error handling.', 'Request -> Auth -> Business Logic -> DB', 'SA / Custom Specs', 'Dev / Ops', 'Focus on processing and error paths.', 17, TRUE, 'csv_import', 'csv_import', '2026-06-23T16:47:14.632271'::TIMESTAMP, '2026-06-23T16:47:14.632271'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_viewpoint (id, viewpoint_number, layer_name, viewpoint_name, logical_physical, structure_behavior, purpose, example, primary_source, audience, notes, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('995fe265-3408-458b-b935-207f3b3fe368', 11, 'Container / Component / Technical Service', 'Component View (C4 L3)', 'L', 'S', 'Internal modules, classes, and interfaces.', 'Controller / Service / Repo', 'C4', 'SA / Dev', 'C4 L3.', 11, TRUE, 'csv_import', 'csv_import', '2026-06-23T16:47:14.632271'::TIMESTAMP, '2026-06-23T16:47:14.632271'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_viewpoint (id, viewpoint_number, layer_name, viewpoint_name, logical_physical, structure_behavior, purpose, example, primary_source, audience, notes, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('9aa771b9-a998-4bb5-b5de-ff2607f1028c', 18, 'Integration and Processing', 'Activity View', 'L', 'B', 'User or system actions, branches, and concurrency.', 'Login Decision Branch', 'UML Activity / BPMN', 'Dev / SA', 'Decision and concurrency paths.', 18, TRUE, 'csv_import', 'csv_import', '2026-06-23T16:47:14.632271'::TIMESTAMP, '2026-06-23T16:47:14.632271'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_viewpoint (id, viewpoint_number, layer_name, viewpoint_name, logical_physical, structure_behavior, purpose, example, primary_source, audience, notes, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('9e7ae8e8-4c1a-4bdf-a770-e68fa5d7d70d', 45, 'Operations and Reliability', 'Monitoring / Observability View', 'L', 'S', 'Logs, metrics, traces, and observability platform design.', 'Metrics + Logs + Traces (OpenTelemetry)', 'APM / OpenTelemetry', 'Dev / SRE', 'Supports SLOs and incident diagnostics.', 45, TRUE, 'csv_import', 'csv_import', '2026-06-23T16:47:14.632271'::TIMESTAMP, '2026-06-23T16:47:14.632271'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_viewpoint (id, viewpoint_number, layer_name, viewpoint_name, logical_physical, structure_behavior, purpose, example, primary_source, audience, notes, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('a8a2022d-83de-4ec9-b5df-7227c4e1ef98', 7, 'Context and Application Architecture', 'Functional / Application View', 'L', 'S', 'Functional grouping and application responsibility mapping.', 'Auth / Search / Reporting', 'EA / Functional Mapping', 'Product / Dev', 'Domain alignment.', 7, TRUE, 'csv_import', 'csv_import', '2026-06-23T16:47:14.632271'::TIMESTAMP, '2026-06-23T16:47:14.632271'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_viewpoint (id, viewpoint_number, layer_name, viewpoint_name, logical_physical, structure_behavior, purpose, example, primary_source, audience, notes, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('b25bace9-c58e-433e-97b7-ecfcf317a2e3', 30, 'Data Architecture', 'Logical Data Model (ERD)', 'L', 'S', 'Logical entity model without physical types.', 'Customer-Order-Payment ERD', 'UML / ERD', 'Dev / SA / Data Arch', 'Feeds PDM.', 30, TRUE, 'csv_import', 'csv_import', '2026-06-23T16:47:14.632271'::TIMESTAMP, '2026-06-23T16:47:14.632271'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_viewpoint (id, viewpoint_number, layer_name, viewpoint_name, logical_physical, structure_behavior, purpose, example, primary_source, audience, notes, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('b3ad0315-f606-4aad-9308-328e754eb621', 23, 'Data Architecture', 'Data Lineage View', 'L/P', 'B', 'Field or table-level lineage and traceability.', 'Customer.email <- CRM.source', 'Data Lineage Tools', 'Compliance / Data Eng', 'Audit and traceability oriented.', 23, TRUE, 'csv_import', 'csv_import', '2026-06-23T16:47:14.632271'::TIMESTAMP, '2026-06-23T16:47:14.632271'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_viewpoint (id, viewpoint_number, layer_name, viewpoint_name, logical_physical, structure_behavior, purpose, example, primary_source, audience, notes, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('b3c1b157-96bc-491f-ac7d-f3ad2786a8c8', 27, 'Data Architecture', 'Data Flow Compliance View', 'L/P', 'B', 'Sensitive data compliance path and control checkpoints.', 'PII flows -> encrypted + consent', 'Compliance / GDPR', 'Compliance / Product', 'Compliance-focused.', 27, TRUE, 'csv_import', 'csv_import', '2026-06-23T16:47:14.632271'::TIMESTAMP, '2026-06-23T16:47:14.632271'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_viewpoint (id, viewpoint_number, layer_name, viewpoint_name, logical_physical, structure_behavior, purpose, example, primary_source, audience, notes, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('b7f473a4-5e42-49df-917a-bec506497abd', 28, 'Data Architecture', 'Data Pipeline / Technical Flow', 'P', 'B', 'ETL, ELT, or streaming pipeline behavior.', 'Kafka -> Spark -> DW', 'Data Eng / Tech Spec', 'Dev / Data Eng', 'Latency and fault tolerance focused.', 28, TRUE, 'csv_import', 'csv_import', '2026-06-23T16:47:14.632271'::TIMESTAMP, '2026-06-23T16:47:14.632271'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_viewpoint (id, viewpoint_number, layer_name, viewpoint_name, logical_physical, structure_behavior, purpose, example, primary_source, audience, notes, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('b91effd7-caa9-4ae7-a3cc-b3c94df8d275', 32, 'Security / Risk Architecture', 'Security Control View', 'L/P', 'S/B', 'IAM, MFA, KMS, encryption, and perimeter controls.', 'IAM + KMS + TLS + WAF', 'Zero Trust / NIST', 'Security / DevOps', 'Control definitions and placement.', 32, TRUE, 'csv_import', 'csv_import', '2026-06-23T16:47:14.632271'::TIMESTAMP, '2026-06-23T16:47:14.632271'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_viewpoint (id, viewpoint_number, layer_name, viewpoint_name, logical_physical, structure_behavior, purpose, example, primary_source, audience, notes, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('b94a9c8d-fd14-4aa4-b0be-747447192b84', 25, 'Data Architecture', 'Data Entity View', 'L', 'S', 'Business-level entities, semantics, and classification.', 'Customer / Order / Policy', 'DAMA / Glossary', 'Data Architects / Business', 'What is it level for logical and physical models.', 25, TRUE, 'csv_import', 'csv_import', '2026-06-23T16:47:14.632271'::TIMESTAMP, '2026-06-23T16:47:14.632271'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_viewpoint (id, viewpoint_number, layer_name, viewpoint_name, logical_physical, structure_behavior, purpose, example, primary_source, audience, notes, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('d43c1c48-f60f-487d-b933-5c0f4767eb0a', 24, 'Data Architecture', 'Data Asset View', 'P', 'S', 'Data asset catalog, ownership, and business value.', 'Customer Master (Owner A, High Value)', 'DCAM / Data Catalog', 'Data Office / Exec', 'Supports value management.', 24, TRUE, 'csv_import', 'csv_import', '2026-06-23T16:47:14.632271'::TIMESTAMP, '2026-06-23T16:47:14.632271'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_viewpoint (id, viewpoint_number, layer_name, viewpoint_name, logical_physical, structure_behavior, purpose, example, primary_source, audience, notes, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('d5534de6-369b-4b07-8135-9e3b5bdaadaa', 2, 'Business / Organization Layer', 'Business Process View', 'L', 'B', 'Value stream and end-to-end business process.', 'Order -> Approve -> Settle', 'TOGAF / BIZBOK', 'Product / Ops', 'Can be refined to BPMN.', 2, TRUE, 'csv_import', 'csv_import', '2026-06-23T16:47:14.632271'::TIMESTAMP, '2026-06-23T16:47:14.632271'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_viewpoint (id, viewpoint_number, layer_name, viewpoint_name, logical_physical, structure_behavior, purpose, example, primary_source, audience, notes, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('d608faaf-16d9-4e5b-a5fa-40c737ec6936', 6, 'Context and Application Architecture', 'Context View (C4 L1)', 'L', 'S', 'External system boundaries, actors, and external APIs.', 'User -> System -> Ext API', 'C4', 'Product / Dev', 'L1 perspective.', 6, TRUE, 'csv_import', 'csv_import', '2026-06-23T16:47:14.632271'::TIMESTAMP, '2026-06-23T16:47:14.632271'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_viewpoint (id, viewpoint_number, layer_name, viewpoint_name, logical_physical, structure_behavior, purpose, example, primary_source, audience, notes, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('d670a383-4ab8-42c3-8387-f3b76fc490f0', 42, 'Operations and Reliability', 'Operations View', 'P', 'B', 'Incident response, monitoring, alerting, and runbooks.', 'Incident detection and recovery', 'SRE Playbooks', 'Dev / Ops', 'Includes runbooks and playbooks.', 42, TRUE, 'csv_import', 'csv_import', '2026-06-23T16:47:14.632271'::TIMESTAMP, '2026-06-23T16:47:14.632271'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_viewpoint (id, viewpoint_number, layer_name, viewpoint_name, logical_physical, structure_behavior, purpose, example, primary_source, audience, notes, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('d7a739f2-e8cc-4b9a-a9b1-e7289243f018', 39, 'Deployment / Infra / Networking', 'Deployment / Infrastructure View', 'P', 'S', 'Infrastructure components, runtime topology, and environment layout.', 'Multi-AZ Cluster + Redis', 'Infra / Cloud Arch', 'Dev / Ops', 'Physical or logical infra layout.', 39, TRUE, 'csv_import', 'csv_import', '2026-06-23T16:47:14.632271'::TIMESTAMP, '2026-06-23T16:47:14.632271'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_viewpoint (id, viewpoint_number, layer_name, viewpoint_name, logical_physical, structure_behavior, purpose, example, primary_source, audience, notes, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('db062c87-39be-4fc7-9521-47dbccd76c21', 44, 'Operations and Reliability', 'Reliability / SLO View', 'L', 'S/B', 'SLI, SLO, error budgets, and reliability metrics.', 'SLO tables, Error Budget policies', 'SRE / Google SRE model', 'Dev / Ops', 'Drives monitoring targets.', 44, TRUE, 'csv_import', 'csv_import', '2026-06-23T16:47:14.632271'::TIMESTAMP, '2026-06-23T16:47:14.632271'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_viewpoint (id, viewpoint_number, layer_name, viewpoint_name, logical_physical, structure_behavior, purpose, example, primary_source, audience, notes, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('dda37d01-a646-40cd-8afc-2bd6d22542c4', 43, 'Operations and Reliability', 'Resilience / DR View', 'P', 'S/B', 'Disaster recovery levels, RPO/RTO, and failover mode.', 'Active-Active / RPO=0', 'DR Standards', 'Infra / Exec', 'Supports resiliency strategy.', 43, TRUE, 'csv_import', 'csv_import', '2026-06-23T16:47:14.632271'::TIMESTAMP, '2026-06-23T16:47:14.632271'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_viewpoint (id, viewpoint_number, layer_name, viewpoint_name, logical_physical, structure_behavior, purpose, example, primary_source, audience, notes, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('e3701253-a841-4596-aa16-a8f784ed1280', 15, 'Integration and Processing', 'Application Integration View', 'L', 'B', 'Application data objects, contracts, frequency, and SLA.', 'PaymentOrder -> Billing (24h SLA)', 'EA / Integration', 'Product / Dev', 'Business-object-driven integration.', 15, TRUE, 'csv_import', 'csv_import', '2026-06-23T16:47:14.632271'::TIMESTAMP, '2026-06-23T16:47:14.632271'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_viewpoint (id, viewpoint_number, layer_name, viewpoint_name, logical_physical, structure_behavior, purpose, example, primary_source, audience, notes, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('ea9df78d-8572-4e41-8bbe-321a5a9552cc', 20, 'Integration and Processing', 'Sequence Diagram View', 'L', 'B', 'API call sequence and end-to-end interaction timeline.', 'UI -> API -> Auth -> DB', 'UML Sequence', 'Dev / SA', 'Sync and async call chain.', 20, TRUE, 'csv_import', 'csv_import', '2026-06-23T16:47:14.632271'::TIMESTAMP, '2026-06-23T16:47:14.632271'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_viewpoint (id, viewpoint_number, layer_name, viewpoint_name, logical_physical, structure_behavior, purpose, example, primary_source, audience, notes, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('f02e1c31-35c7-431d-96ec-3824d95570e0', 38, 'Deployment / Infra / Networking', 'Network Topology View', 'P', 'S', 'Zones, routes, firewalls, and VPN layout.', 'DMZ / App / DB zones, FW rules', 'Network Arch', 'Infra / Network', 'Includes ACL and NSG.', 38, TRUE, 'csv_import', 'csv_import', '2026-06-23T16:47:14.632271'::TIMESTAMP, '2026-06-23T16:47:14.632271'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_viewpoint (id, viewpoint_number, layer_name, viewpoint_name, logical_physical, structure_behavior, purpose, example, primary_source, audience, notes, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('f266f512-8266-4ded-a825-1803841e49bb', 26, 'Data Architecture', 'Data Quality View', 'L/P', 'S/B', 'Data quality dimensions, rules, and metrics.', 'Completeness %, Accuracy %', 'DQ Framework', 'Data Stewards / Eng', 'Linked to data asset and lineage.', 26, TRUE, 'csv_import', 'csv_import', '2026-06-23T16:47:14.632271'::TIMESTAMP, '2026-06-23T16:47:14.632271'::TIMESTAMP) ON CONFLICT DO NOTHING;
INSERT INTO eam.avdm_viewpoint (id, viewpoint_number, layer_name, viewpoint_name, logical_physical, structure_behavior, purpose, example, primary_source, audience, notes, sort_order, is_active, create_by, update_by, create_at, update_at) VALUES ('f9afffe6-19d4-4469-9519-46a0e08a501b', 9, 'Context and Application Architecture', 'User Role View', 'L', 'S/B', 'Role permissions and interaction inside applications.', 'Analyst -> PaySys', 'IAM', 'Product / Security', 'Focuses on role-application interaction.', 9, TRUE, 'csv_import', 'csv_import', '2026-06-23T16:47:14.632271'::TIMESTAMP, '2026-06-23T16:47:14.632271'::TIMESTAMP) ON CONFLICT DO NOTHING;
-- Table: eam.avdm_viewpoint_concern_mapping
CREATE TABLE IF NOT EXISTS eam.avdm_viewpoint_concern_mapping (
id UUID DEFAULT gen_random_uuid() PRIMARY KEY,
viewpoint_id UUID NOT NULL,
concern_id UUID NOT NULL,
sort_order INTEGER NOT NULL DEFAULT 0,
is_active BOOLEAN NOT NULL DEFAULT true,
create_by VARCHAR NOT NULL DEFAULT 'system'::character varying,
update_by VARCHAR NOT NULL DEFAULT 'system'::character varying,
create_at TIMESTAMP NOT NULL DEFAULT now(),
update_at TIMESTAMP NOT NULL DEFAULT now()
);
-- Seed: eam.avdm_viewpoint_concern_mapping (55 base rows; additional dormant/future PACF concern
-- mappings are inserted further below in the #8 disposition block)
-- Canonical AVDM chain: questionnaire answers activate concerns; concerns classify viewpoints; viewpoints recommend artifacts.
-- There is no direct concern->artifact mapping; artifacts are derived exclusively through viewpoints.
-- Rationale: each row is (concern_key, viewpoint_number, sort_order). Base mappings are 1:1 -- a PACT
-- concern maps to the architecture viewpoint that directly observes it (aligned by PACT layer/number).
-- Cross-cutting governance/security concerns (SCR6/SCR7/AGD*) are 1:N; see inline notes near the end.
INSERT INTO eam.avdm_viewpoint_concern_mapping (id, viewpoint_id, concern_id, sort_order, is_active, create_by, update_by, create_at, update_at)
SELECT gen_random_uuid(), v.id, c.id, m.sort_order, TRUE, 'avdm_seed', 'avdm_seed', now(), now()
FROM (VALUES
-- Base 1:1 mappings (concern -> its aligned viewpoint)
('B1', 1, 10),
('B2', 2, 20),
('B3', 3, 30),
('B4', 4, 40),
('B5', 5, 50),
('A1', 6, 60),
('A2', 7, 70),
('A3', 8, 80),
('A4', 9, 90),
('C1', 10, 100),
('C2', 11, 110),
('C3', 12, 120),
('C4', 13, 130),
('C5', 14, 140),
('IP1', 15, 150),
('IP2', 16, 160),
('IP3', 17, 170),
('IP4', 18, 180),
('IP5', 19, 190),
('IP6', 20, 200),
('D1', 21, 210),
('D2', 22, 220),