//! Schema validation component for XML, JSON, and YAML payloads.
//!
//! Endpoint URI format: `validator:<schema>`
//!
//! JSON Schema and YAML validation run natively in Rust.
//! XSD validation is executed through the xml-bridge backend.
pub use ValidatorComponent;
pub use ;
/// Version of the Java XML bridge binary this crate is compatible with.
pub const BRIDGE_VERSION: &str = "0.1.0";