vela-protocol 0.114.0

Core library for the Vela scientific knowledge protocol: replayable frontier state, signed canonical events, and proof packets.
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
//! Schema validation for finding bundles in a frontier or VelaRepo.

use std::collections::HashSet;
use std::path::Path;

use chrono::DateTime;
use colored::Colorize;

use crate::cli_style as style;
use serde::{Deserialize, Serialize};

use crate::bundle::{
    ConfidenceMethod, FindingBundle, VALID_ASSERTION_TYPES, VALID_ENTITY_TYPES,
    VALID_EVIDENCE_TYPES, VALID_LINK_TYPES, VALID_PROVENANCE_SOURCE_TYPES,
};
use crate::lint;
use crate::normalize;
use crate::packet;
use crate::repo;

const VALID_EXTRACT_METHODS: &[&str] = &[
    "llm_extraction",
    "manual_curation",
    "database_import",
    "hybrid",
    // v0.30: agent-specific extraction tags. Distinguished from generic
    // `llm_extraction` because they carry the agent's identity
    // (notes-compiler vs scout vs reviewer) — useful for downstream
    // provenance audits that want "all proposals from compile-notes."
    "notes_compiler_via_claude_cli",
    "scout_via_claude_cli",
    "artifact_to_state_import",
];

const VALID_LINK_INFERRED_BY: &[&str] = &["compiler", "reviewer", "author"];

/// A single validation error.
#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)]
pub struct ValidationError {
    pub file: String,
    pub error: String,
}

/// Summary of a validation run.
#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)]
pub struct ValidationReport {
    pub total_files: usize,
    pub valid: usize,
    pub invalid: usize,
    pub errors: Vec<ValidationError>,
}

#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)]
#[serde(rename_all = "snake_case")]
pub enum Fixability {
    Safe,
    ManualReview,
    NotFixable,
}

#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)]
pub struct QualityCheckOptions {
    pub schema: bool,
    pub lint: bool,
    pub graph: bool,
    pub repair_plan: bool,
}

impl Default for QualityCheckOptions {
    fn default() -> Self {
        Self {
            schema: true,
            lint: true,
            graph: true,
            repair_plan: true,
        }
    }
}

#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub struct QualityDiagnostic {
    pub check_id: String,
    pub severity: String,
    pub rule_id: String,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub finding_id: Option<String>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub file: Option<String>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub path: Option<String>,
    pub message: String,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub suggestion: Option<String>,
    pub fixability: Fixability,
}

#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub struct QualityCheckSection {
    pub id: String,
    pub status: String,
    pub checked: usize,
    pub failed: usize,
    pub diagnostics: Vec<QualityDiagnostic>,
}

#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)]
pub struct QualitySummary {
    pub status: String,
    pub checked_findings: usize,
    pub valid_findings: usize,
    pub invalid_findings: usize,
    pub errors: usize,
    pub warnings: usize,
    pub info: usize,
    pub safe_repairs: usize,
}

#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub struct RepairPlanItem {
    pub id: String,
    pub finding_id: String,
    pub path: String,
    pub action: String,
    pub before: serde_json::Value,
    pub after: serde_json::Value,
    pub safe: bool,
}

#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub struct RepairPlan {
    pub deterministic: bool,
    pub safe_items: usize,
    pub items: Vec<RepairPlanItem>,
}

#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub struct QualityCheckReport {
    pub ok: bool,
    pub command: String,
    pub schema_version: String,
    pub source: String,
    pub source_kind: String,
    pub summary: QualitySummary,
    pub checks: Vec<QualityCheckSection>,
    pub repair_plan: RepairPlan,
}

