1/// Schema parsing module - coordinates between legacy and parsed implementations
2pub mod common;
3pub mod legacy;
4pub mod parsed;
56// Re-export public APIs for backward compatibility
7pub use legacy::parse_schema;
8pub use parsed::parse_schema_into;