1/// Schema parsing module - coordinates between legacy and parsed implementations
23pub mod common;
4pub mod legacy;
5pub mod parsed;
67// Re-export public APIs for backward compatibility
8pub use legacy::parse_schema;
9pub use parsed::parse_schema_into;