vastlint-core 0.11.3

VAST XML validator, SIMID linter, OMID validator, and VPAID detector. IAB VAST 2.0–4.4, 220 rules, pure Rust
Documentation
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
//! Required-element rules.
//!
//! These enforce fields the spec marks as "must" or "required". All fire at
//! Severity::Error. Justification for each is noted inline with the spec ref.

use std::collections::HashSet;

use super::{allows_ctv_nonlinear, emit};
use crate::parse::{Node, VastDocument};
use crate::Issue;
use crate::{DetectedVersion, Severity, ValidationContext, VastVersion};

pub fn check(
    doc: &VastDocument,
    version: &DetectedVersion,
    ctx: &ValidationContext,
    issues: &mut Vec<Issue>,
) {
    // Short-circuit on parse error — a malformed document will produce
    // misleading required-element errors. The parse error itself is the
    // primary finding; required checks run on top of it but with limited value.
    // We still run them because partial documents can still trigger real errors.

    check_root(doc, version, ctx, issues);

    let Some(vast) = doc.vast_root() else { return };

    for (ad_idx, ad) in vast.children_named("Ad").enumerate() {
        check_ad(ad, ad_idx, version, ctx, issues);
    }
}

// ── Root-level checks ─────────────────────────────────────────────────────────

fn check_root(
    doc: &VastDocument,
    version: &DetectedVersion,
    ctx: &ValidationContext,
    issues: &mut Vec<Issue>,
) {
    // VAST-2.0-root-element
    // Spec (2.0+): root element must be <VAST>.
    //
    // VAST 1.0 is the exception: its root is <VideoAdServingTemplate>, so a
    // valid 1.0 document is not a malformed 2.0 document. Reporting "Root
    // element must be <VAST>" against one is wrong on its face, and legacy 1.0
    // tags are still served. Name the version instead and say what to do about
    // it. IAB's own VAST_Samples ship four such files.
    if doc.root.name == "VideoAdServingTemplate" {
        emit(
            ctx,
            issues,
            "VAST-2.0-root-element",
            Severity::Warning,
            "Document is VAST 1.0 (<VideoAdServingTemplate> root); VAST 1.0 was superseded by VAST 2.0 and is not validated further",
            Some("/".to_owned()),
            "IAB VAST 2.0 §2",
            Some(&doc.root),
        );
        return; // 1.0 has its own element vocabulary; 2.0+ rules do not apply.
    }

    if doc.root.name != "VAST" {
        emit(
            ctx,
            issues,
            "VAST-2.0-root-element",
            Severity::Error,
            "Root element must be <VAST>",
            Some("/".to_owned()),
            "IAB VAST 2.0 §2",
            Some(&doc.root),
        );
        return; // No point checking further structure.
    }

    // VAST-2.0-root-version
    // Spec (all versions): <VAST> must have a version attribute.
    // IAB VAST 2.0 §2.1: "The version attribute is required."
    if doc.root.attr("version").is_none() {
        emit(
            ctx,
            issues,
            "VAST-2.0-root-version",
            Severity::Error,
            "Root <VAST> element is missing the required version attribute",
            Some("/VAST".to_owned()),
            "IAB VAST 2.0 §2.1",
            Some(&doc.root),
        )
    }

    // VAST-2.0-root-version-value
    // The version attribute must be one of the known VAST version strings.
    // An unrecognised value likely indicates a typo or a future version this
    // tool does not yet understand; we warn rather than error.
    if let Some(ver_str) = doc.root.attr("version") {
        // 4.4 is recognised even though it is only a working-group draft: a tag
        // declaring it should be told that the draft status is the concern
        // (VAST-4.4-version-attribute), not that the string is gibberish.
        const KNOWN: &[&str] = &["2.0", "2.0.1", "3.0", "4.0", "4.1", "4.2", "4.3", "4.4"];
        if !KNOWN.contains(&ver_str) {
            emit(
                ctx,
                issues,
                "VAST-2.0-root-version-value",
                Severity::Warning,
                "VAST version attribute value is not a recognised VAST version string",
                Some("/VAST[@version]".to_owned()),
                "IAB VAST 2.0 §2.1",
                Some(&doc.root),
            )
        }
    }

    // VAST-2.0-root-has-ad-or-error
    // Spec (all versions): a VAST response must contain at least one <Ad> or
    // one root-level <Error>. An empty <VAST> is not a valid response.
    let vast = &doc.root;
    if !vast.has_child("Ad") && !vast.has_child("Error") {
        emit(
            ctx,
            issues,
            "VAST-2.0-root-has-ad-or-error",
            Severity::Error,
            "<VAST> contains neither <Ad> nor <Error> — response is empty",
            Some("/VAST".to_owned()),
            "IAB VAST 2.0 §2",
            Some(&doc.root),
        )
    }

    // VAST-4.0-wrapper-root-error
    // VAST 4.0 §2.1: the root is a choice — either Ad elements or Error elements,
    // not both. Flag when both are present.
    if let Some(ver) = version.best() {
        if ver.at_least(&VastVersion::V4_0) && vast.has_child("Ad") && vast.has_child("Error") {
            emit(
                ctx, issues,
                "VAST-4.0-wrapper-root-error",
                Severity::Warning,
                "<VAST> root contains both <Ad> and <Error> elements — only one type is allowed per VAST 4.0",
                Some("/VAST".to_owned()),
                "IAB VAST 4.0 §2.1",
            Some(&doc.root),
        )
        }
    }
}

// ── Ad-level checks ───────────────────────────────────────────────────────────