/// Reusable report API for `vela check --json` style consumers.
///
/// The report combines schema validation, statistical lint diagnostics, graph
/// diagnostics, and deterministic safe normalization repairs.
pub fn quality_report(source_path: &Path, options: QualityCheckOptions) -> QualityCheckReport {
    let source = source_path.display().to_string();
    let source_kind = repo::detect(source_path)
        .map(|s| source_kind(&s).to_string())
        .unwrap_or_else(|_| "unknown".to_string());

    let validation = if options.schema {
        validate(source_path)
    } else {
        ValidationReport {
            total_files: 0,
            valid: 0,
            invalid: 0,
            errors: Vec::new(),
        }
    };

    let mut checks = Vec::new();
    if options.schema {
        checks.push(schema_section(&validation));
    }

    let mut repair_items = Vec::new();
    let mut loaded_findings = None;
    if let Ok(frontier) = repo::load_from_path(source_path) {
        loaded_findings = Some(frontier.findings.len());
        if options.lint {
            checks.push(lint_section("lint", lint::lint(&frontier, None, None)));
        }
        if options.graph {
            checks.push(lint_section("graph", lint::lint_frontier(&frontier)));
        }
        if options.repair_plan {
            repair_items = normalize::plan_project_changes(&frontier)
                .into_iter()
                .enumerate()
                .map(|(idx, change)| RepairPlanItem {
                    id: format!("repair_{:04}", idx + 1),
                    finding_id: change.finding_id,
                    path: change.path,
                    action: change.description,
                    before: change.before,
                    after: change.after,
                    safe: change.safe,
                })
                .collect();
        }
    } else if !options.schema {
        checks.push(QualityCheckSection {
            id: "load".to_string(),
            status: "fail".to_string(),
            checked: 0,
            failed: 1,
            diagnostics: vec![QualityDiagnostic {
                check_id: "load".to_string(),
                severity: "error".to_string(),
                rule_id: "load".to_string(),
                finding_id: None,
                file: Some(source.clone()),
                path: None,
                message: "Failed to load frontier source".to_string(),
                suggestion: Some(
                    "Provide a frontier JSON file, VelaRepo, or packet directory".to_string(),
                ),
                fixability: Fixability::ManualReview,
            }],
        });
    }

    let errors = checks
        .iter()
        .flat_map(|c| c.diagnostics.iter())
        .filter(|d| d.severity == "error")
        .count();
    let warnings = checks
        .iter()
        .flat_map(|c| c.diagnostics.iter())
        .filter(|d| d.severity == "warning")
        .count();
    let info = checks
        .iter()
        .flat_map(|c| c.diagnostics.iter())
        .filter(|d| d.severity == "info")
        .count();
    let status = if errors > 0 {
        "fail"
    } else if warnings > 0 || info > 0 {
        "warn"
    } else {
        "pass"
    };
    let safe_repairs = repair_items.iter().filter(|item| item.safe).count();

    QualityCheckReport {
        ok: errors == 0,
        command: "check".to_string(),
        schema_version: crate::project::VELA_SCHEMA_VERSION.to_string(),
        source,
        source_kind,
        summary: QualitySummary {
            status: status.to_string(),
            checked_findings: if options.schema {
                validation.total_files
            } else {
                loaded_findings.unwrap_or(0)
            },
            valid_findings: if options.schema {
                validation.valid
            } else {
                loaded_findings.unwrap_or(0)
            },
            invalid_findings: if options.schema {
                validation.invalid
            } else {
                errors
            },
            errors,
            warnings,
            info,
            safe_repairs,
        },
        checks,
        repair_plan: RepairPlan {
            deterministic: true,
            safe_items: safe_repairs,
            items: repair_items,
        },
    }
}

pub fn quality_report_json(
    source_path: &Path,
    options: QualityCheckOptions,
) -> Result<String, serde_json::Error> {
    serde_json::to_string_pretty(&quality_report(source_path, options))
}

fn schema_section(report: &ValidationReport) -> QualityCheckSection {
    let diagnostics = report
        .errors
        .iter()
        .map(|error| QualityDiagnostic {
            check_id: "schema".to_string(),
            severity: "error".to_string(),
            rule_id: schema_rule_id(&error.error).to_string(),
            finding_id: if error.file.starts_with("vf_") {
                Some(error.file.clone())
            } else {
                None
            },
            file: Some(error.file.clone()),
            path: None,
            message: error.error.clone(),
            suggestion: schema_suggestion(&error.error).map(str::to_string),
            fixability: schema_fixability(&error.error),
        })
        .collect::<Vec<_>>();

    QualityCheckSection {
        id: "schema".to_string(),
        status: if diagnostics.is_empty() {
            "pass".to_string()
        } else {
            "fail".to_string()
        },
        checked: report.total_files,
        failed: report.invalid,
        diagnostics,
    }
}

fn lint_section(id: &str, report: lint::LintReport) -> QualityCheckSection {
    let failed = report
        .diagnostics
        .iter()
        .filter(|d| d.severity == lint::Severity::Error)
        .count();
    let diagnostics = report
        .diagnostics
        .into_iter()
        .map(|diagnostic| QualityDiagnostic {
            check_id: id.to_string(),
            severity: diagnostic.severity.to_string(),
            rule_id: diagnostic.rule_id.clone(),
            finding_id: Some(diagnostic.finding_id),
            file: None,
            path: None,
            message: diagnostic.message,
            suggestion: Some(diagnostic.suggestion),
            fixability: lint_fixability(&diagnostic.rule_id),
        })
        .collect::<Vec<_>>();

    QualityCheckSection {
        id: id.to_string(),
        status: if failed > 0 {
            "fail".to_string()
        } else if diagnostics.is_empty() {
            "pass".to_string()
        } else {
            "warn".to_string()
        },
        checked: report.findings_checked,
        failed,
        diagnostics,
    }
}

fn schema_rule_id(message: &str) -> &'static str {
    if message.contains("Invalid entity type") {
        "schema.entity_type"
    } else if message.contains("Invalid assertion type") {
        "schema.assertion_type"
    } else if message.contains("Invalid evidence type") {
        "schema.evidence_type"
    } else if message.contains("does not match content-address") {
        "schema.content_address"
    } else if message.contains("Duplicate finding ID") {
        "schema.duplicate_id"
    } else if message.contains("does not exist in frontier") {
        "schema.link_target"
    } else if message.contains("not RFC3339") {
        "schema.timestamp"
    } else if message.contains("Project stats.") {
        "schema.project_stats"
    } else if message.contains("Packet validation failed") {
        "schema.packet"
    } else if message.contains("Failed to load") {
        "schema.load"
    } else {
        "schema"
    }
}

