Skip to main content

lib3mf_core/validation/
schema.rs

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