fn check_ad(
    ad: &Node,
    ad_idx: usize,
    version: &DetectedVersion,
    ctx: &ValidationContext,
    issues: &mut Vec<Issue>,
) {
    let path = format!("/VAST/Ad[{}]", ad_idx);

    // VAST-2.0-ad-has-inline-or-wrapper
    // Spec (all versions): each <Ad> must contain exactly one <InLine> or one
    // <Wrapper>.
    let has_inline = ad.has_child("InLine");
    let has_wrapper = ad.has_child("Wrapper");

    if !has_inline && !has_wrapper {
        emit(
            ctx,
            issues,
            "VAST-2.0-ad-has-inline-or-wrapper",
            Severity::Error,
            "<Ad> must contain either <InLine> or <Wrapper>",
            Some(path.clone()),
            "IAB VAST 2.0 §2.2",
            Some(ad),
        );
        return;
    }

    if has_inline && has_wrapper {
        emit(
            ctx,
            issues,
            "VAST-2.0-ad-has-inline-or-wrapper",
            Severity::Error,
            "<Ad> must not contain both <InLine> and <Wrapper>",
            Some(path.clone()),
            "IAB VAST 2.0 §2.2",
            Some(ad),
        )
    }

    if has_inline {
        let inline = ad.child("InLine").unwrap();
        check_inline(inline, &path, version, ctx, issues);
    }

    if has_wrapper {
        let wrapper = ad.child("Wrapper").unwrap();
        check_wrapper(wrapper, &path, version, ctx, issues);
    }
}

// ── InLine checks ─────────────────────────────────────────────────────────────

fn check_inline(
    inline: &Node,
    ad_path: &str,
    version: &DetectedVersion,
    ctx: &ValidationContext,
    issues: &mut Vec<Issue>,
) {
    let path = format!("{}/InLine", ad_path);

    // VAST-2.0-inline-adsystem
    // Spec (all versions): <AdSystem> is required.
    if !inline.has_child("AdSystem") {
        emit(
            ctx,
            issues,
            "VAST-2.0-inline-adsystem",
            Severity::Error,
            "<InLine> is missing required <AdSystem>",
            Some(path.clone()),
            "IAB VAST 2.0 §2.3.1",
            Some(inline),
        )
    }

    // VAST-2.0-inline-adtitle
    // Spec (all versions): <AdTitle> is required.
    if !inline.has_child("AdTitle") {
        emit(
            ctx,
            issues,
            "VAST-2.0-inline-adtitle",
            Severity::Error,
            "<InLine> is missing required <AdTitle>",
            Some(path.clone()),
            "IAB VAST 2.0 §2.3.2",
            Some(inline),
        )
    }

    // VAST-2.0-inline-impression
    // Spec (all versions): at least one <Impression> is required.
    if inline.children_named("Impression").count() == 0 {
        emit(
            ctx,
            issues,
            "VAST-2.0-inline-impression",
            Severity::Error,
            "<InLine> is missing required <Impression>",
            Some(path.clone()),
            "IAB VAST 2.0 §2.3.4",
            Some(inline),
        )
    }

    // VAST-2.0-inline-creatives
    // Spec (all versions): <Creatives> is required and must contain at least
    // one <Creative>.
    match inline.child("Creatives") {
        None => emit(
            ctx,
            issues,
            "VAST-2.0-inline-creatives",
            Severity::Error,
            "<InLine> is missing required <Creatives>",
            Some(path.clone()),
            "IAB VAST 2.0 §2.3.5",
            Some(inline),
        ),
        Some(creatives) => {
            if creatives.children_named("Creative").count() == 0 {
                emit(
                    ctx,
                    issues,
                    "VAST-2.0-inline-creatives",
                    Severity::Error,
                    "<Creatives> must contain at least one <Creative>",
                    Some(format!("{}/Creatives", path)),
                    "IAB VAST 2.0 §2.3.5",
                    Some(inline),
                )
            }
        }
    }

    // VAST-4.1-adservingid-present
    // IAB VAST 4.1 §3.4.1: <AdServingId> is required in InLine responses from
    // 4.1 onwards.
    if let Some(v) = version.best() {
        if v.at_least(&VastVersion::V4_1) && !inline.has_child("AdServingId") {
            emit(
                ctx,
                issues,
                "VAST-4.1-adservingid-present",
                Severity::Error,
                "<InLine> is missing required <AdServingId> (required since VAST 4.1)",
                Some(path.clone()),
                "IAB VAST 4.1 §3.4.1",
                Some(inline),
            )
        }
    }

    // Recurse into creatives.
    if let Some(creatives) = inline.child("Creatives") {
        for (ci, creative) in creatives.children_named("Creative").enumerate() {
            check_inline_creative(
                creative,
                &format!("{}/Creatives/Creative[{}]", path, ci),
                version,
                ctx,
                issues,
            );
        }
    }

    // VAST-4.0-category-authority: Category authority attr required.
    check_categories(inline, &path, ctx, issues);

    // VAST-3.0-pricing-model / VAST-3.0-pricing-currency
    check_pricing(inline, &path, ctx, issues);

    // VAST-4.1-verification-no-resource
    if let Some(ad_ver) = inline.child("AdVerifications") {
        check_ad_verifications(
            ad_ver,
            &format!("{}/AdVerifications", path),
            version,
            ctx,
            issues,
        );
    }

    if let Some(extensions) = inline.child("Extensions") {
        check_embedded_ad_verifications(
            extensions,
            &format!("{}/Extensions", path),
            version,
            ctx,
            issues,
        );
    }
}

// ── InLine Creative checks ────────────────────────────────────────────────────