fn schema_suggestion(message: &str) -> Option<&'static str> {
    if message.contains("Invalid entity type") {
        Some("Run the normalization plan/apply API to map entity types to schema vocabulary")
    } else if message.contains("Project stats.") {
        Some("Reassemble or resave the frontier after applying content changes")
    } else if message.contains("does not match content-address") {
        Some(
            "Recompute finding IDs and update dependent links only after reviewing the identity change",
        )
    } else if message.contains("does not exist in frontier") {
        Some("Remove the broken link or add the missing target finding")
    } else {
        None
    }
}

fn schema_fixability(message: &str) -> Fixability {
    if message.contains("Invalid entity type") {
        Fixability::Safe
    } else if message.contains("Packet validation failed") || message.contains("Failed to load") {
        Fixability::NotFixable
    } else {
        Fixability::ManualReview
    }
}

fn lint_fixability(rule_id: &str) -> Fixability {
    match rule_id {
        "orphan"
        | "missing_crossref"
        | "unresolved_contradiction"
        | "critical_gap"
        | "fragile_anchor"
        | "stale_superseded"
        | "L001"
        | "L002"
        | "L003"
        | "L004"
        | "L005"
        | "L006"
        | "L007"
        | "L008"
        | "L009"
        | "L010" => Fixability::ManualReview,
        _ => Fixability::NotFixable,
    }
}

fn source_kind(source: &repo::VelaSource) -> &'static str {
    match source {
        repo::VelaSource::ProjectFile(_) => "project_file",
        repo::VelaSource::VelaRepo(_) => "vela_repo",
        repo::VelaSource::PacketDir(_) => "packet_dir",
    }
}

/// Validate all findings in a frontier against the schema.
pub fn validate(source_path: &Path) -> ValidationReport {
    let source_label = source_path.display().to_string();
    let frontier = match repo::load_from_path(source_path) {
        Ok(c) => c,
        Err(e) => {
            return ValidationReport {
                total_files: 0,
                valid: 0,
                invalid: 0,
                errors: vec![ValidationError {
                    file: source_path.display().to_string(),
                    error: format!("Failed to load: {e}"),
                }],
            };
        }
    };

    let mut errors: Vec<ValidationError> = Vec::new();
    let mut seen_ids: HashSet<String> = HashSet::new();
    let all_ids: HashSet<String> = frontier.findings.iter().map(|f| f.id.clone()).collect();
    // v0.8: declared cross-frontier dependencies. Any link target of
    // the form `vf_X@vfr_Y` must reference a Y in this set.
    let declared_deps: HashSet<String> = frontier
        .cross_frontier_deps()
        .filter_map(|d| d.vfr_id.clone())
        .collect();

    if matches!(
        repo::detect(source_path),
        Ok(repo::VelaSource::PacketDir(_))
    ) && let Err(packet_err) = packet::validate(source_path)
    {
        errors.push(ValidationError {
            file: source_label.clone(),
            error: format!("Packet validation failed: {packet_err}"),
        });
    }

    validate_project_metadata(&frontier, source_path, &mut errors);

    // v0.8: every cross-frontier dep must declare both a locator and
    // a pinned snapshot hash. Without those the dep can be neither
    // fetched nor verified, so a strict reader rejects.
    for dep in frontier.cross_frontier_deps() {
        let Some(vfr) = &dep.vfr_id else { continue };
        if dep.locator.as_deref().unwrap_or("").is_empty() {
            errors.push(ValidationError {
                file: source_label.clone(),
                error: format!("Cross-frontier dependency '{vfr}' is missing 'locator'"),
            });
        }
        if dep.pinned_snapshot_hash.as_deref().unwrap_or("").is_empty() {
            errors.push(ValidationError {
                file: source_label.clone(),
                error: format!(
                    "Cross-frontier dependency '{vfr}' is missing 'pinned_snapshot_hash'"
                ),
            });
        }
    }

    for finding in &frontier.findings {
        let file_label = &finding.id;
        validate_finding(
            finding,
            file_label,
            &all_ids,
            &declared_deps,
            &mut seen_ids,
            &mut errors,
        );
    }

    let invalid_count = errors.iter().map(|e| &e.file).collect::<HashSet<_>>().len();
    let valid_count = frontier.findings.len().saturating_sub(invalid_count);

    ValidationReport {
        total_files: frontier.findings.len(),
        valid: valid_count,
        invalid: invalid_count,
        errors,
    }
}

