1//! Support for OpenApi version 3.0.1 specification.
2//!
3//! See the
4//! [specification](https://github.com/OAI/OpenAPI-Specification/blob/0dd79f6/versions/3.0.1.md)
5//! for more information.
67mod components;
8mod schema;
910pub use crate::v3_0::{components::*, schema::*};