fn check_inline_creative(
    creative: &Node,
    creative_path: &str,
    version: &DetectedVersion,
    ctx: &ValidationContext,
    issues: &mut Vec<Issue>,
) {
    // VAST-4.0-universaladid-present
    // IAB VAST 4.0 §3.8.1: <UniversalAdId> is required on InLine creatives.
    // In 4.0 the value was in the idValue attribute; from 4.1 it is the element
    // text content. Both require the element itself to be present.
    if let Some(v) = version.best() {
        if v.is_v4() && !creative.has_child("UniversalAdId") {
            emit(
                ctx,
                issues,
                "VAST-4.0-universaladid-present",
                Severity::Error,
                "<Creative> is missing required <UniversalAdId> (required since VAST 4.0)",
                Some(creative_path.to_owned()),
                "IAB VAST 4.0 §3.8.1",
                Some(creative),
            )
        }
    }

    // VAST-4.0-universaladid-idregistry
    // IAB VAST 4.0 §3.8.1: idRegistry attribute is required on <UniversalAdId>.
    if let Some(uid) = creative.child("UniversalAdId") {
        if uid.attr("idRegistry").is_none() {
            emit(
                ctx,
                issues,
                "VAST-4.0-universaladid-idregistry",
                Severity::Error,
                "<UniversalAdId> is missing required idRegistry attribute",
                Some(format!("{}/UniversalAdId", creative_path)),
                "IAB VAST 4.0 §3.8.1",
                Some(creative),
            )
        }
        // VAST-4.0-universaladid-idvalue / VAST-4.1-universaladid-idvalue-removed
        check_universal_ad_id(
            uid,
            &format!("{}/UniversalAdId", creative_path),
            version,
            ctx,
            issues,
        );
    }

    // VAST-4.0-companion-clicktracking-id on all companions in this creative.
    if let Some(companion_ads) = creative.child("CompanionAds") {
        for (ci, companion) in companion_ads.children_named("Companion").enumerate() {
            let comp_path = format!("{}/CompanionAds/Companion[{}]", creative_path, ci);
            check_companion_clicktracking_id(companion, &comp_path, ctx, issues);
            check_companion_resource(companion, &comp_path, ctx, issues);
        }
    }

    // VAST-2.0-nonlinear-resource: InLine NonLinear must have a resource.
    if let Some(nl_ads) = creative.child("NonLinearAds") {
        let nl_ads_path = format!("{}/NonLinearAds", creative_path);
        let ctv_model = allows_ctv_nonlinear(version.best().copied());

        for (ni, nl) in nl_ads.children_named("NonLinear").enumerate() {
            let nl_path = format!("{}/NonLinear[{}]", nl_ads_path, ni);
            check_nonlinear_resource(nl, &nl_path, ctx, issues);

            // The CTV Ad Portfolio gives <NonLinear> the same <MediaFiles>
            // container <Linear> has, which means the same required attributes
            // on everything inside it. Nothing about delivery, type, width or
            // height is new in 4.4; only the location is, and IAB's own Pause,
            // Screensaver, Overlay and Squeezeback examples declare the full
            // set.
            if ctv_model {
                if let Some(media_files) = nl.child("MediaFiles") {
                    check_media_files_assets(media_files, &nl_path, version, ctx, issues);
                }
            }
        }

        // <Icons> moved under <NonLinearAds> so a NonLinear placement can carry
        // an ad-choices icon. Same element, same required attributes as under
        // <Linear>; without them the player has no way to size or place it.
        if ctv_model {
            if let Some(icons) = nl_ads.child("Icons") {
                for (ii, icon) in icons.children_named("Icon").enumerate() {
                    check_icon_required_attrs(
                        icon,
                        &format!("{}/Icons/Icon[{}]", nl_ads_path, ii),
                        version,
                        ctx,
                        issues,
                    );
                }
            }
        }
    }

    // Check linear and mediafiles.
    if let Some(linear) = creative.child("Linear") {
        check_inline_linear(
            linear,
            &format!("{}/Linear", creative_path),
            version,
            ctx,
            issues,
        );
    }
}

// ── Linear checks ─────────────────────────────────────────────────────────────

fn check_inline_linear(
    linear: &Node,
    linear_path: &str,
    version: &DetectedVersion,
    ctx: &ValidationContext,
    issues: &mut Vec<Issue>,
) {
    // VAST-2.0-linear-duration
    // Spec (all versions, 4.0+ formally required): <Duration> is required.
    if !linear.has_child("Duration") {
        emit(
            ctx,
            issues,
            "VAST-2.0-linear-duration",
            Severity::Error,
            "<Linear> is missing required <Duration>",
            Some(linear_path.to_owned()),
            "IAB VAST 2.0 §2.3.5.1",
            Some(linear),
        )
    }

    // VAST-2.0-linear-mediafiles
    // Spec (all versions): <MediaFiles> is required in InLine Linear and must
    // contain at least one <MediaFile>.
    match linear.child("MediaFiles") {
        None => emit(
            ctx,
            issues,
            "VAST-2.0-linear-mediafiles",
            Severity::Error,
            "<Linear> is missing required <MediaFiles>",
            Some(linear_path.to_owned()),
            "IAB VAST 2.0 §2.3.5.2",
            Some(linear),
        ),
        Some(mf) => {
            if mf.children_named("MediaFile").count() == 0 {
                emit(
                    ctx,
                    issues,
                    "VAST-2.0-linear-mediafiles",
                    Severity::Error,
                    "<MediaFiles> must contain at least one <MediaFile>",
                    Some(format!("{}/MediaFiles", linear_path)),
                    "IAB VAST 2.0 §2.3.5.2",
                    Some(linear),
                )
            }
            check_media_files_assets(mf, linear_path, version, ctx, issues);
        }
    }

    // Icon required attrs (VAST 3.0+).
    if let Some(icons) = linear.child("Icons") {
        for (ii, icon) in icons.children_named("Icon").enumerate() {
            check_icon_required_attrs(
                icon,
                &format!("{}/Icons/Icon[{}]", linear_path, ii),
                version,
                ctx,
                issues,
            );
        }
    }
}