fn validate_finding(
    finding: &FindingBundle,
    file_label: &str,
    all_ids: &HashSet<String>,
    declared_deps: &HashSet<String>,
    seen_ids: &mut HashSet<String>,
    errors: &mut Vec<ValidationError>,
) {
    // Check ID pattern: vf_ + 16 hex chars
    let id_valid = finding.id.starts_with("vf_")
        && finding.id.len() == 19
        && finding.id[3..].chars().all(|c| c.is_ascii_hexdigit());
    if !id_valid {
        errors.push(ValidationError {
            file: file_label.to_string(),
            error: format!(
                "Invalid ID format '{}': expected vf_ + 16 hex chars",
                finding.id
            ),
        });
    }

    // Duplicate ID check
    if !seen_ids.insert(finding.id.clone()) {
        errors.push(ValidationError {
            file: file_label.to_string(),
            error: format!("Duplicate finding ID '{}'", finding.id),
        });
    }

    // Required fields presence (these are enforced by Rust types, but
    // check for empty strings which indicate missing data)
    if finding.assertion.text.is_empty() {
        errors.push(ValidationError {
            file: file_label.to_string(),
            error: "Assertion text is empty".to_string(),
        });
    }

    if finding.created.is_empty() {
        errors.push(ValidationError {
            file: file_label.to_string(),
            error: "Created timestamp is empty".to_string(),
        });
    }
    if !finding.created.is_empty() && DateTime::parse_from_rfc3339(&finding.created).is_err() {
        errors.push(ValidationError {
            file: file_label.to_string(),
            error: format!("Created timestamp '{}' is not RFC3339", finding.created),
        });
    }
    if let Some(updated) = &finding.updated
        && !updated.is_empty()
        && DateTime::parse_from_rfc3339(updated).is_err()
    {
        errors.push(ValidationError {
            file: file_label.to_string(),
            error: format!("Updated timestamp '{}' is not RFC3339", updated),
        });
    }

    let expected_id = FindingBundle::content_address(&finding.assertion, &finding.provenance);
    if finding.id != expected_id {
        errors.push(ValidationError {
            file: file_label.to_string(),
            error: format!(
                "Finding id '{}' does not match content-address '{}'",
                finding.id, expected_id
            ),
        });
    }

    // Confidence score range
    if !(0.0..=1.0).contains(&finding.confidence.score) {
        errors.push(ValidationError {
            file: file_label.to_string(),
            error: format!(
                "Confidence score {} is outside 0.0-1.0 range",
                finding.confidence.score
            ),
        });
    }

    // Assertion type validation
    if !VALID_ASSERTION_TYPES.contains(&finding.assertion.assertion_type.as_str()) {
        errors.push(ValidationError {
            file: file_label.to_string(),
            error: format!(
                "Invalid assertion type '{}'. Valid: {}",
                finding.assertion.assertion_type,
                VALID_ASSERTION_TYPES.join(", "),
            ),
        });
    }

    // Evidence type validation
    if !VALID_EVIDENCE_TYPES.contains(&finding.evidence.evidence_type.as_str()) {
        errors.push(ValidationError {
            file: file_label.to_string(),
            error: format!(
                "Invalid evidence type '{}'. Valid: {}",
                finding.evidence.evidence_type,
                VALID_EVIDENCE_TYPES.join(", "),
            ),
        });
    }

    for entity in &finding.assertion.entities {
        if !VALID_ENTITY_TYPES.contains(&entity.entity_type.as_str()) {
            errors.push(ValidationError {
                file: file_label.to_string(),
                error: format!(
                    "Invalid entity type '{}' for entity '{}'. Valid: {}",
                    entity.entity_type,
                    entity.name,
                    VALID_ENTITY_TYPES.join(", "),
                ),
            });
        }
    }

    if !VALID_PROVENANCE_SOURCE_TYPES.contains(&finding.provenance.source_type.as_str()) {
        errors.push(ValidationError {
            file: file_label.to_string(),
            error: format!(
                "Invalid source_type '{}'. Valid: {}",
                finding.provenance.source_type,
                VALID_PROVENANCE_SOURCE_TYPES.join(", "),
            ),
        });
    }

    if !VALID_EXTRACT_METHODS.contains(&finding.provenance.extraction.method.as_str()) {
        errors.push(ValidationError {
            file: file_label.to_string(),
            error: format!(
                "Invalid extraction method '{}'. Valid: {}",
                finding.provenance.extraction.method,
                VALID_EXTRACT_METHODS.join(", "),
            ),
        });
    }

    if finding.confidence.method == ConfidenceMethod::Computed
        && finding.confidence.components.is_none()
    {
        errors.push(ValidationError {
            file: file_label.to_string(),
            error: "Computed confidence must include components".to_string(),
        });
    }

    // Link targets must either reference an existing in-frontier vf_id
    // (`vf_…`) or, in v0.8+, a vf_id in a declared cross-frontier dep
    // (`vf_…@vfr_…`).
    for link in &finding.links {
        match crate::bundle::LinkRef::parse(&link.target) {
            Err(e) => {
                errors.push(ValidationError {
                    file: file_label.to_string(),
                    error: format!("Invalid link target '{}': {e}", link.target),
                });
            }
            Ok(crate::bundle::LinkRef::Local { vf_id }) => {
                // Old shape: must be vf_ + 16 hex (19 chars total) and
                // exist in the current frontier.
                let id_well_formed =
                    vf_id.len() == 19 && vf_id[3..].chars().all(|c| c.is_ascii_hexdigit());
                if !id_well_formed {
                    errors.push(ValidationError {
                        file: file_label.to_string(),
                        error: format!("Invalid link target format '{}'", link.target),
                    });
                } else if !all_ids.contains(&vf_id) {
                    errors.push(ValidationError {
                        file: file_label.to_string(),
                        error: format!("Link target '{}' does not exist in frontier", link.target),
                    });
                }
            }
            Ok(crate::bundle::LinkRef::Cross { vf_id, vfr_id }) => {
                // v0.8 cross-frontier link: well-formed ids, plus the
                // referenced vfr_id must appear in
                // `frontier.dependencies`. We don't verify the remote's
                // snapshot_hash here — that's the registry's job at
                // pull time. Validation only enforces declaration.
                let vf_well_formed =
                    vf_id.len() == 19 && vf_id[3..].chars().all(|c| c.is_ascii_hexdigit());
                let vfr_well_formed =
                    vfr_id.len() == 20 && vfr_id[4..].chars().all(|c| c.is_ascii_hexdigit());
                if !vf_well_formed {
                    errors.push(ValidationError {
                        file: file_label.to_string(),
                        error: format!(
                            "Invalid cross-frontier link target '{}': vf_ part must be 19 chars (vf_ + 16 hex)",
                            link.target
                        ),
                    });
                }
                if !vfr_well_formed {
                    errors.push(ValidationError {
                        file: file_label.to_string(),
                        error: format!(
                            "Invalid cross-frontier link target '{}': vfr_ part must be 20 chars (vfr_ + 16 hex)",
                            link.target
                        ),
                    });
                }
                if vfr_well_formed && !declared_deps.contains(&vfr_id) {
                    errors.push(ValidationError {
                        file: file_label.to_string(),
                        error: format!(
                            "Cross-frontier link target '{}' references undeclared dependency '{}'; add it via `vela frontier add-dep`",
                            link.target, vfr_id
                        ),
                    });
                }
            }
        }
        if link.created_at.is_empty() {
            errors.push(ValidationError {
                file: file_label.to_string(),
                error: format!("Link created_at is empty for target '{}'", link.target),
            });
        } else if DateTime::parse_from_rfc3339(&link.created_at).is_err() {
            errors.push(ValidationError {
                file: file_label.to_string(),
                error: format!("Link created_at '{}' is not RFC3339", link.created_at),
            });
        }
        if !VALID_LINK_TYPES.contains(&link.link_type.as_str()) {
            errors.push(ValidationError {
                file: file_label.to_string(),
                error: format!("Invalid link type '{}'", link.link_type),
            });
        }
        if !VALID_LINK_INFERRED_BY.contains(&link.inferred_by.as_str()) {
            errors.push(ValidationError {
                file: file_label.to_string(),
                error: format!("Invalid link inferred_by '{}'", link.inferred_by),
            });
        }
    }
}

