//! Optional JSON Schema validation before and after JCS canonicalization.
//!
//! This module provides a `SchemaValidator` that can validate JSON values
//! against JSON Schema before and/or after canonicalization. It's designed
//! for boundary profiles that require schema conformance as part of
//! their transformation pipeline.
//!
//! Note: Schema validation is a stub in the base crate. For full JSON Schema
//! support, enable the `jsonschema` feature.
use crateJcsError;
/// JSON Schema validator companion to BoundaryProfile.
///
/// Currently a stub that always passes validation.
/// For full JSON Schema support, use a dedicated validator crate.
;