datasynth-core 2.3.1

Core domain models, traits, and distributions for synthetic enterprise data generation
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Regulatory compliance module for EU AI Act, GDPR, and related frameworks.
//!
//! Provides content marking for synthetic data (Article 50), data governance
//! reporting (Article 10), and compliance metadata generation.

pub mod article10;
pub mod content_marking;

pub use article10::{DataGovernanceReport, ProcessingStep, QualityMeasure};
pub use content_marking::{
    ContentCredential, MarkingConfig, MarkingFormat, SyntheticContentMarker,
};