//! Schema response-shaping helpers.
//!
//! This module maps raw schema-service records into stable HTTP response DTO
//! shapes used by schema routes while delegating specialized grouping/nesting
//! behavior to focused helper modules.
mod columns;
mod constraints;
mod overview;
mod tables;
pub(super) use columns::schema_columns;
pub(super) use constraints::schema_constraints;
pub(super) use overview::schema_overview;
pub(super) use tables::schema_tables;