/// Attribute rules for everything a `<MediaFiles>` container holds.
///
/// Shared between `<Linear>` and the `<NonLinear>` container the CTV Ad
/// Portfolio introduced. The requirements belong to the elements, not to their
/// parent, so the only thing that differs between the two call sites is the
/// path prefix.
fn check_media_files_assets(
    media_files: &Node,
    container_path: &str,
    version: &DetectedVersion,
    ctx: &ValidationContext,
    issues: &mut Vec<Issue>,
) {
    for (i, mf) in media_files.children_named("MediaFile").enumerate() {
        check_mediafile(
            mf,
            &format!("{}/MediaFiles/MediaFile[{}]", container_path, i),
            ctx,
            issues,
        );
    }

    // VAST-4.1: Mezzanine required attrs.
    //
    // 4.0 defines <Mezzanine> as a bare `xs:anyURI` element with no attributes
    // at all (vast4.xsd: `<xs:element name="Mezzanine" type="xs:anyURI">`).
    // delivery, type, width and height arrive in 4.1, where the element becomes
    // a complexType. Applying the 4.1 requirements to a 4.0 document reports
    // four errors against a tag that is valid under its own schema, so gate on
    // the version rather than the element being present.
    if version
        .best()
        .map(|v| v.at_least(&VastVersion::V4_1))
        .unwrap_or(false)
    {
        for (mi, mez) in media_files.children_named("Mezzanine").enumerate() {
            check_mezzanine_required_attrs(
                mez,
                &format!("{}/MediaFiles/Mezzanine[{}]", container_path, mi),
                ctx,
                issues,
            );
        }
    }

    // VAST-4.0-interactive-creative-no-api: InteractiveCreativeFile without apiFramework.
    // VAST-4.1-interactive-creative-type: InteractiveCreativeFile should have a type attribute.
    for (icf_i, icf) in media_files
        .children_named("InteractiveCreativeFile")
        .enumerate()
    {
        let icf_path = format!(
            "{}/MediaFiles/InteractiveCreativeFile[{}]",
            container_path, icf_i
        );
        if icf.attr("apiFramework").is_none() {
            emit(
                ctx,
                issues,
                "VAST-4.0-interactive-creative-no-api",
                Severity::Warning,
                "<InteractiveCreativeFile> should have an apiFramework attribute (e.g. \"SIMID\")",
                Some(icf_path.clone()),
                "IAB VAST 4.0 §2.3.5.4",
                Some(icf),
            )
        }

        // VAST-4.1-interactive-creative-type
        // The type attribute identifies the MIME type of the interactive file.
        // Spec says it is listed as an attribute; not formally required by the
        // XSD but needed for the player to know how to execute the file.
        if icf.attr("type").is_none() {
            emit(
                ctx,
                issues,
                "VAST-4.1-interactive-creative-type",
                Severity::Warning,
                "<InteractiveCreativeFile> should have a type attribute identifying the MIME type",
                Some(icf_path),
                "IAB VAST 4.1 §3.9.3",
                Some(icf),
            )
        }
    }
}

fn check_mediafile(mf: &Node, path: &str, ctx: &ValidationContext, issues: &mut Vec<Issue>) {
    // VAST-2.0-mediafile-delivery
    // Spec (all versions): delivery attribute is required.
    if mf.attr("delivery").is_none() {
        emit(
            ctx,
            issues,
            "VAST-2.0-mediafile-delivery",
            Severity::Error,
            "<MediaFile> is missing required delivery attribute",
            Some(path.to_owned()),
            "IAB VAST 2.0 §2.3.5.2",
            Some(mf),
        )
    }

    // VAST-2.0-mediafile-type
    // Spec (all versions): type attribute is required.
    if mf.attr("type").is_none() {
        emit(
            ctx,
            issues,
            "VAST-2.0-mediafile-type",
            Severity::Error,
            "<MediaFile> is missing required type attribute",
            Some(path.to_owned()),
            "IAB VAST 2.0 §2.3.5.2",
            Some(mf),
        )
    }

    // VAST-2.0-mediafile-dimensions
    // Spec (all versions): width and height attributes are required.
    if mf.attr("width").is_none() {
        emit(
            ctx,
            issues,
            "VAST-2.0-mediafile-dimensions",
            Severity::Error,
            "<MediaFile> is missing required width attribute",
            Some(path.to_owned()),
            "IAB VAST 2.0 §2.3.5.2",
            Some(mf),
        )
    }
    if mf.attr("height").is_none() {
        emit(
            ctx,
            issues,
            "VAST-2.0-mediafile-dimensions",
            Severity::Error,
            "<MediaFile> is missing required height attribute",
            Some(path.to_owned()),
            "IAB VAST 2.0 §2.3.5.2",
            Some(mf),
        )
    }
}

// ── Wrapper checks ────────────────────────────────────────────────────────────

fn check_wrapper(
    wrapper: &Node,
    ad_path: &str,
    version: &DetectedVersion,
    ctx: &ValidationContext,
    issues: &mut Vec<Issue>,
) {
    let path = format!("{}/Wrapper", ad_path);

    // VAST-2.0-wrapper-adsystem
    if !wrapper.has_child("AdSystem") {
        emit(
            ctx,
            issues,
            "VAST-2.0-wrapper-adsystem",
            Severity::Error,
            "<Wrapper> is missing required <AdSystem>",
            Some(path.clone()),
            "IAB VAST 2.0 §2.3.1",
            Some(wrapper),
        )
    }

    // VAST-2.0-wrapper-impression
    if wrapper.children_named("Impression").count() == 0 {
        emit(
            ctx,
            issues,
            "VAST-2.0-wrapper-impression",
            Severity::Error,
            "<Wrapper> is missing required <Impression>",
            Some(path.clone()),
            "IAB VAST 2.0 §2.3.4",
            Some(wrapper),
        )
    }

    // VAST-2.0-wrapper-vastadtaguri
    // Spec (all versions): <VASTAdTagURI> is required in Wrapper.
    if !wrapper.has_child("VASTAdTagURI") {
        emit(
            ctx,
            issues,
            "VAST-2.0-wrapper-vastadtaguri",
            Severity::Error,
            "<Wrapper> is missing required <VASTAdTagURI>",
            Some(path.clone()),
            "IAB VAST 2.0 §2.4",
            Some(wrapper),
        )
    }

    // Category authority (4.0+).
    check_categories(wrapper, &path, ctx, issues);

    // Pricing required attrs (3.0+).
    check_pricing(wrapper, &path, ctx, issues);

    // BlockedAdCategories authority (4.1+).
    check_blocked_ad_categories(wrapper, &path, ctx, issues);

    // AdVerifications Verification resource presence (4.1+).
    if let Some(v) = version.best() {
        if v.at_least(&VastVersion::V4_1) {
            if let Some(av) = wrapper.child("AdVerifications") {
                check_ad_verifications(
                    av,
                    &format!("{}/AdVerifications", path),
                    version,
                    ctx,
                    issues,
                );
            }
        }
    }

    if let Some(extensions) = wrapper.child("Extensions") {
        check_embedded_ad_verifications(
            extensions,
            &format!("{}/Extensions", path),
            version,
            ctx,
            issues,
        );
    }
}

