//! Embedded JSON Schemas for every hostlib host method.
//!
//! Schemas live at `schemas/<module>/<method>.{request,response}.json` and
//! are baked into the crate at compile time via `include_str!`. They're the
//! source of truth for hostlib request/response compatibility: the schema
//! files ship with the crate (see the `include` field in `Cargo.toml`),
//! and consumers fetch them through this module.
//!
//! Schemas use JSON Schema draft 2020-12.
pub use ;
/// Direction of a schema (request body vs. response body).
// The build script derives the catalog from the directory. Embedders use it
// for drift checks, schema export, and live contract validation.
include!;
/// Look up a single schema as raw JSON text.