1 2 3 4 5 6 7 8 9 10 11 12
//! Normalized `/schema/constraints` request-parameter contracts. //! //! This module contains validated query DTOs passed from normalization into //! query-path loaders and response orchestrators. /// Validated query parameters for `/schema/constraints`. pub(in super::super) struct NormalizedConstraintQuery { /// Required table name. pub(in super::super) table_name: String, /// Required schema name (defaulted to `public` when omitted). pub(in super::super) table_schema: String, }