//! Relation-table response contracts.
//!//! This module contains payload contracts returned by the schema tables endpoint.
useserde::Serialize;/// Lightweight relation metadata returned by `/schema/tables`.
#[derive(Serialize)]pubstructSchemaTable{/// Schema that owns the relation.
pubtable_schema: String,
/// Relation name.
pubtable_name: String,
/// Relation type (`BASE TABLE` or `VIEW`).
pubrelation_type: String,
/// Convenience flag indicating whether the relation is a view.
pubis_view:bool,
}