| 1 | //! OpenAPI 3.x (3.0 + 3.1, JSON/YAML) loading and conversion into collections. |
| 2 | //! |
| 3 | //! Specs are parsed into [`serde_json::Value`] rather than a strict spec model |
| 4 | //! so that unknown fields and 3.0/3.1 differences are tolerated gracefully. |
| 5 | |
| 6 | pub mod docs; |
| 7 | pub mod examples; |
| 8 | pub mod import; |
| 9 | pub mod loader; |
| 10 | pub mod resolve; |
| 11 | |
| 12 | pub use import::import_spec; |
| 13 | pub use loader::{load_spec, parse_spec}; |