datasynth-core 2.3.1

Core domain models, traits, and distributions for synthetic enterprise data generation
Documentation
//! Audit-related models for RustAssureTwin integration.
//!
//! This module provides comprehensive audit data structures following
//! International Standards on Auditing (ISA) requirements:
//!
//! - Audit engagements (ISA 210, ISA 220)
//! - Workpapers and documentation (ISA 230)
//! - Evidence management (ISA 500)
//! - Risk assessment (ISA 315, ISA 330)
//! - Professional judgment (ISA 200)
//! - Findings and issues (ISA 265)
//! - Analytical procedures (ISA 520)
//! - Internal audit (ISA 610)
//! - Related parties (ISA 550)
//! - Accounting estimates (ISA 540)

pub mod accounting_estimates;
pub mod analytical_procedure;
pub mod analytical_relationships;
pub mod audit_scope;
pub mod component_audit;
pub mod confirmation;
mod engagement;
pub mod engagement_letter;
mod evidence;
pub mod finding;
pub mod going_concern;
pub mod internal_audit;
mod judgment;
pub mod materiality_calculation;
pub mod procedure_step;
pub mod related_party;
pub mod risk;
pub mod risk_assessment_cra;
pub mod sample;
pub mod sampling_plan;
pub mod scots;
pub mod service_organization;
pub mod subsequent_events;
pub mod unusual_items;
mod workpaper;

pub use accounting_estimates::*;
pub use analytical_procedure::*;
pub use analytical_relationships::*;
pub use audit_scope::*;
pub use component_audit::*;
pub use confirmation::*;
pub use engagement::*;
pub use engagement_letter::*;
pub use evidence::*;
pub use finding::*;
pub use going_concern::*;
pub use internal_audit::*;
pub use judgment::*;
pub use materiality_calculation::*;
pub use procedure_step::*;
pub use related_party::*;
pub use risk::*;
pub use risk_assessment_cra::*;
pub use sample::*;
pub use sampling_plan::*;
pub use scots::*;
pub use service_organization::*;
pub use subsequent_events::*;
pub use unusual_items::*;
pub use workpaper::*;