fn validate_project_metadata(
    frontier: &crate::project::Project,
    source_path: &Path,
    errors: &mut Vec<ValidationError>,
) {
    // `vela_version` and `schema` are publisher-claimed, like the compiler
    // stamp. Pre-v0.10 frontiers (BBB at v0.8.0, the v0.8 conformance vector)
    // must continue to validate under newer binaries without recomputing
    // their content-addressed identity. v0.10's enum extensions are additive,
    // so any pre-v0.10 schema URL listed in `KNOWN_SCHEMA_URLS` validates
    // against the current code.
    const KNOWN_VELA_VERSIONS: &[&str] = &["0.8.0", "0.10.0"];
    const KNOWN_SCHEMA_URLS: &[&str] = &[
        "https://vela.science/schema/finding-bundle/v0.8.0",
        "https://vela.science/schema/finding-bundle/v0.10.0",
    ];
    if !KNOWN_VELA_VERSIONS.contains(&frontier.vela_version.as_str()) {
        errors.push(ValidationError {
            file: source_path.display().to_string(),
            error: format!(
                "Unknown vela_version '{}': expected one of {}",
                frontier.vela_version,
                KNOWN_VELA_VERSIONS.join(", "),
            ),
        });
    }
    if !KNOWN_SCHEMA_URLS.contains(&frontier.schema.as_str()) {
        errors.push(ValidationError {
            file: source_path.display().to_string(),
            error: format!(
                "Unknown schema '{}': expected one of {}",
                frontier.schema,
                KNOWN_SCHEMA_URLS.join(", "),
            ),
        });
    }
    // The compiler stamp is publisher-claimed — it records which binary
    // *produced* the canonical bytes, not which binary may validate them.
    // We require the `vela/X.Y.Z` shape (so it's still a structured field
    // and not free-form prose) but allow any version, current or older,
    // so frontiers compiled with a v0.7 binary continue to validate under
    // a v0.9 binary without churning their content-addressed identity.
    if !frontier.project.compiler.starts_with("vela/")
        || frontier.project.compiler.len() <= "vela/".len()
    {
        errors.push(ValidationError {
            file: source_path.display().to_string(),
            error: format!(
                "Invalid compiler '{}': expected 'vela/X.Y.Z'",
                frontier.project.compiler,
            ),
        });
    }
    if frontier.project.compiled_at.is_empty() {
        errors.push(ValidationError {
            file: source_path.display().to_string(),
            error: "Project compiled_at is empty".to_string(),
        });
    } else if DateTime::parse_from_rfc3339(&frontier.project.compiled_at).is_err() {
        errors.push(ValidationError {
            file: source_path.display().to_string(),
            error: format!(
                "Project compiled_at '{}' is not RFC3339",
                frontier.project.compiled_at
            ),
        });
    }

    let expected_links: usize = frontier.findings.iter().map(|f| f.links.len()).sum();
    if frontier.stats.findings != frontier.findings.len() {
        errors.push(ValidationError {
            file: source_path.display().to_string(),
            error: format!(
                "Project stats.findings {} does not match findings length {}",
                frontier.stats.findings,
                frontier.findings.len()
            ),
        });
    }
    if frontier.stats.links != expected_links {
        errors.push(ValidationError {
            file: source_path.display().to_string(),
            error: format!(
                "Project stats.links {} does not match aggregated links {}",
                frontier.stats.links, expected_links
            ),
        });
    }
}

