Skip to main content

ftm_types/
lib.rs

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