// ── Additional attribute / element checks ─────────────────────────────────────

/// Checks Category elements for required `authority` attribute (4.0+).
pub(super) fn check_categories(
    node: &Node, // InLine or Wrapper
    node_path: &str,
    ctx: &ValidationContext,
    issues: &mut Vec<Issue>,
) {
    for (i, cat) in node.children_named("Category").enumerate() {
        if cat.attr("authority").is_none() {
            emit(
                ctx,
                issues,
                "VAST-4.0-category-authority",
                Severity::Error,
                "<Category> is missing required authority attribute",
                Some(format!("{}/Category[{}]", node_path, i)),
                "IAB VAST 4.0 §2.3.3",
                Some(cat),
            )
        }
    }
}

/// Checks CompanionClickTracking elements for required `id` attribute (4.0+).
pub(super) fn check_companion_clicktracking_id(
    companion: &Node,
    companion_path: &str,
    ctx: &ValidationContext,
    issues: &mut Vec<Issue>,
) {
    for (i, ct) in companion
        .children_named("CompanionClickTracking")
        .enumerate()
    {
        if ct.attr("id").is_none() {
            emit(
                ctx,
                issues,
                "VAST-4.0-companion-clicktracking-id",
                Severity::Error,
                "<CompanionClickTracking> is missing required id attribute",
                Some(format!("{}/CompanionClickTracking[{}]", companion_path, i)),
                "IAB VAST 4.0 §2.3.8",
                Some(ct),
            )
        }
    }
}

/// Checks Pricing element for required model and currency attributes (3.0+).
pub(super) fn check_pricing(
    node: &Node, // InLine or Wrapper
    node_path: &str,
    ctx: &ValidationContext,
    issues: &mut Vec<Issue>,
) {
    let Some(pricing) = node.child("Pricing") else {
        return;
    };
    let pricing_path = format!("{}/Pricing", node_path);

    if pricing.attr("model").is_none() {
        emit(
            ctx,
            issues,
            "VAST-3.0-pricing-model",
            Severity::Error,
            "<Pricing> is missing required model attribute",
            Some(pricing_path.clone()),
            "IAB VAST 3.0 §2.3.10",
            Some(pricing),
        )
    }
    if pricing.attr("currency").is_none() {
        emit(
            ctx,
            issues,
            "VAST-3.0-pricing-currency",
            Severity::Error,
            "<Pricing> is missing required currency attribute",
            Some(pricing_path),
            "IAB VAST 3.0 §2.3.10",
            Some(pricing),
        );
    }
}

/// Checks Icon elements for required attributes per spec (3.0+).
///
/// Severity is version-dependent. VAST 3.0 §2.3.6.4 marks program, width,
/// height, xPosition and yPosition as required attributes. VAST 4.x relaxed
/// this: the 4.1/4.2 XSDs declare every one of them without a `use` attribute
/// (so `optional`), and the 4.3 Icon attribute table carries no required
/// column at all. A player still needs the dimensions and position to place
/// the icon, so 4.x omissions stay reportable, but as warnings rather than
/// errors against a document its own schema accepts.
pub(super) fn check_icon_required_attrs(
    icon: &Node,
    icon_path: &str,
    version: &DetectedVersion,
    ctx: &ValidationContext,
    issues: &mut Vec<Issue>,
) {
    let severity = if version.best().map(|v| v.is_v4()).unwrap_or(false) {
        Severity::Warning
    } else {
        Severity::Error
    };
    let spec_ref = if severity == Severity::Warning {
        "IAB VAST 4.3 §3.11.1"
    } else {
        "IAB VAST 3.0 §2.3.6.4"
    };

    for (attr, rule, message) in [
        (
            "program",
            "VAST-3.0-icon-program",
            "<Icon> is missing required program attribute",
        ),
        (
            "width",
            "VAST-3.0-icon-width",
            "<Icon> is missing required width attribute",
        ),
        (
            "height",
            "VAST-3.0-icon-height",
            "<Icon> is missing required height attribute",
        ),
        (
            "xPosition",
            "VAST-3.0-icon-xposition",
            "<Icon> is missing required xPosition attribute",
        ),
        (
            "yPosition",
            "VAST-3.0-icon-yposition",
            "<Icon> is missing required yPosition attribute",
        ),
    ] {
        if icon.attr(attr).is_none() {
            emit(
                ctx,
                issues,
                rule,
                severity,
                message,
                Some(icon_path.to_owned()),
                spec_ref,
                Some(icon),
            )
        }
    }

    // VAST-3.0-icon-resource: must have at least one resource child.
    let has_resource = icon.has_child("StaticResource")
        || icon.has_child("IFrameResource")
        || icon.has_child("HTMLResource");
    if !has_resource {
        emit(
            ctx,
            issues,
            "VAST-3.0-icon-resource",
            Severity::Error,
            "<Icon> must contain at least one StaticResource, IFrameResource, or HTMLResource",
            Some(icon_path.to_owned()),
            "IAB VAST 3.0 §2.3.6.4",
            Some(icon),
        )
    }
}