/// CLI entry point for `vela validate`.
pub fn run(source: &Path) {
    let report = validate(source);

    println!();
    println!("  {}", "VELA · VALIDATE".dimmed());
    println!("  {}", style::tick_row(60));
    println!("  total findings: {}", report.total_files);
    println!(
        "  valid:           {}",
        style::moss(report.valid.to_string())
    );
    println!(
        "  invalid:         {}",
        if report.invalid > 0 {
            style::madder(report.invalid.to_string()).to_string()
        } else {
            report.invalid.to_string()
        }
    );

    if !report.errors.is_empty() {
        println!();
        println!("  {}", "ERRORS".dimmed());
        for err in &report.errors {
            println!(
                "  {} {} · {}",
                style::madder("-"),
                err.file.dimmed(),
                err.error
            );
        }
    } else {
        println!("\n  {} all findings valid.", style::ok("ok"));
    }

    if report.invalid > 0 {
        std::process::exit(1);
    }
}

#[cfg(test)]
mod tests {
    use super::*;
    use crate::bundle::*;
    use crate::project;
    use chrono::Utc;
    use tempfile::TempDir;

    fn make_valid_finding(seed: &str) -> FindingBundle {
        let assertion = Assertion {
            text: format!("Test assertion {}", seed),
            assertion_type: "mechanism".into(),
            entities: vec![],
            relation: None,
            direction: None,
            causal_claim: None,
            causal_evidence_grade: None,
        };
        let provenance = Provenance {
            source_type: "published_paper".into(),
            doi: Some(format!("10.0000/{}", seed)),
            pmid: None,
            pmc: None,
            openalex_id: None,
            url: None,
            title: format!("Test {seed}"),
            authors: vec![],
            year: Some(2024),
            journal: None,
            license: None,
            publisher: None,
            funders: vec![],
            extraction: Extraction {
                method: "llm_extraction".into(),
                model: None,
                model_version: None,
                extracted_at: "1970-01-01T00:00:00Z".to_string(),
                extractor_version: "vela/0.2.0".to_string(),
            },
            review: None,
            citation_count: None,
        };
        let mut finding = FindingBundle::new(
            assertion,
            Evidence {
                evidence_type: "experimental".into(),
                model_system: String::new(),
                species: None,
                method: String::new(),
                sample_size: None,
                effect_size: None,
                p_value: None,
                replicated: false,
                replication_count: None,
                evidence_spans: vec![],
            },
            Conditions {
                text: String::new(),
                species_verified: vec![],
                species_unverified: vec![],
                in_vitro: false,
                in_vivo: false,
                human_data: false,
                clinical_trial: false,
                concentration_range: None,
                duration: None,
                age_group: None,
                cell_type: None,
            },
            Confidence::raw(0.85, "test", 0.9),
            provenance,
            Flags {
                gap: false,
                negative_space: false,
                contested: false,
                retracted: false,
                declining: false,
                gravity_well: false,
                review_state: None,
                superseded: false,
                signature_threshold: None,
                jointly_accepted: false,
            },
        );
        finding.id = FindingBundle::content_address(&finding.assertion, &finding.provenance);
        finding
    }

    fn write_frontier(dir: &Path, findings: Vec<FindingBundle>) -> std::path::PathBuf {
        let c = project::assemble("test", findings, 1, 0, "Test");
        let path = dir.join("test.json");
        let json = serde_json::to_string_pretty(&c).unwrap();
        std::fs::write(&path, json).unwrap();
        path
    }

    fn write_project(dir: &Path, frontier: &project::Project) -> std::path::PathBuf {
        let path = dir.join("test.json");
        let json = serde_json::to_string_pretty(frontier).unwrap();
        std::fs::write(&path, json).unwrap();
        path
    }

    #[test]
    fn valid_frontier_passes() {
        let tmp = TempDir::new().unwrap();
        let path = write_frontier(
            tmp.path(),
            vec![
                make_valid_finding("vf_0000000000000001"),
                make_valid_finding("vf_0000000000000002"),
            ],
        );
        let report = validate(&path);
        assert_eq!(report.total_files, 2);
        assert_eq!(report.valid, 2);
        assert_eq!(report.invalid, 0);
        assert!(report.errors.is_empty());
    }

    #[test]
    fn project_metadata_validation() {
        let tmp = TempDir::new().unwrap();
        let mut c = project::assemble(
            "test",
            vec![make_valid_finding("vf_0000000000000001")],
            1,
            0,
            "Test",
        );
        c.vela_version = "0.1.0".into();
        let path = write_project(tmp.path(), &c);
        let report = validate(&path);
        assert!(
            report
                .errors
                .iter()
                .any(|e| e.error.contains("Unknown vela_version"))
        );
    }

    #[test]
    fn invalid_provenance_source_type_detected() {
        let tmp = TempDir::new().unwrap();
        let mut f = make_valid_finding("vf_0000000000000001");
        f.provenance.source_type = "invalid_source".into();
        let path = write_frontier(tmp.path(), vec![f]);
        let report = validate(&path);
        assert!(
            report
                .errors
                .iter()
                .any(|e| e.error.contains("Invalid source_type"))
        );
    }

