lib3mf_core/validation/
schema.rs

1use crate::model::Model;
2use crate::validation::report::ValidationReport;
3
4pub fn validate_schema(_model: &Model, _report: &mut ValidationReport) {
5    // Basic schema checks that aren't caught by parser
6}