/// Checks UniversalAdId for version-appropriate required content.
/// 4.0 requires idValue attr; 4.1+ requires text content (idValue removed).
pub(super) fn check_universal_ad_id(
    uid: &Node,
    uid_path: &str,
    version: &DetectedVersion,
    ctx: &ValidationContext,
    issues: &mut Vec<Issue>,
) {
    let v = version.best();
    if let Some(ver) = v {
        if ver.at_least(&VastVersion::V4_1) {
            // 4.1+: idValue attribute was removed; value is element text content.
            if uid.attr("idValue").is_some() {
                emit(
                    ctx, issues,
                    "VAST-4.1-universaladid-idvalue-removed",
                    Severity::Warning,
                    "<UniversalAdId> idValue attribute was removed in VAST 4.1 — value should be in element text content",
                    Some(uid_path.to_owned()),
                    "IAB VAST 4.1 §2.3.5.3",
            Some(uid),
        )
            }
            // VAST-4.1-universaladid-content: value must be in element text body.
            if uid.text.trim().is_empty() && uid.attr("idValue").is_none() {
                emit(
                    ctx, issues,
                    "VAST-4.1-universaladid-content",
                    Severity::Error,
                    "<UniversalAdId> must have text content in VAST 4.1+ (the ID value is the element body)",
                    Some(uid_path.to_owned()),
                    "IAB VAST 4.1 §2.3.5.3",
            Some(uid),
        )
            }
        } else if ver.at_least(&VastVersion::V4_0) {
            // 4.0: idValue attribute is the canonical location for the ID value.
            // Element text content is also accepted in practice (some implementations
            // use text content only). Only fire if both idValue attr and text are absent.
            let has_text = !uid.text.trim().is_empty();
            if uid.attr("idValue").is_none() && !has_text {
                emit(
                    ctx,
                    issues,
                    "VAST-4.0-universaladid-idvalue",
                    Severity::Error,
                    "<UniversalAdId> is missing required idValue attribute (required in VAST 4.0)",
                    Some(uid_path.to_owned()),
                    "IAB VAST 4.0 §2.3.5.3",
                    Some(uid),
                )
            }
        }
    }
}

/// Checks Mezzanine elements for required attributes (4.1+ typed element).
pub(super) fn check_mezzanine_required_attrs(
    mez: &Node,
    mez_path: &str,
    ctx: &ValidationContext,
    issues: &mut Vec<Issue>,
) {
    if mez.attr("delivery").is_none() {
        emit(
            ctx,
            issues,
            "VAST-4.1-mezzanine-delivery",
            Severity::Error,
            "<Mezzanine> is missing required delivery attribute",
            Some(mez_path.to_owned()),
            "IAB VAST 4.1 §2.3.5.2",
            Some(mez),
        )
    }
    if mez.attr("type").is_none() {
        emit(
            ctx,
            issues,
            "VAST-4.1-mezzanine-type",
            Severity::Error,
            "<Mezzanine> is missing required type attribute",
            Some(mez_path.to_owned()),
            "IAB VAST 4.1 §2.3.5.2",
            Some(mez),
        )
    }
    if mez.attr("width").is_none() {
        emit(
            ctx,
            issues,
            "VAST-4.1-mezzanine-width",
            Severity::Error,
            "<Mezzanine> is missing required width attribute",
            Some(mez_path.to_owned()),
            "IAB VAST 4.1 §2.3.5.2",
            Some(mez),
        )
    }
    if mez.attr("height").is_none() {
        emit(
            ctx,
            issues,
            "VAST-4.1-mezzanine-height",
            Severity::Error,
            "<Mezzanine> is missing required height attribute",
            Some(mez_path.to_owned()),
            "IAB VAST 4.1 §2.3.5.2",
            Some(mez),
        )
    }
}

fn check_ad_verifications(
    ad_ver_node: &Node,
    ad_ver_path: &str,
    version: &DetectedVersion,
    ctx: &ValidationContext,
    issues: &mut Vec<Issue>,
) {
    let mut seen_vendors: HashSet<String> = HashSet::new();

    for (vi, ver_node) in ad_ver_node.children_named("Verification").enumerate() {
        let ver_path = format!("{}/Verification[{}]", ad_ver_path, vi);

        if let Some(vendor) = ver_node.attr("vendor") {
            let normalized = vendor.trim().to_ascii_lowercase();
            if !normalized.is_empty() && !seen_vendors.insert(normalized) {
                emit(
                    ctx,
                    issues,
                    "VAST-4.1-verification-duplicate-vendor",
                    Severity::Warning,
                    "<AdVerifications> contains more than one <Verification> entry for the same vendor",
                    Some(ver_path.clone()),
                    "IAB VAST 4.1 §3.17",
                    Some(ver_node),
                );
            }
        }

        check_verification_resource(ver_node, &ver_path, version, ctx, issues);
    }
}

fn check_embedded_ad_verifications(
    node: &Node,
    path: &str,
    version: &DetectedVersion,
    ctx: &ValidationContext,
    issues: &mut Vec<Issue>,
) {
    if node.name == "AdVerifications" || node.has_child("Verification") {
        check_ad_verifications(node, path, version, ctx, issues);
        return;
    }

    for (child_index, child) in node.children.iter().enumerate() {
        let child_path = format!("{}/{}[{}]", path, child.name, child_index);
        check_embedded_ad_verifications(child, &child_path, version, ctx, issues);
    }
}

