//! JSON-first API for XFA forms.
//!
//! Provides bidirectional conversion between XFA `FormTree` structures and JSON,
//! with automatic type coercion, repeating section support, and schema export.
//!
//! # Examples
//!
//! ```
//! use xfa_json::{form_tree_to_json, json_to_form_tree, export_schema};
//! ```
pub use form_tree_to_json;
pub use form_tree_to_value;
pub use json_to_form_tree;
pub use export_schema;
pub use ;