    #[test]
    fn invalid_extraction_method_detected() {
        let tmp = TempDir::new().unwrap();
        let mut f = make_valid_finding("vf_0000000000000001");
        f.provenance.extraction.method = "invalid_method".into();
        let path = write_frontier(tmp.path(), vec![f]);
        let report = validate(&path);
        assert!(
            report
                .errors
                .iter()
                .any(|e| e.error.contains("Invalid extraction method"))
        );
    }

    #[test]
    fn invalid_computed_confidence_components_detected() {
        let tmp = TempDir::new().unwrap();
        let mut f = make_valid_finding("vf_0000000000000001");
        f.confidence.method = ConfidenceMethod::Computed;
        f.confidence.components = None;
        let path = write_frontier(tmp.path(), vec![f]);
        let report = validate(&path);
        assert!(report.errors.iter().any(|e| {
            e.error
                .contains("Computed confidence must include components")
        }));
    }

    #[test]
    fn invalid_content_address_detected() {
        let tmp = TempDir::new().unwrap();
        let mut f = make_valid_finding("vf_0000000000000001");
        f.id = "vf_0000000000000002".into();
        let path = write_frontier(tmp.path(), vec![f]);
        let report = validate(&path);
        assert!(
            report
                .errors
                .iter()
                .any(|e| e.error.contains("does not match content-address"))
        );
    }

    #[test]
    fn invalid_link_type_detected() {
        let tmp = TempDir::new().unwrap();
        let mut f = make_valid_finding("vf_link_type");
        let target = f.id.clone();
        f.links.push(Link {
            target,
            link_type: "bad_type".into(),
            note: String::new(),
            inferred_by: "compiler".into(),
            created_at: Utc::now().to_rfc3339(),
            mechanism: None,
        });
        let path = write_frontier(tmp.path(), vec![f]);
        let report = validate(&path);
        assert!(
            report
                .errors
                .iter()
                .any(|e| e.error.contains("Invalid link type"))
        );
    }

    #[test]
    fn invalid_id_format_detected() {
        let tmp = TempDir::new().unwrap();
        let mut f = make_valid_finding("bad_id");
        f.id = "bad_id".into();
        let path = write_frontier(tmp.path(), vec![f]);
        let report = validate(&path);
        assert!(report.invalid > 0);
        assert!(
            report
                .errors
                .iter()
                .any(|e| e.error.contains("Invalid ID format"))
        );
    }

    #[test]
    fn invalid_confidence_detected() {
        let tmp = TempDir::new().unwrap();
        let mut f = make_valid_finding("vf_0000000000000001");
        f.confidence.score = 1.5;
        let path = write_frontier(tmp.path(), vec![f]);
        let report = validate(&path);
        assert!(
            report
                .errors
                .iter()
                .any(|e| e.error.contains("Confidence score"))
        );
    }

    #[test]
    fn invalid_assertion_type_detected() {
        let tmp = TempDir::new().unwrap();
        let mut f = make_valid_finding("vf_0000000000000001");
        f.assertion.assertion_type = "bogus_type".into();
        let path = write_frontier(tmp.path(), vec![f]);
        let report = validate(&path);
        assert!(
            report
                .errors
                .iter()
                .any(|e| e.error.contains("Invalid assertion type"))
        );
    }

    #[test]
    fn invalid_evidence_type_detected() {
        let tmp = TempDir::new().unwrap();
        let mut f = make_valid_finding("vf_0000000000000001");
        f.evidence.evidence_type = "anecdotal".into();
        let path = write_frontier(tmp.path(), vec![f]);
        let report = validate(&path);
        assert!(
            report
                .errors
                .iter()
                .any(|e| e.error.contains("Invalid evidence type"))
        );
    }

    #[test]
    fn broken_link_target_detected() {
        let tmp = TempDir::new().unwrap();
        let mut f = make_valid_finding("vf_0000000000000001");
        f.links.push(Link {
            target: "vf_deadbeefdeadbeef".into(),
            link_type: "extends".into(),
            note: String::new(),
            inferred_by: "compiler".into(),
            created_at: Utc::now().to_rfc3339(),
            mechanism: None,
        });
        let path = write_frontier(tmp.path(), vec![f]);
        let report = validate(&path);
        assert!(
            report
                .errors
                .iter()
                .any(|e| e.error.contains("does not exist"))
        );
    }

    #[test]
    fn duplicate_id_detected() {
        let tmp = TempDir::new().unwrap();
        let f1 = make_valid_finding("vf_0000000000000001");
        let f2 = make_valid_finding("vf_0000000000000001");
        let path = write_frontier(tmp.path(), vec![f1, f2]);
        let report = validate(&path);
        assert!(report.errors.iter().any(|e| e.error.contains("Duplicate")));
    }

    #[test]
    fn invalid_entity_type_detected_and_marked_fixable() {
        let tmp = TempDir::new().unwrap();
        let mut f = make_valid_finding("vf_0000000000000001");
        f.assertion.entities.push(Entity {
            name: "BBB".into(),
            entity_type: "biological_barrier".into(),
            identifiers: serde_json::Map::new(),
            canonical_id: None,
            candidates: vec![],
            aliases: vec![],
            resolution_provenance: None,
            resolution_confidence: 1.0,
            resolution_method: None,
            species_context: None,
            needs_review: false,
        });
        f.id = FindingBundle::content_address(&f.assertion, &f.provenance);
        let path = write_frontier(tmp.path(), vec![f]);

        let report = quality_report(&path, QualityCheckOptions::default());

        assert!(
            report
                .checks
                .iter()
                .flat_map(|check| check.diagnostics.iter())
                .any(|diagnostic| diagnostic.rule_id == "schema.entity_type"
                    && diagnostic.fixability == Fixability::Safe)
        );
        assert!(report.repair_plan.safe_items >= 2);
    }

