Review The Output¶
A successful command is not the end of the review. Use the artifacts in the bundle to decide whether the synthetic dataset is safe and useful.
Review Order¶
- Read
generation_manifest.json. - Read
validation_report.json. - Read
business_validation_report.jsonwhen business rules were supplied. - Review the effective
dataset_spec.yamlordataset_spec.json. - Inspect a small sample of generated rows.
Manifest Checks¶
Require all of these conditions:
{
"synthetic": true,
"source_rows_copied": false,
"validation_valid": true
}
Also confirm:
seedis the value requested by the caller;row_countsmatch the requested scale;output_formatis correct;package_versionanddataset_spec_schema_versionare recorded;spec_sha256is present;business_validation.rules_sha256and its summary are present when rules were used.
Validation Report¶
validation_report.json reports deterministic checks for:
- entity and field schema;
- primary-key uniqueness;
- relationships and foreign keys;
- field and row constraints;
- temporal and formula constraints;
- aggregate reconciliation.
Do not treat a missing report as success. A failed report should block publication of the generated dataset.
Profile Review¶
Profiles should contain metadata such as types, null ratios, ranges, percentiles, approximate distinct counts, safe low-cardinality distributions, and masked patterns.
Stop and investigate if a profile contains:
- a real email address, phone number, token, credential, or private key;
- a source row copied as a nested object or list;
- rare free-text values that could identify a person;
- an unexpected identifier distribution.
Generated-Row Review¶
Inspect generated data for domain usefulness, but do not compare or publish raw source rows during that review. For sensitive domains, perform review in the same protected environment as the source data.
Re-run with the same spec, rules, package version, and seed when reproducibility is required. A change to any of those inputs can legitimately change output.
See Safety Model for guarantees and limitations.