/// Checks Verification for required resource presence and vendor attr (4.1+).
///
/// `vendor` on `<Verification>` and `apiFramework` on `<JavaScriptResource>`
/// are only required from 4.1 onward. VAST 4.0, which introduced
/// `<AdVerifications>`, declares both `use="optional"` in vast4.xsd, and the
/// 4.1/4.2 XSDs still say optional while their prose says required (the
/// requirement only reaches the schema in the 4.4 draft). Reporting them as
/// errors against a 4.0 document contradicts the schema that document was
/// written to, so 4.0 gets warnings instead.
pub(super) fn check_verification_resource(
    ver_node: &Node,
    ver_path: &str,
    version: &DetectedVersion,
    ctx: &ValidationContext,
    issues: &mut Vec<Issue>,
) {
    let attr_severity = if version
        .best()
        .map(|v| v.at_least(&VastVersion::V4_1))
        .unwrap_or(true)
    {
        Severity::Error
    } else {
        Severity::Warning
    };
    let has_js = ver_node.has_child("JavaScriptResource");
    let has_exec = ver_node.has_child("ExecutableResource");
    if !has_js && !has_exec {
        emit(
            ctx,
            issues,
            "VAST-4.1-verification-no-resource",
            Severity::Warning,
            "<Verification> should contain at least one JavaScriptResource or ExecutableResource",
            Some(ver_path.to_owned()),
            "IAB VAST 4.1 §2.4",
            Some(ver_node),
        )
    }

    // VAST-4.1-verification-vendor: vendor attribute is required per spec.
    // The recommended format is [domain]-[useCase], e.g. "company.com-omid".
    if ver_node.attr("vendor").is_none() {
        emit(
            ctx,
            issues,
            "VAST-4.1-verification-vendor",
            attr_severity,
            "<Verification> is missing required vendor attribute",
            Some(ver_path.to_owned()),
            "IAB VAST 4.1 §3.17",
            Some(ver_node),
        )
    } else if let Some(vendor) = ver_node.attr("vendor") {
        if !verification_vendor_looks_well_formed(vendor) {
            emit(
                ctx,
                issues,
                "VAST-4.1-verification-vendor-format",
                Severity::Warning,
                "<Verification> vendor should use a domain-qualified key such as \"company.com-omid\"",
                Some(ver_path.to_owned()),
                "IAB VAST 4.1 §3.17",
                Some(ver_node),
            );
        }
    }

    let is_omid_verification = verification_is_omid(ver_node);
    let has_bootstrap_params = ver_node
        .child("VerificationParameters")
        .map(|params| !params.text.trim().is_empty())
        .unwrap_or(false);

    if is_omid_verification && !has_bootstrap_params {
        emit(
            ctx,
            issues,
            "VAST-4.1-verification-parameters",
            Severity::Warning,
            "OMID <Verification> should include non-empty <VerificationParameters> for bootstrap metadata",
            Some(ver_path.to_owned()),
            "IAB VAST 4.3 §3.17.5",
            Some(ver_node),
        );
    }

    check_verification_tracking_events(ver_node, ver_path, ctx, issues);

    // Check JavaScriptResource elements for required attributes.
    for (ji, js) in ver_node.children_named("JavaScriptResource").enumerate() {
        let js_path = format!("{}/JavaScriptResource[{}]", ver_path, ji);

        // VAST-4.1-js-resource-apiframework: apiFramework is required.
        if js.attr("apiFramework").is_none() {
            emit(
                ctx,
                issues,
                "VAST-4.1-js-resource-apiframework",
                attr_severity,
                "<JavaScriptResource> is missing required apiFramework attribute",
                Some(js_path.clone()),
                "IAB VAST 4.1 §3.17.1",
                Some(js),
            )
        } else if let Some(api_framework) = js.attr("apiFramework") {
            if is_omid_verification && api_framework != "omid" {
                emit(
                    ctx,
                    issues,
                    "VAST-4.1-js-resource-apiframework-value",
                    Severity::Warning,
                    "OMID <JavaScriptResource> should declare apiFramework=\"omid\" exactly",
                    Some(js_path.clone()),
                    "IAB VAST 4.1 §3.17.1",
                    Some(js),
                );
            }
        }

        let js_url = js.text.trim();
        if is_omid_verification && js_url.starts_with("http://") {
            emit(
                ctx,
                issues,
                "VAST-4.1-js-resource-https",
                Severity::Warning,
                "OMID <JavaScriptResource> URL should use HTTPS",
                Some(js_path.clone()),
                "IAB VAST 4.1 §3.17.1",
                Some(js),
            );
        }

        // VAST-4.3-js-resource-browser-optional: browserOptional is required (added 4.3).
        if js.attr("browserOptional").is_none() {
            emit(
                ctx,
                issues,
                "VAST-4.3-js-resource-browser-optional",
                Severity::Warning,
                "<JavaScriptResource> should have a browserOptional attribute (required since VAST 4.3)",
                Some(js_path),
                "IAB VAST 4.3 §3.17.1",
            Some(js),
        );
        }
    }

    // Check ExecutableResource elements for required attributes.
    for (ei, exec) in ver_node.children_named("ExecutableResource").enumerate() {
        let exec_path = format!("{}/ExecutableResource[{}]", ver_path, ei);

        // VAST-4.1-exec-resource-apiframework: apiFramework is required.
        if exec.attr("apiFramework").is_none() {
            emit(
                ctx,
                issues,
                "VAST-4.1-exec-resource-apiframework",
                Severity::Error,
                "<ExecutableResource> is missing required apiFramework attribute",
                Some(exec_path.clone()),
                "IAB VAST 4.1 §3.17.2",
                Some(exec),
            )
        } else if let Some(api_framework) = exec.attr("apiFramework") {
            if is_omid_verification && api_framework != "omid" {
                emit(
                    ctx,
                    issues,
                    "VAST-4.1-exec-resource-apiframework-value",
                    Severity::Warning,
                    "OMID <ExecutableResource> should declare apiFramework=\"omid\" exactly",
                    Some(exec_path.clone()),
                    "IAB VAST 4.1 §3.17.2",
                    Some(exec),
                );
            }
        }

        // VAST-4.1-exec-resource-type: type is required.
        if exec.attr("type").is_none() {
            emit(
                ctx,
                issues,
                "VAST-4.1-exec-resource-type",
                Severity::Error,
                "<ExecutableResource> is missing required type attribute",
                Some(exec_path.clone()),
                "IAB VAST 4.1 §3.17.2",
                Some(exec),
            );
        }

        let exec_ref = exec.text.trim();
        if is_omid_verification && exec_ref.starts_with("http://") {
            emit(
                ctx,
                issues,
                "VAST-4.1-exec-resource-https",
                Severity::Warning,
                "OMID <ExecutableResource> reference should use HTTPS when it is a URL",
                Some(exec_path),
                "IAB VAST 4.1 §3.17.2",
                Some(exec),
            );
        }
    }
}

