1 2 3 4 5 6 7 8 9 10 11 12 13 14
//! FollowTheMoney schema parser and code generator //! //! This library downloads FTM YAML schemas from the opensanctions/followthemoney //! repository and generates type-safe Rust structs. pub mod codegen; pub mod schema; pub use codegen::CodeGenerator; pub use schema::{FtmProperty, FtmSchema, ResolvedSchema, SchemaRegistry}; pub mod generated; pub use generated::FtmEntity;