//! JSON Schema interoperability.
//!
//! This module provides conversion between postmortem schemas and JSON Schema format.
//! JSON Schema is the industry standard for describing JSON data structures, enabling
//! integration with existing tools and documentation systems.
use Value;
/// Trait for converting schema types to JSON Schema format.
///
/// Implementers of this trait can be exported as JSON Schema documents
/// compatible with draft 2020-12.
/// Maps postmortem Format types to JSON Schema format strings.