//! Typed hierarchy definitions for ID-based ltree operators.
//!
//! Replaces raw `serde_json::Value` in `CompiledSchema.hierarchies_config` with
//! a strongly-typed [`HierarchiesConfig`] map, giving compile-time field access
//! and eliminating manual JSON traversal at runtime.
use HashMap;
use ;
/// A single hierarchy definition mapping a name to its database table and ltree
/// path column.
///
/// Compiled from the `[hierarchies.<name>]` TOML section. The `id` column is
/// always `id` (UUID) per the trinity pattern and is not configurable.
/// Maps hierarchy names to their [`HierarchyDefinition`].
pub type HierarchiesConfig = ;