//! 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.
//!
//! The base crate has no schema engine, so schema-required admission fails closed.
use crateJcsError;
/// JSON Schema validator companion to BoundaryProfile.
///
/// Fail-closed marker for schema-required admission in the base crate.
;