//! Pillars: [Reality][AI]
//!
//! Generative Schema Mode - Complete API ecosystem generation from JSON examples
//!
//! This module provides functionality to generate entire API ecosystems from a few
//! example JSON payloads. It automatically infers entity structures, routes, and
//! relationships, creating a complete mock API ready for deployment.
//!
//! # Features
//!
//! - **JSON → API Ecosystem**: Generate complete APIs from JSON payloads
//! - **Auto-Route Generation**: Realistic CRUD mapping with proper HTTP methods
//! - **Entity Relation Inference**: Automatically detect relationships between entities
//! - **One-Click Environment Creation**: Generate and deploy in one command
//! - **Preview/Edit Support**: Review and modify generated schemas before deployment
//! - **Configurable Naming**: Custom naming and pluralization rules
//! - **Reversibility**: Regenerate schema from modified data
pub use EntityDefinition;
pub use RouteDefinition;
pub use SchemaPreview;