fn check_verification_tracking_events(
    ver_node: &Node,
    ver_path: &str,
    ctx: &ValidationContext,
    issues: &mut Vec<Issue>,
) {
    let Some(tracking_events) = ver_node.child("TrackingEvents") else {
        return;
    };

    for (tracking_index, tracking) in tracking_events.children_named("Tracking").enumerate() {
        let tracking_path = format!("{}/TrackingEvents/Tracking[{}]", ver_path, tracking_index);

        let Some(event) = tracking.attr("event") else {
            continue;
        };

        if event != "verificationNotExecuted" {
            emit(
                ctx,
                issues,
                "VAST-4.1-tracking-event-value",
                Severity::Error,
                "<Tracking> under <Verification> only supports event=\"verificationNotExecuted\"",
                Some(format!("{}[@event]", tracking_path)),
                "IAB VAST 4.3 §3.17.4",
                Some(tracking),
            );
            continue;
        }

        if !tracking_has_reason_macro(&tracking.text) {
            emit(
                ctx,
                issues,
                "VAST-4.1-verification-tracking-reason",
                Severity::Warning,
                "verificationNotExecuted tracking URI should include the [REASON] macro",
                Some(tracking_path),
                "IAB VAST 4.3 §3.17.4",
                Some(tracking),
            );
        }
    }
}

fn tracking_has_reason_macro(value: &str) -> bool {
    value.contains("[REASON]") || value.to_ascii_lowercase().contains("%5breason%5d")
}

fn verification_is_omid(ver_node: &Node) -> bool {
    vendor_looks_like_omid(ver_node.attr("vendor"))
        || ver_node.children_named("JavaScriptResource").any(|js| {
            js.attr("apiFramework")
                .map(|api_framework| api_framework.eq_ignore_ascii_case("omid"))
                .unwrap_or(false)
        })
        || ver_node.children_named("ExecutableResource").any(|exec| {
            exec.attr("apiFramework")
                .map(|api_framework| api_framework.eq_ignore_ascii_case("omid"))
                .unwrap_or(false)
        })
}

fn vendor_looks_like_omid(vendor: Option<&str>) -> bool {
    vendor
        .map(|value| {
            let value = value.trim().to_ascii_lowercase();
            value == "omid" || value.ends_with("-omid") || value.ends_with("/omid")
        })
        .unwrap_or(false)
}

fn verification_vendor_looks_well_formed(vendor: &str) -> bool {
    let vendor = vendor.trim();
    if vendor.is_empty() || vendor.chars().any(char::is_whitespace) {
        return false;
    }

    let Some((domain, use_case)) = vendor.split_once('-').or_else(|| vendor.split_once('/')) else {
        return false;
    };

    if domain.is_empty() || use_case.is_empty() || !domain.contains('.') {
        return false;
    }

    domain
        .chars()
        .all(|ch| ch.is_ascii_alphanumeric() || ch == '.' || ch == '-')
        && use_case
            .chars()
            .all(|ch| ch.is_ascii_alphanumeric() || ch == '.' || ch == '_' || ch == '-')
}

/// Checks BlockedAdCategories for recommended authority attribute (4.1+).
pub(super) fn check_blocked_ad_categories(
    node: &Node, // Wrapper
    node_path: &str,
    ctx: &ValidationContext,
    issues: &mut Vec<Issue>,
) {
    for (i, bac) in node.children_named("BlockedAdCategories").enumerate() {
        if bac.attr("authority").is_none() {
            emit(
                ctx,
                issues,
                "VAST-4.1-blockedadcategories-no-authority",
                Severity::Warning,
                "<BlockedAdCategories> should have an authority attribute to identify the taxonomy",
                Some(format!("{}/BlockedAdCategories[{}]", node_path, i)),
                "IAB VAST 4.1 §2.3.2",
                Some(bac),
            )
        }
    }
}

/// Checks that an InLine Companion has at least one resource element.
/// Wrapper Companions (CompanionWrapper_type) do not require resources.
fn check_companion_resource(
    companion: &Node,
    path: &str,
    ctx: &ValidationContext,
    issues: &mut Vec<Issue>,
) {
    let has_resource = companion.has_child("StaticResource")
        || companion.has_child("IFrameResource")
        || companion.has_child("HTMLResource");
    if !has_resource {
        emit(
            ctx,
            issues,
            "VAST-2.0-companion-resource",
            Severity::Error,
            "<Companion> must contain at least one StaticResource, IFrameResource, or HTMLResource",
            Some(path.to_owned()),
            "IAB VAST 2.0 §2.3.7",
            Some(companion),
        )
    }
}

/// Checks that an InLine NonLinear has at least one resource element.
/// Wrapper NonLinear (NonLinearWrapper_type) does not require resources.
fn check_nonlinear_resource(
    nl: &Node,
    path: &str,
    ctx: &ValidationContext,
    issues: &mut Vec<Issue>,
) {
    // VAST 4.4 / CTV Ad Portfolio: <MediaFiles> is the fourth way to carry a
    // NonLinear asset, and it is the only one Pause, Screensaver, Overlay,
    // Squeezeback and In-Scene video creative uses. A <MediaFiles> container
    // that is itself empty is caught by
    // ctv_portfolio::VAST-4.4-nonlinear-mediafiles-empty, so accepting its
    // presence here does not open a hole.
    let has_resource = nl.has_child("StaticResource")
        || nl.has_child("IFrameResource")
        || nl.has_child("HTMLResource")
        || nl.has_child("MediaFiles");
    if !has_resource {
        emit(
            ctx,
            issues,
            "VAST-2.0-nonlinear-resource",
            Severity::Error,
            "<NonLinear> must contain at least one StaticResource, IFrameResource, or HTMLResource",
            Some(path.to_owned()),
            "IAB VAST 2.0 §2.3.6.1",
            Some(nl),
        )
    }
}