    #[test]
    fn quality_report_includes_schema_lint_and_graph_sections() {
        let tmp = TempDir::new().unwrap();
        let mut f = make_valid_finding("vf_0000000000000001");
        f.evidence.sample_size = Some("n=4".into());
        f.evidence.replicated = false;
        f.confidence.score = 0.9;
        f.id = FindingBundle::content_address(&f.assertion, &f.provenance);
        let path = write_frontier(tmp.path(), vec![f]);

        let report = quality_report(&path, QualityCheckOptions::default());

        assert!(report.checks.iter().any(|check| check.id == "schema"));
        assert!(report.checks.iter().any(|check| check.id == "lint"));
        assert!(report.checks.iter().any(|check| check.id == "graph"));
        assert!(
            report
                .checks
                .iter()
                .flat_map(|check| check.diagnostics.iter())
                .any(|diagnostic| diagnostic.rule_id == "L001")
        );
        assert!(
            report
                .checks
                .iter()
                .flat_map(|check| check.diagnostics.iter())
                .any(|diagnostic| diagnostic.rule_id == "orphan")
        );
    }

    // ── v0.8: cross-frontier link validation ──────────────────────────

    fn make_finding_with_link(seed: &str, target: &str) -> FindingBundle {
        let mut f = make_valid_finding(seed);
        f.links = vec![Link {
            target: target.to_string(),
            link_type: "extends".to_string(),
            note: String::new(),
            inferred_by: "compiler".to_string(),
            created_at: "2024-01-01T00:00:00Z".to_string(),
            mechanism: None,
        }];
        f
    }

    #[test]
    fn cross_frontier_link_with_declared_dep_passes() {
        let tmp = TempDir::new().unwrap();
        let target_vfr = "vfr_0000000000000aaa";
        let f1 = make_valid_finding("vf_0000000000000001");
        let f2 = make_finding_with_link(
            "vf_0000000000000002",
            &format!("vf_0000000000000003@{target_vfr}"),
        );
        let mut c = project::assemble("test", vec![f1, f2], 1, 0, "Test");
        c.project.dependencies.push(project::ProjectDependency {
            name: "ext-frontier".into(),
            source: "vela.hub".into(),
            version: None,
            pinned_hash: None,
            vfr_id: Some(target_vfr.into()),
            locator: Some("https://example.test/ext.json".into()),
            pinned_snapshot_hash: Some("a".repeat(64)),
        });
        let path = write_project(tmp.path(), &c);
        let report = validate(&path);
        let cross_errors: Vec<_> = report
            .errors
            .iter()
            .filter(|e| e.error.contains("cross-frontier") || e.error.contains("undeclared"))
            .collect();
        assert!(
            cross_errors.is_empty(),
            "expected no cross-frontier errors, got: {cross_errors:?}",
        );
    }

    #[test]
    fn cross_frontier_link_without_declared_dep_fails() {
        let tmp = TempDir::new().unwrap();
        let f = make_finding_with_link(
            "vf_0000000000000001",
            "vf_0000000000000002@vfr_0000000000000bbb",
        );
        let path = write_frontier(tmp.path(), vec![f]);
        let report = validate(&path);
        assert!(
            report
                .errors
                .iter()
                .any(|e| e.error.contains("undeclared dependency")),
            "expected undeclared-dep error, got: {:?}",
            report.errors
        );
    }

    #[test]
    fn cross_frontier_dep_without_locator_or_snapshot_fails() {
        let tmp = TempDir::new().unwrap();
        let mut c = project::assemble(
            "test",
            vec![make_valid_finding("vf_0000000000000001")],
            1,
            0,
            "Test",
        );
        c.project.dependencies.push(project::ProjectDependency {
            name: "incomplete-dep".into(),
            source: "vela.hub".into(),
            version: None,
            pinned_hash: None,
            vfr_id: Some("vfr_0000000000000ccc".into()),
            locator: None,
            pinned_snapshot_hash: None,
        });
        let path = write_project(tmp.path(), &c);
        let report = validate(&path);
        assert!(
            report
                .errors
                .iter()
                .any(|e| e.error.contains("missing 'locator'")),
            "expected missing-locator error",
        );
        assert!(
            report
                .errors
                .iter()
                .any(|e| e.error.contains("missing 'pinned_snapshot_hash'")),
            "expected missing-snapshot error",
        );
    }

    #[test]
    fn malformed_cross_frontier_link_target_fails() {
        let tmp = TempDir::new().unwrap();
        // bad: vfr_ part is not 16 hex chars
        let f = make_finding_with_link("vf_0000000000000001", "vf_0000000000000002@vfr_too_short");
        let path = write_frontier(tmp.path(), vec![f]);
        let report = validate(&path);
        assert!(
            report
                .errors
                .iter()
                .any(|e| e.error.contains("vfr_ part must be 20 chars")),
            "expected malformed-vfr error, got: {:?}",
            report.errors
        );
    }
}