├── tests_ce
├── __init__.py
├── unit_tests
│ ├── __init__.py
│ ├── tasks
│ │ └── __init__.py
│ ├── test_mcp
│ │ ├── __init__.py
│ │ └── conftest.py
│ ├── test_task
│ │ └── __init__.py
│ ├── test_converter
│ │ └── __init__.py
│ ├── test_generator
│ │ ├── __init__.py
│ │ ├── test_company_domain_generator.py
│ │ ├── test_company_url_generator.py
│ │ └── people.wgt.ent.csv
│ ├── tests_demographics
│ │ └── data
│ │ │ ├── age_pyramid.dmgrp.csv
│ │ │ └── condition_rates.dmgrp.csv
│ ├── test_connection_config
│ │ └── __init__.py
│ └── test_exporter
│ │ └── __init__.py
├── functional_tests
│ ├── __init__.py
│ ├── test_cli
│ │ └── __init__.py
│ ├── test_attribute_script
│ │ ├── data
│ │ │ ├── univers.json
│ │ │ └── company.json
│ │ └── test_attribute_script.xml
│ ├── test_include
│ │ ├── conf
│ │ │ ├── base.properties
│ │ │ └── base_2.properties
│ │ ├── data
│ │ │ └── control.ent.csv
│ │ ├── test_simple_include.xml
│ │ ├── test_dynamic_uri.xml
│ │ ├── test_dynamic_include_model.xml
│ │ └── include_generate.xml
│ ├── test_sqlite
│ │ ├── data
│ │ │ └── active.wgt.csv
│ │ ├── conf
│ │ │ ├── base.properties
│ │ │ └── environment.env.properties
│ │ ├── 1_prepare.xml
│ │ └── 4_iterate.xml
│ ├── test_file_exporter
│ │ └── data
│ │ │ ├── active.wgt.csv
│ │ │ └── products.ent.csv
│ ├── csv_separatorr
│ │ └── data
│ │ │ ├── active.wgt.csv
│ │ │ ├── active_2.wgt.csv
│ │ │ ├── person.ent.csv
│ │ │ ├── person_2.ent.csv
│ │ │ ├── people.wgt.ent.csv
│ │ │ ├── people_2.wgt.ent.csv
│ │ │ ├── products.ent.csv
│ │ │ └── products_2.ent.csv
│ ├── test_functional_weighted_data_source
│ │ └── data
│ │ │ ├── active.wgt.csv
│ │ │ ├── people.wgt.ent.csv
│ │ │ └── people2.wgt.ent.csv
│ ├── test_nested_part
│ │ └── data
│ │ │ ├── ids.ent.csv
│ │ │ ├── person.ent.csv
│ │ │ ├── notification.ent.csv
│ │ │ └── state.ent.csv
│ ├── test_xml_functional
│ │ ├── test_import_xml.xml
│ │ └── test_export_xml.xml
│ ├── test_source_script
│ │ └── data
│ │ │ └── people.wgt.ent.csv
│ ├── test_generator_functional
│ │ ├── uuid_generator_test.xml
│ │ └── data
│ │ │ └── name_dataset.ent.csv
│ └── test_datetime
│ │ ├── functional_test_date_empty_in_format.xml
│ │ ├── functional_test_date_invalid_input_1.xml
│ │ ├── functional_test_date_invalid_input_2.xml
│ │ └── functional_test_date_invalid_in_format.xml
├── integration_tests
│ ├── __init__.py
│ ├── test_demos
│ │ └── __init___.py
│ ├── test_generate
│ │ ├── conf
│ │ │ └── base.properties
│ │ └── data
│ │ │ └── person.ent.csv
│ ├── test_page_process
│ │ └── data
│ │ │ ├── active.wgt.csv
│ │ │ └── products.ent.csv
│ ├── test_large_count
│ │ └── data
│ │ │ ├── active.wgt.csv
│ │ │ └── person.ent.csv
│ ├── weighted_data_source
│ │ └── data
│ │ │ ├── active.wgt.csv
│ │ │ ├── people.wgt.ent.csv
│ │ │ └── people2.wgt.ent.csv
│ ├── extensive_script
│ │ └── custom_script_components
│ │ │ ├── conf
│ │ │ └── base.properties
│ │ │ ├── data
│ │ │ └── person.ent.csv
│ │ │ └── datamimic.xml
│ ├── test_if
│ │ ├── conf
│ │ │ └── environment.env.properties
│ │ └── data
│ │ │ └── products.ent.csv
│ ├── script_source
│ │ └── data
│ │ │ ├── alice_pet.json
│ │ │ ├── bob_pet.json
│ │ │ ├── person.ent.csv
│ │ │ └── cathay_pet.json
│ ├── test_part
│ │ └── data
│ │ │ ├── person.ent.csv
│ │ │ └── single_people.json
│ ├── test_iterate
│ │ └── data
│ │ │ └── person.ent.csv
│ ├── test_demographics
│ │ └── DE
│ │ │ └── 2023Q4
│ │ │ ├── profile_meta.dmgrp.csv
│ │ │ └── condition_rates.dmgrp.csv
│ ├── test_source_script
│ │ ├── data
│ │ │ └── people.ent.csv
│ │ ├── test_source_scripted_in_generate.xml
│ │ └── test_source_scripted_in_nested_key.xml
│ ├── consumer_json_minio
│ │ └── test_json_consumer.xml
│ ├── test_array
│ │ └── test_array_invalid_type.xml
│ ├── data_iteration
│ │ └── data
│ │ │ └── products.ent.csv
│ ├── test_exporters
│ │ └── data
│ │ │ └── products.ent.csv
│ ├── generator_test
│ │ └── stateful_generator_pagination.xml
│ ├── consumer_csv
│ │ └── test_csv_consumer.xml
│ ├── consumer_log_consumer
│ │ └── test_log_consumer.xml
│ └── consumer_txt
│ │ └── test_txt_consumer.xml
└── external_service_tests
│ ├── __init__.py
│ ├── test_rdbms
│ └── data
│ │ ├── active.wgt.csv
│ │ └── products.ent.csv
│ ├── test_rdbms_functional
│ ├── data
│ │ └── active.wgt.csv
│ └── conf
│ │ └── base.properties
│ ├── datamimic_demo
│ ├── a-simple-script
│ │ ├── conf
│ │ │ └── base.properties
│ │ ├── data
│ │ │ ├── active.wgt.csv
│ │ │ └── car.ent.csv
│ │ ├── 1_prepare.xml
│ │ └── datamimic.xml
│ ├── b-simple-database
│ │ ├── data
│ │ │ └── active.wgt.csv
│ │ ├── conf
│ │ │ ├── base.properties
│ │ │ └── environment.env.properties
│ │ └── 1_prepare.xml
│ ├── demo-db-mapping
│ │ ├── conf
│ │ │ ├── base.properties
│ │ │ └── environment.env.properties
│ │ └── 1_prepare.xml
│ ├── j-json
│ │ ├── data
│ │ │ ├── active.wgt.csv
│ │ │ └── person.ent.csv
│ │ └── datamimic.xml
│ ├── demo-custom-components
│ │ └── conf
│ │ │ └── base.properties
│ ├── n-mongodb
│ │ ├── data
│ │ │ ├── person.ent.csv
│ │ │ └── friends.ent.csv
│ │ └── conf
│ │ │ └── local.env.properties
│ ├── f-simple-python
│ │ ├── conf
│ │ │ └── base.properties
│ │ ├── data
│ │ │ └── person.ent.csv
│ │ └── datamimic.xml
│ ├── c-simple-anonymization
│ │ ├── data
│ │ │ └── active.wgt.csv
│ │ └── conf
│ │ │ └── base.properties
│ ├── o-datetime
│ │ └── data
│ │ │ └── customer.ent.csv
│ ├── d-simple-postprocess
│ │ ├── conf
│ │ │ └── base.properties
│ │ ├── data
│ │ │ └── tx.ent.csv
│ │ └── 1_prepare.xml
│ ├── e-simple-compositekey
│ │ ├── conf
│ │ │ ├── base.properties
│ │ │ └── environment.env.properties
│ │ └── 1_prepare.xml
│ ├── k-watermark
│ │ ├── script
│ │ │ ├── update_watermark.scr.sql
│ │ │ ├── source.scr.sql
│ │ │ └── target.scr.sql
│ │ └── conf
│ │ │ ├── local.env.properties
│ │ │ └── environment.env.properties
│ ├── gewerbeverordnung-xml
│ │ └── data
│ │ │ ├── xgewerbeordnung_column_data.ent.csv
│ │ │ ├── veranstaltungstyp_column_data.ent.csv
│ │ │ └── veranstaltungstyp_row_data.ent.csv
│ ├── h-converter
│ │ └── datamimic.xml
│ └── g-entity
│ │ ├── us.xml
│ │ ├── product.xml
│ │ └── net.xml
│ ├── test_sequence_table_generator
│ ├── data
│ │ └── active.wgt.csv
│ └── conf
│ │ └── base.properties
│ ├── test_demo
│ ├── demo-mongodb
│ │ ├── data
│ │ │ ├── friends.ent.csv
│ │ │ └── person.ent.csv
│ │ ├── conf
│ │ │ └── environment.env.properties
│ │ └── info.toml
│ └── demo-selector
│ │ └── info.toml
│ ├── test_sqlalchemy_extended_conf
│ └── script
│ │ └── backup.sql
│ ├── integration_data_source_cyclic
│ └── data
│ │ └── products.ent.csv
│ └── test_variable
│ └── data
│ └── arnginfo.ent.csv
├── datamimic_ce
├── clients
│ └── __init__.py
├── contexts
│ └── __init__.py
├── demos
│ ├── __init___.py
│ ├── demo-database
│ │ ├── data
│ │ │ └── active.wgt.csv
│ │ ├── conf
│ │ │ └── environment.env.properties
│ │ ├── 1_prepare.xml
│ │ └── info.toml
│ ├── demo-db-mapping
│ │ ├── conf
│ │ │ ├── base.properties
│ │ │ └── environment.env.properties
│ │ ├── 1_prepare.xml
│ │ └── info.toml
│ ├── demo-custom-components
│ │ └── conf
│ │ │ └── base.properties
│ ├── demo-json
│ │ ├── data
│ │ │ ├── active.wgt.csv
│ │ │ └── person.ent.csv
│ │ └── info.toml
│ ├── demo-model
│ │ ├── data
│ │ │ └── active.wgt.csv
│ │ ├── conf
│ │ │ └── base.properties
│ │ ├── 1_prepare.xml
│ │ └── info.toml
│ ├── demo-py-scripting
│ │ ├── conf
│ │ │ └── base.properties
│ │ └── data
│ │ │ └── person.ent.csv
│ ├── demo-masking
│ │ ├── data
│ │ │ └── active.wgt.csv
│ │ ├── conf
│ │ │ ├── environment.env.properties
│ │ │ └── base.properties
│ │ └── info.toml
│ ├── demo-mongodb
│ │ ├── data
│ │ │ ├── person.ent.csv
│ │ │ └── friends.ent.csv
│ │ ├── conf
│ │ │ └── environment.env.properties
│ │ └── info.toml
│ ├── demo-datetime
│ │ ├── data
│ │ │ └── customer.ent.csv
│ │ ├── script
│ │ │ └── py_script.scr.py
│ │ └── info.toml
│ ├── demo-postprocess
│ │ ├── 1_prepare.xml
│ │ ├── data
│ │ │ └── tx.ent.csv
│ │ └── info.toml
│ ├── demo-watermark
│ │ ├── script
│ │ │ ├── update_watermark.scr.sql
│ │ │ ├── source.scr.sql
│ │ │ ├── target.scr.sql
│ │ │ └── config.scr.sql
│ │ ├── conf
│ │ │ └── environment.env.properties
│ │ └── info.toml
│ ├── overview-generator
│ │ ├── us.xml
│ │ ├── product.xml
│ │ ├── net.xml
│ │ └── info.toml
│ ├── demo-xml
│ │ └── info.toml
│ ├── demo-finance
│ │ ├── datamimic.xml
│ │ └── info.toml
│ ├── demo-insurance
│ │ └── datamimic.xml
│ ├── demo-selector
│ │ └── info.toml
│ ├── demo-healthcare
│ │ └── info.toml
│ ├── overview-converter
│ │ └── info.toml
│ ├── demo-condition
│ │ └── info.toml
│ └── demo-ecommerce
│ │ └── info.toml
├── enums
│ └── __init__.py
├── model
│ └── __init__.py
├── parsers
│ └── __init__.py
├── tasks
│ └── __init__.py
├── workers
│ └── __init__.py
├── constants
│ ├── __init__.py
│ └── convention_constants.py
├── converter
│ └── __init__.py
├── data_sources
│ └── __init__.py
├── domains
│ ├── utils
│ │ └── __init__.py
│ ├── address
│ │ └── __init__.py
│ ├── doctor
│ │ └── __init__.py
│ ├── patient
│ │ └── __init__.py
│ ├── person
│ │ └── __init__.py
│ └── domain_data
│ │ ├── common
│ │ ├── person
│ │ │ ├── nobTitle_female_VN.csv
│ │ │ ├── nobTitle_male_VN.csv
│ │ │ ├── salutation_CS.csv
│ │ │ ├── salutation_DA.csv
│ │ │ ├── salutation_EN.csv
│ │ │ ├── salutation_FR.csv
│ │ │ ├── salutation_NO.csv
│ │ │ ├── salutation_PL.csv
│ │ │ ├── salutation_SK.csv
│ │ │ ├── salutation_SV.csv
│ │ │ ├── salutation_UK.csv
│ │ │ ├── salutation_US.csv
│ │ │ ├── salutation_VN.csv
│ │ │ ├── salutation_DE.csv
│ │ │ ├── salutation_ES.csv
│ │ │ ├── salutation_FI.csv
│ │ │ ├── salutation_IN.csv
│ │ │ ├── salutation_IW.csv
│ │ │ ├── salutation_NL.csv
│ │ │ ├── salutation_SL.csv
│ │ │ ├── salutation_TR.csv
│ │ │ ├── salutation_BE.csv
│ │ │ ├── salutation_BG.csv
│ │ │ ├── salutation_IT.csv
│ │ │ ├── salutation_MT.csv
│ │ │ ├── salutation_PT.csv
│ │ │ ├── salutation_RU.csv
│ │ │ ├── salutation_SR.csv
│ │ │ ├── nobTitle_male_fr.csv
│ │ │ ├── nobTitle_male_GB.csv
│ │ │ ├── nobTitle_male_US.csv
│ │ │ ├── nobTitle_male_de.csv
│ │ │ ├── nobTitle_male_es.csv
│ │ │ ├── nobTitle_male_it.csv
│ │ │ ├── nobTitle_female_GB.csv
│ │ │ ├── nobTitle_female_US.csv
│ │ │ ├── nobTitle_female_de.csv
│ │ │ ├── nobTitle_female_es.csv
│ │ │ ├── nobTitle_female_fr.csv
│ │ │ ├── nobTitle_female_it.csv
│ │ │ ├── familyName_NZ.csv
│ │ │ ├── givenName_female_GB.csv
│ │ │ ├── familyName_MX.csv
│ │ │ ├── givenName_female_AU.csv
│ │ │ ├── givenName_male_GB.csv
│ │ │ ├── givenName_male_NZ.csv
│ │ │ ├── familyName_AR.csv
│ │ │ ├── givenName_female_NZ.csv
│ │ │ ├── title_CN.csv
│ │ │ ├── title_FR.csv
│ │ │ ├── familyName_LT.csv
│ │ │ ├── givenName_male_AU.csv
│ │ │ ├── givenName_female_SK.csv
│ │ │ ├── givenName_male_SK.csv
│ │ │ ├── givenName_female_CZ.csv
│ │ │ ├── familyName_LV.csv
│ │ │ ├── givenName_female_CH.csv
│ │ │ ├── givenName_male_CZ.csv
│ │ │ ├── givenName_male_BE.csv
│ │ │ ├── title_US.csv
│ │ │ ├── title_VN.csv
│ │ │ ├── givenName_female_BE.csv
│ │ │ ├── title_IT.csv
│ │ │ ├── familyName_VN.csv
│ │ │ ├── familyName_CA.csv
│ │ │ ├── givenName_female_ES.csv
│ │ │ ├── givenName_male_IE.csv
│ │ │ ├── givenName_female_CN.csv
│ │ │ ├── givenName_female_IE.csv
│ │ │ ├── givenName_female_VN.csv
│ │ │ ├── givenName_male_ES.csv
│ │ │ ├── givenName_male_VN.csv
│ │ │ ├── title_DE.csv
│ │ │ └── familyName_BE.csv
│ │ ├── organization
│ │ │ ├── legalForm_BR.csv
│ │ │ ├── legalForm_CH.csv
│ │ │ ├── legalForm_AT.csv
│ │ │ ├── department_DE.csv
│ │ │ ├── department_US.csv
│ │ │ ├── legalForm_US.csv
│ │ │ ├── artificialName_VN.csv
│ │ │ ├── department_VN.csv
│ │ │ ├── legalForm_VN.csv
│ │ │ └── sector_VN.csv
│ │ ├── state
│ │ │ ├── state_MC.csv
│ │ │ ├── state_VA.csv
│ │ │ ├── state_GB.csv
│ │ │ ├── state_BE.csv
│ │ │ ├── state_IE.csv
│ │ │ ├── state_BA.csv
│ │ │ ├── state_AT.csv
│ │ │ ├── state_AD.csv
│ │ │ └── state_CY.csv
│ │ ├── net
│ │ │ ├── tld_VN.csv
│ │ │ ├── tld_DE.csv
│ │ │ ├── tld_US.csv
│ │ │ ├── webmailDomain_DE.csv
│ │ │ └── webmailDomain_VN.csv
│ │ ├── city
│ │ │ └── city_VA.csv
│ │ └── country_ES.csv
│ │ ├── insurance
│ │ ├── product
│ │ │ ├── coverage_counts_DE.csv
│ │ │ ├── coverage_counts_US.csv
│ │ │ └── coverage_counts_VN.csv
│ │ └── policy
│ │ │ ├── statuses_DE.csv
│ │ │ ├── statuses_US.csv
│ │ │ ├── premium_buckets_DE.csv
│ │ │ ├── premium_buckets_US.csv
│ │ │ ├── premium_frequencies_DE.csv
│ │ │ ├── premium_frequencies_US.csv
│ │ │ ├── premium_frequencies_VN.csv
│ │ │ ├── statuses_VN.csv
│ │ │ └── premium_buckets_VN.csv
│ │ ├── healthcare
│ │ ├── medical
│ │ │ ├── mri_field_strengths_DE.csv
│ │ │ ├── mri_field_strengths_US.csv
│ │ │ ├── xray_detector_types_DE.csv
│ │ │ ├── xray_detector_types_US.csv
│ │ │ ├── xray_detector_types_VN.csv
│ │ │ ├── genders_US.csv
│ │ │ ├── genders_VN.csv
│ │ │ ├── genders_DE.csv
│ │ │ ├── blood_types_US.csv
│ │ │ ├── blood_types_DE.csv
│ │ │ ├── mri_field_strengths_VN.csv
│ │ │ ├── usage_purposes_mri_DE.csv
│ │ │ ├── usage_purposes_mri_US.csv
│ │ │ ├── usage_purposes_ventilator_DE.csv
│ │ │ ├── usage_purposes_ventilator_US.csv
│ │ │ ├── ultrasound_probe_types_DE.csv
│ │ │ ├── ultrasound_probe_types_US.csv
│ │ │ ├── usage_purposes_mri_VN.csv
│ │ │ ├── usage_purposes_xray_DE.csv
│ │ │ ├── usage_purposes_xray_US.csv
│ │ │ ├── usage_purposes_ultrasound_DE.csv
│ │ │ ├── usage_purposes_ultrasound_US.csv
│ │ │ ├── usage_purposes_ventilator_VN.csv
│ │ │ ├── procedure_name_patterns_US.csv
│ │ │ ├── procedure_name_patterns_VN.csv
│ │ │ ├── usage_purposes_ultrasound_VN.csv
│ │ │ ├── usage_purposes_xray_VN.csv
│ │ │ ├── ventilator_modes_DE.csv
│ │ │ ├── ventilator_modes_US.csv
│ │ │ ├── procedure_name_patterns_DE.csv
│ │ │ ├── usage_purposes_DE.csv
│ │ │ ├── usage_purposes_US.csv
│ │ │ ├── ultrasound_imaging_modes_DE.csv
│ │ │ ├── ultrasound_imaging_modes_US.csv
│ │ │ ├── ventilator_modes_VN.csv
│ │ │ ├── blood_types_VN.csv
│ │ │ ├── statuses_VN.csv
│ │ │ ├── clinical_trials
│ │ │ │ ├── phases_DE.csv
│ │ │ │ ├── phases_US.csv
│ │ │ │ ├── phases_VN.csv
│ │ │ │ ├── intervention_types_VN.csv
│ │ │ │ ├── statuses_US.csv
│ │ │ │ ├── statuses_DE.csv
│ │ │ │ ├── intervention_types_US.csv
│ │ │ │ └── statuses_VN.csv
│ │ │ ├── maintenance_parts_VN.csv
│ │ │ ├── procedure_actions_preventive_VN.csv
│ │ │ ├── test_types_VN.csv
│ │ │ ├── ultrasound_probe_types_VN.csv
│ │ │ ├── procedure_purposes_preventive_VN.csv
│ │ │ ├── ultrasound_imaging_modes_VN.csv
│ │ │ ├── test_statuses_US.csv
│ │ │ ├── procedure_actions_preventive_DE.csv
│ │ │ ├── procedure_actions_preventive_US.csv
│ │ │ ├── procedure_purposes_preventive_US.csv
│ │ │ ├── abnormal_flags_US.csv
│ │ │ ├── doctor_titles_VN.csv
│ │ │ ├── procedure_actions_general_VN.csv
│ │ │ ├── languages_VN.csv
│ │ │ ├── maintenance_types_DE.csv
│ │ │ ├── maintenance_types_US.csv
│ │ │ ├── maintenance_types_VN.csv
│ │ │ ├── procedure_anesthesia_notes_VN.csv
│ │ │ ├── test_statuses_VN.csv
│ │ │ ├── abnormal_flags_VN.csv
│ │ │ ├── device_statuses_VN.csv
│ │ │ ├── usage_purposes_VN.csv
│ │ │ ├── chief_complaints_VN.csv
│ │ │ ├── procedure_purposes_preventive_DE.csv
│ │ │ ├── specimen_types_VN.csv
│ │ │ ├── device_types_VN.csv
│ │ │ ├── insurance_providers_VN.csv
│ │ │ ├── procedure_actions_general_DE.csv
│ │ │ ├── procedure_actions_general_US.csv
│ │ │ ├── test_statuses_DE.csv
│ │ │ ├── procedure_purposes_general_US.csv
│ │ │ ├── procedure_purposes_general_VN.csv
│ │ │ ├── procedure_locations_VN.csv
│ │ │ ├── abnormal_flags_DE.csv
│ │ │ ├── procedure_anesthesia_notes_DE.csv
│ │ │ ├── procedure_anesthesia_notes_US.csv
│ │ │ ├── procedure_purposes_general_DE.csv
│ │ │ ├── procedure_locations_DE.csv
│ │ │ ├── procedure_locations_US.csv
│ │ │ ├── locations_VN.csv
│ │ │ ├── procedure_purposes_surgical_VN.csv
│ │ │ ├── procedure_purposes_diagnostic_VN.csv
│ │ │ ├── procedure_actions_surgical_VN.csv
│ │ │ ├── test_components_DE.csv
│ │ │ ├── visit_types_VN.csv
│ │ │ ├── procedure_purposes_surgical_US.csv
│ │ │ ├── test_types_DE.csv
│ │ │ ├── test_types_US.csv
│ │ │ ├── maintenance_parts_DE.csv
│ │ │ ├── maintenance_parts_US.csv
│ │ │ ├── maintenance_results_US.csv
│ │ │ └── procedure_description_templates_general_VN.csv
│ │ ├── hospital
│ │ │ ├── accreditations_childrens_US.csv
│ │ │ ├── accreditations_community_DE.csv
│ │ │ ├── accreditations_childrens_VN.csv
│ │ │ ├── accreditations_community_VN.csv
│ │ │ ├── accreditations_community_US.csv
│ │ │ ├── accreditations_rehabilitation_VN.csv
│ │ │ ├── accreditations_veterans_DE.csv
│ │ │ ├── accreditations_childrens_DE.csv
│ │ │ ├── accreditations_rehabilitation_DE.csv
│ │ │ ├── accreditations_veterans_US.csv
│ │ │ ├── accreditations_psychiatric_VN.csv
│ │ │ ├── accreditations_veterans_VN.csv
│ │ │ ├── services_specialty_US.csv
│ │ │ ├── services_specialty_VN.csv
│ │ │ ├── accreditations_psychiatric_US.csv
│ │ │ ├── services_specialty_DE.csv
│ │ │ ├── accreditations_long-term_care_DE.csv
│ │ │ ├── accreditations_psychiatric_DE.csv
│ │ │ ├── hospital_types_VN.csv
│ │ │ ├── services_long-term_care_US.csv
│ │ │ ├── accreditations_rehabilitation_US.csv
│ │ │ ├── services_long-term_care_DE.csv
│ │ │ ├── accreditations_specialty_DE.csv
│ │ │ ├── accreditations_specialty_VN.csv
│ │ │ ├── services_veterans_US.csv
│ │ │ ├── accreditations_long-term_care_VN.csv
│ │ │ ├── services_psychiatric_DE.csv
│ │ │ ├── accreditations_general_VN.csv
│ │ │ ├── accreditations_long-term_care_US.csv
│ │ │ ├── hospital_types_US.csv
│ │ │ ├── services_psychiatric_VN.csv
│ │ │ ├── services_community_US.csv
│ │ │ ├── services_psychiatric_US.csv
│ │ │ ├── services_childrens_US.csv
│ │ │ ├── services_veterans_DE.csv
│ │ │ ├── accreditations_general_DE.csv
│ │ │ ├── accreditations_general_US.csv
│ │ │ ├── accreditations_specialty_US.csv
│ │ │ ├── services_childrens_VN.csv
│ │ │ ├── services_general_US.csv
│ │ │ ├── accreditations_teaching_DE.csv
│ │ │ ├── services_community_VN.csv
│ │ │ ├── services_long-term_care_VN.csv
│ │ │ ├── services_general_VN.csv
│ │ │ ├── services_rehabilitation_US.csv
│ │ │ ├── services_teaching_US.csv
│ │ │ ├── hospital_types_DE.csv
│ │ │ ├── services_childrens_DE.csv
│ │ │ ├── services_community_DE.csv
│ │ │ ├── services_rehabilitation_DE.csv
│ │ │ ├── services_veterans_VN.csv
│ │ │ ├── services_rehabilitation_VN.csv
│ │ │ ├── services_general_DE.csv
│ │ │ ├── services_teaching_DE.csv
│ │ │ ├── services_teaching_VN.csv
│ │ │ ├── accreditations_teaching_US.csv
│ │ │ ├── accreditations_teaching_VN.csv
│ │ │ ├── departments_specialty_DE.csv
│ │ │ └── departments_specialty_US.csv
│ │ └── medical_device
│ │ │ ├── device_statuses_VN.csv
│ │ │ ├── device_types_VN.csv
│ │ │ └── locations_VN.csv
│ │ ├── public_sector
│ │ ├── administration
│ │ │ ├── saturday_open_times_DE.csv
│ │ │ ├── saturday_open_times_VN.csv
│ │ │ ├── close_times_DE.csv
│ │ │ ├── close_times_VN.csv
│ │ │ ├── open_times_DE.csv
│ │ │ ├── open_times_VN.csv
│ │ │ ├── saturday_open_times_US.csv
│ │ │ ├── close_times_US.csv
│ │ │ ├── open_times_US.csv
│ │ │ ├── extended_close_times_DE.csv
│ │ │ ├── extended_close_times_VN.csv
│ │ │ ├── saturday_close_times_DE.csv
│ │ │ ├── saturday_close_times_VN.csv
│ │ │ ├── extended_close_times_US.csv
│ │ │ ├── jurisdictions_US.csv
│ │ │ ├── saturday_close_times_US.csv
│ │ │ ├── jurisdictions_DE.csv
│ │ │ ├── weekdays_US.csv
│ │ │ ├── weekdays_VN.csv
│ │ │ ├── jurisdictions_VN.csv
│ │ │ ├── weekdays_DE.csv
│ │ │ ├── name_patterns_VN.csv
│ │ │ ├── name_patterns_DE.csv
│ │ │ ├── roles_DE.csv
│ │ │ ├── roles_US.csv
│ │ │ ├── name_patterns_US.csv
│ │ │ └── roles_VN.csv
│ │ ├── police
│ │ │ ├── shifts_VN.csv
│ │ │ ├── shifts_US.csv
│ │ │ ├── shifts_DE.csv
│ │ │ ├── languages_DE.csv
│ │ │ ├── languages_US.csv
│ │ │ └── languages_VN.csv
│ │ └── education
│ │ │ ├── facilities_k12_US.csv
│ │ │ ├── facilities_k12_DE.csv
│ │ │ ├── facilities_common_DE.csv
│ │ │ ├── facilities_common_US.csv
│ │ │ ├── facilities_common_VN.csv
│ │ │ ├── facilities_k12_VN.csv
│ │ │ ├── programs_k12_VN.csv
│ │ │ ├── programs_k12_US.csv
│ │ │ ├── programs_k12_DE.csv
│ │ │ ├── accreditations_vocational_DE.csv
│ │ │ ├── accreditations_k12_DE.csv
│ │ │ ├── programs_middle_school_DE.csv
│ │ │ ├── facilities_vocational_DE.csv
│ │ │ ├── programs_middle_school_US.csv
│ │ │ ├── programs_middle_school_VN.csv
│ │ │ ├── facilities_vocational_US.csv
│ │ │ ├── programs_elementary_VN.csv
│ │ │ ├── accreditations_vocational_VN.csv
│ │ │ └── facilities_vocational_VN.csv
│ │ ├── ecommerce
│ │ ├── product
│ │ │ ├── rating_weights_DE.csv
│ │ │ ├── rating_weights_ES.csv
│ │ │ ├── rating_weights_FR.csv
│ │ │ ├── rating_weights_GB.csv
│ │ │ ├── rating_weights_US.csv
│ │ │ └── rating_weights_VN.csv
│ │ ├── order
│ │ │ ├── coupon_prefixes_DE.csv
│ │ │ ├── coupon_prefixes_US.csv
│ │ │ ├── coupon_prefixes_VN.csv
│ │ │ ├── coupon_prefixes_ES.csv
│ │ │ ├── coupon_prefixes_GB.csv
│ │ │ └── coupon_prefixes_FR.csv
│ │ ├── currencies_VN.csv
│ │ ├── product_conditions_DE.csv
│ │ ├── product_conditions_US.csv
│ │ ├── currencies_GB.csv
│ │ ├── product_availability_DE.csv
│ │ ├── product_availability_US.csv
│ │ ├── product_conditions_GB.csv
│ │ ├── currencies_FR.csv
│ │ ├── payment_methods_DE.csv
│ │ ├── product_availability_VN.csv
│ │ ├── currencies_ES.csv
│ │ ├── product_conditions_FR.csv
│ │ ├── product_conditions_VN.csv
│ │ ├── product_nouns_jewelry_DE.csv
│ │ ├── payment_methods_VN.csv
│ │ ├── product_conditions_ES.csv
│ │ ├── product_nouns_books_DE.csv
│ │ ├── payment_methods_US.csv
│ │ ├── product_nouns_furniture_DE.csv
│ │ ├── product_nouns_sports_DE.csv
│ │ ├── product_nouns_beverages_DE.csv
│ │ ├── product_nouns_toys_DE.csv
│ │ ├── product_nouns_home_goods_DE.csv
│ │ ├── product_nouns_pet_supplies_DE.csv
│ │ ├── product_colors_GB.csv
│ │ ├── product_nouns_food_DE.csv
│ │ ├── product_colors_FR.csv
│ │ ├── product_nouns_automotive_DE.csv
│ │ ├── product_nouns_office_supplies_DE.csv
│ │ ├── product_colors_ES.csv
│ │ ├── product_nouns_beauty_DE.csv
│ │ ├── product_nouns_health_DE.csv
│ │ ├── currencies_US.csv
│ │ ├── product_categories_VN.csv
│ │ └── currencies_DE.csv
│ │ ├── finance
│ │ ├── transaction
│ │ │ ├── currency_mapping_VN.csv
│ │ │ ├── status_US.csv
│ │ │ ├── status_VN.csv
│ │ │ ├── channels_US.csv
│ │ │ ├── channels_DE.csv
│ │ │ ├── status_DE.csv
│ │ │ ├── channels_VN.csv
│ │ │ ├── currency_mapping_US.csv
│ │ │ ├── currency_mapping_DE.csv
│ │ │ ├── categories_US.csv
│ │ │ ├── categories_VN.csv
│ │ │ ├── transaction_type_modifiers_US.csv
│ │ │ ├── categories_DE.csv
│ │ │ ├── transaction_types_US.csv
│ │ │ ├── transaction_type_modifiers_DE.csv
│ │ │ ├── transaction_types_DE.csv
│ │ │ ├── transaction_type_modifiers_VN.csv
│ │ │ └── transaction_types_VN.csv
│ │ ├── account_types_DE.csv
│ │ ├── account_types_US.csv
│ │ ├── account_types_VN.csv
│ │ ├── credit_card
│ │ │ ├── card_types_VN.csv
│ │ │ ├── card_types_DE.csv
│ │ │ └── card_types_US.csv
│ │ └── bank
│ │ │ └── banks_VN.csv
│ │ ├── groups
│ │ ├── age_band
│ │ │ ├── age_band_DE.csv
│ │ │ ├── age_band_US.csv
│ │ │ └── age_band_VN.csv
│ │ ├── gender_category
│ │ │ ├── gender_category_US.csv
│ │ │ ├── gender_category_VN.csv
│ │ │ └── gender_category_DE.csv
│ │ ├── coverage_line
│ │ │ └── coverage_line_VN.csv
│ │ ├── area_code_cluster
│ │ │ └── area_code_cluster_VN.csv
│ │ └── sector_macro
│ │ │ └── sector_macro_VN.csv
│ │ └── demographics
│ │ ├── demographic_components_DE.csv
│ │ ├── demographic_components_VN.csv
│ │ └── demographic_components_US.csv
├── exporters
│ ├── __init__.py
│ └── exporter.py
├── statements
│ └── __init__.py
├── product_storage
│ └── __init__.py
├── mcp
│ └── __init__.py
└── connection_config
│ └── __init__.py
├── script
├── format
│ ├── format.sh
│ └── lint.sh
└── exporter
│ └── clean_exporter_result.sh
├── examples
├── address
│ ├── req2_locale.json
│ ├── req6_multi.json
│ ├── req1_minimal.json
│ ├── req4_zero_count.json
│ ├── req5_non_ascii_locale.json
│ └── req3_constraints.json
├── doctor
│ ├── req1_minimal.json
│ ├── req2_locale.json
│ ├── req6_multi.json
│ ├── req4_zero_count.json
│ └── req5_non_ascii_locale.json
├── patient
│ ├── req2_locale.json
│ ├── req6_multi.json
│ ├── req1_minimal.json
│ ├── req4_zero_count.json
│ └── req5_non_ascii_locale.json
└── person
│ ├── req1_minimal.json
│ ├── req2_locale.json
│ ├── req6_multi.json
│ ├── req4_zero_count.json
│ └── req5_non_ascii_locale.json
├── MANIFEST.in
└── Makefile
/tests_ce/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/datamimic_ce/clients/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/datamimic_ce/contexts/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/datamimic_ce/demos/__init___.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/datamimic_ce/enums/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/datamimic_ce/model/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/datamimic_ce/parsers/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/datamimic_ce/tasks/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/datamimic_ce/workers/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/tests_ce/unit_tests/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/datamimic_ce/constants/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/datamimic_ce/converter/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/datamimic_ce/data_sources/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/utils/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/datamimic_ce/exporters/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/datamimic_ce/statements/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/tests_ce/functional_tests/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/tests_ce/integration_tests/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/tests_ce/unit_tests/tasks/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/address/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/doctor/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/patient/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/person/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/datamimic_ce/product_storage/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/tests_ce/external_service_tests/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/tests_ce/unit_tests/test_mcp/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/tests_ce/unit_tests/test_task/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/tests_ce/functional_tests/test_cli/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/tests_ce/unit_tests/test_converter/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/tests_ce/unit_tests/test_generator/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/tests_ce/integration_tests/test_demos/__init___.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/tests_ce/functional_tests/test_attribute_script/data/univers.json:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/tests_ce/unit_tests/test_generator/test_company_domain_generator.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/tests_ce/unit_tests/test_generator/test_company_url_generator.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/datamimic_ce/demos/demo-database/data/active.wgt.csv:
--------------------------------------------------------------------------------
1 | true|80
2 | false|20
--------------------------------------------------------------------------------
/tests_ce/functional_tests/test_include/conf/base.properties:
--------------------------------------------------------------------------------
1 | user_count=5
--------------------------------------------------------------------------------
/datamimic_ce/demos/demo-db-mapping/conf/base.properties:
--------------------------------------------------------------------------------
1 | global_count=100
2 |
--------------------------------------------------------------------------------
/tests_ce/functional_tests/test_include/conf/base_2.properties:
--------------------------------------------------------------------------------
1 | customer_count=10
--------------------------------------------------------------------------------
/tests_ce/functional_tests/test_sqlite/data/active.wgt.csv:
--------------------------------------------------------------------------------
1 | true|80
2 | false|20
--------------------------------------------------------------------------------
/datamimic_ce/demos/demo-custom-components/conf/base.properties:
--------------------------------------------------------------------------------
1 | global_count=10
2 |
--------------------------------------------------------------------------------
/datamimic_ce/demos/demo-json/data/active.wgt.csv:
--------------------------------------------------------------------------------
1 | true|80
2 | false|10
3 | |10
4 |
--------------------------------------------------------------------------------
/datamimic_ce/demos/demo-json/data/person.ent.csv:
--------------------------------------------------------------------------------
1 | name|age
2 | Alice|23
3 | Bob|34
--------------------------------------------------------------------------------
/datamimic_ce/demos/demo-model/data/active.wgt.csv:
--------------------------------------------------------------------------------
1 | true|80
2 | false|10
3 | |10
4 |
--------------------------------------------------------------------------------
/datamimic_ce/demos/demo-py-scripting/conf/base.properties:
--------------------------------------------------------------------------------
1 | customer_count=10
2 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/common/person/nobTitle_female_VN.csv:
--------------------------------------------------------------------------------
1 | Không,1
2 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/common/person/nobTitle_male_VN.csv:
--------------------------------------------------------------------------------
1 | Không,1
2 |
--------------------------------------------------------------------------------
/tests_ce/external_service_tests/test_rdbms/data/active.wgt.csv:
--------------------------------------------------------------------------------
1 | true|80
2 | false|20
--------------------------------------------------------------------------------
/datamimic_ce/demos/demo-masking/data/active.wgt.csv:
--------------------------------------------------------------------------------
1 | true|80
2 | false|10
3 | |10
4 |
--------------------------------------------------------------------------------
/datamimic_ce/demos/demo-mongodb/data/person.ent.csv:
--------------------------------------------------------------------------------
1 | name|age
2 | Alice|23
3 | Bob|34
4 |
--------------------------------------------------------------------------------
/script/format/format.sh:
--------------------------------------------------------------------------------
1 | #!/bin/sh -e
2 | set -x
3 | uv run ruff format datamimic_ce
4 |
--------------------------------------------------------------------------------
/tests_ce/functional_tests/test_file_exporter/data/active.wgt.csv:
--------------------------------------------------------------------------------
1 | true|80
2 | false|20
--------------------------------------------------------------------------------
/tests_ce/integration_tests/test_generate/conf/base.properties:
--------------------------------------------------------------------------------
1 | count = 10
2 | count_1 = 15
--------------------------------------------------------------------------------
/tests_ce/integration_tests/test_page_process/data/active.wgt.csv:
--------------------------------------------------------------------------------
1 | true|80
2 | false|20
--------------------------------------------------------------------------------
/datamimic_ce/demos/demo-mongodb/data/friends.ent.csv:
--------------------------------------------------------------------------------
1 | name|age
2 | Jana|31
3 | Ryan|29
4 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/common/organization/legalForm_BR.csv:
--------------------------------------------------------------------------------
1 | Ltda.,50
2 | S.A.,50
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/common/person/salutation_CS.csv:
--------------------------------------------------------------------------------
1 | FEMALE,MALE
2 | Paní,Pan
3 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/common/person/salutation_DA.csv:
--------------------------------------------------------------------------------
1 | FEMALE,MALE
2 | Herr,Fru
3 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/common/person/salutation_EN.csv:
--------------------------------------------------------------------------------
1 | FEMALE,MALE
2 | Mrs.,Mr.
3 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/common/person/salutation_FR.csv:
--------------------------------------------------------------------------------
1 | FEMALE,MALE
2 | Mme,M.
3 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/common/person/salutation_NO.csv:
--------------------------------------------------------------------------------
1 | FEMALE,MALE
2 | Herr,Fru
3 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/common/person/salutation_PL.csv:
--------------------------------------------------------------------------------
1 | FEMALE,MALE
2 | Pani,Pan
3 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/common/person/salutation_SK.csv:
--------------------------------------------------------------------------------
1 | FEMALE,MALE
2 | Paní,Pan
3 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/common/person/salutation_SV.csv:
--------------------------------------------------------------------------------
1 | FEMALE,MALE
2 | Herr,Fru
3 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/common/person/salutation_UK.csv:
--------------------------------------------------------------------------------
1 | FEMALE,MALE
2 | Пані,Пан
3 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/common/person/salutation_US.csv:
--------------------------------------------------------------------------------
1 | FEMALE,MALE
2 | Mrs.,Mr.
3 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/common/person/salutation_VN.csv:
--------------------------------------------------------------------------------
1 | FEMALE,MALE
2 | Bà,Ông
3 |
--------------------------------------------------------------------------------
/tests_ce/external_service_tests/test_rdbms_functional/data/active.wgt.csv:
--------------------------------------------------------------------------------
1 | true|80
2 | false|20
--------------------------------------------------------------------------------
/tests_ce/functional_tests/csv_separatorr/data/active.wgt.csv:
--------------------------------------------------------------------------------
1 | true,80
2 | false,10
3 | ,10
4 |
--------------------------------------------------------------------------------
/tests_ce/functional_tests/test_sqlite/conf/base.properties:
--------------------------------------------------------------------------------
1 | customer_count=10
2 | user_count=10
--------------------------------------------------------------------------------
/datamimic_ce/demos/demo-datetime/data/customer.ent.csv:
--------------------------------------------------------------------------------
1 | name|n/a
2 | Alice|
3 | Bob|
4 | Jana|
5 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/common/person/salutation_DE.csv:
--------------------------------------------------------------------------------
1 | FEMALE,MALE
2 | Frau,Herr
3 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/common/person/salutation_ES.csv:
--------------------------------------------------------------------------------
1 | FEMALE,MALE
2 | Señora,Señor
3 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/common/person/salutation_FI.csv:
--------------------------------------------------------------------------------
1 | FEMALE,MALE
2 | Rouva,Herra
3 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/common/person/salutation_IN.csv:
--------------------------------------------------------------------------------
1 | FEMALE,MALE
2 | Nyonya,Tuan
3 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/common/person/salutation_IW.csv:
--------------------------------------------------------------------------------
1 | FEMALE,MALE
2 | Gveret,Mar
3 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/common/person/salutation_NL.csv:
--------------------------------------------------------------------------------
1 | FEMALE,MALE
2 | Mevr.,Dhr.
3 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/common/person/salutation_SL.csv:
--------------------------------------------------------------------------------
1 | FEMALE,MALE
2 | Gospa,Gospod
3 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/common/person/salutation_TR.csv:
--------------------------------------------------------------------------------
1 | FEMALE,MALE
2 | Bayan,Bay
3 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/insurance/product/coverage_counts_DE.csv:
--------------------------------------------------------------------------------
1 | 1,2
2 | 2,1
3 | 3,1
4 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/insurance/product/coverage_counts_US.csv:
--------------------------------------------------------------------------------
1 | 1,2
2 | 2,1
3 | 3,1
4 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/insurance/product/coverage_counts_VN.csv:
--------------------------------------------------------------------------------
1 | 1,2
2 | 2,1
3 | 3,1
4 |
--------------------------------------------------------------------------------
/tests_ce/functional_tests/csv_separatorr/data/active_2.wgt.csv:
--------------------------------------------------------------------------------
1 | true|80
2 | false|10
3 | |10
4 |
--------------------------------------------------------------------------------
/tests_ce/integration_tests/test_large_count/data/active.wgt.csv:
--------------------------------------------------------------------------------
1 | true|80
2 | false|10
3 | |10
4 |
--------------------------------------------------------------------------------
/tests_ce/integration_tests/test_large_count/data/person.ent.csv:
--------------------------------------------------------------------------------
1 | name|age
2 | Alice|23
3 | Bob|34
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/common/organization/legalForm_CH.csv:
--------------------------------------------------------------------------------
1 | GmbH,256
2 | AG,240
3 | & Co.,44
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/common/person/salutation_BE.csv:
--------------------------------------------------------------------------------
1 | FEMALE,MALE
2 | Спадарыня,Спадар
3 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/common/person/salutation_BG.csv:
--------------------------------------------------------------------------------
1 | FEMALE,MALE
2 | Госпожа,Господин
3 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/common/person/salutation_IT.csv:
--------------------------------------------------------------------------------
1 | FEMALE,MALE
2 | Signora,Signor
3 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/common/person/salutation_MT.csv:
--------------------------------------------------------------------------------
1 | FEMALE,MALE
2 | Sinjura,Sinjur
3 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/common/person/salutation_PT.csv:
--------------------------------------------------------------------------------
1 | FEMALE,MALE
2 | Senhora,Senhor
3 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/common/person/salutation_RU.csv:
--------------------------------------------------------------------------------
1 | FEMALE,MALE
2 | Госпожа,Господин
3 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/common/person/salutation_SR.csv:
--------------------------------------------------------------------------------
1 | FEMALE,MALE
2 | Госпођа,Господин
3 |
--------------------------------------------------------------------------------
/tests_ce/external_service_tests/datamimic_demo/a-simple-script/conf/base.properties:
--------------------------------------------------------------------------------
1 | customer_count=20
--------------------------------------------------------------------------------
/tests_ce/external_service_tests/test_sequence_table_generator/data/active.wgt.csv:
--------------------------------------------------------------------------------
1 | true|80
2 | false|20
--------------------------------------------------------------------------------
/tests_ce/integration_tests/weighted_data_source/data/active.wgt.csv:
--------------------------------------------------------------------------------
1 | true,80
2 | false,10
3 | ,10
4 |
--------------------------------------------------------------------------------
/tests_ce/external_service_tests/datamimic_demo/b-simple-database/data/active.wgt.csv:
--------------------------------------------------------------------------------
1 | true|80
2 | false|20
--------------------------------------------------------------------------------
/tests_ce/external_service_tests/datamimic_demo/demo-db-mapping/conf/base.properties:
--------------------------------------------------------------------------------
1 | global_count=100
2 |
--------------------------------------------------------------------------------
/tests_ce/external_service_tests/datamimic_demo/j-json/data/active.wgt.csv:
--------------------------------------------------------------------------------
1 | true|80
2 | false|10
3 | |10
4 |
--------------------------------------------------------------------------------
/tests_ce/external_service_tests/datamimic_demo/j-json/data/person.ent.csv:
--------------------------------------------------------------------------------
1 | name|age
2 | Alice|23
3 | Bob|34
--------------------------------------------------------------------------------
/tests_ce/functional_tests/test_functional_weighted_data_source/data/active.wgt.csv:
--------------------------------------------------------------------------------
1 | ,80
2 | ,10
3 | ,10
4 |
--------------------------------------------------------------------------------
/tests_ce/functional_tests/test_nested_part/data/ids.ent.csv:
--------------------------------------------------------------------------------
1 | id|
2 | 0001|
3 | 0002|
4 | 0003|
5 | 0004|
6 |
--------------------------------------------------------------------------------
/datamimic_ce/demos/demo-database/conf/environment.env.properties:
--------------------------------------------------------------------------------
1 | db.db.database=test
2 | db.db.dbms=sqlite
3 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/healthcare/medical/mri_field_strengths_DE.csv:
--------------------------------------------------------------------------------
1 | 1.5T,1
2 | 3.0T,1
3 | 7.0T,1
4 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/healthcare/medical/mri_field_strengths_US.csv:
--------------------------------------------------------------------------------
1 | 1.5T,1
2 | 3.0T,1
3 | 7.0T,1
4 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/insurance/policy/statuses_DE.csv:
--------------------------------------------------------------------------------
1 | active,5
2 | inactive,1
3 | cancelled,1
4 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/insurance/policy/statuses_US.csv:
--------------------------------------------------------------------------------
1 | active,5
2 | inactive,1
3 | cancelled,1
4 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/public_sector/administration/saturday_open_times_DE.csv:
--------------------------------------------------------------------------------
1 | 09:00,1
2 | 10:00,1
3 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/public_sector/administration/saturday_open_times_VN.csv:
--------------------------------------------------------------------------------
1 | 08:00,1
2 | 08:30,1
3 |
--------------------------------------------------------------------------------
/tests_ce/external_service_tests/datamimic_demo/demo-custom-components/conf/base.properties:
--------------------------------------------------------------------------------
1 | global_count=10
2 |
--------------------------------------------------------------------------------
/tests_ce/external_service_tests/datamimic_demo/n-mongodb/data/person.ent.csv:
--------------------------------------------------------------------------------
1 | name|age
2 | Alice|23
3 | Bob|34
4 |
--------------------------------------------------------------------------------
/tests_ce/external_service_tests/test_demo/demo-mongodb/data/friends.ent.csv:
--------------------------------------------------------------------------------
1 | name|age
2 | Jana|31
3 | Ryan|29
4 |
--------------------------------------------------------------------------------
/tests_ce/external_service_tests/test_demo/demo-mongodb/data/person.ent.csv:
--------------------------------------------------------------------------------
1 | name|age
2 | Alice|23
3 | Bob|34
4 |
--------------------------------------------------------------------------------
/tests_ce/external_service_tests/test_rdbms_functional/conf/base.properties:
--------------------------------------------------------------------------------
1 | customer_count=10
2 | user_count=10
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/healthcare/medical/xray_detector_types_DE.csv:
--------------------------------------------------------------------------------
1 | Flat Panel,1
2 | CCD,1
3 | CMOS,1
4 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/healthcare/medical/xray_detector_types_US.csv:
--------------------------------------------------------------------------------
1 | Flat Panel,1
2 | CCD,1
3 | CMOS,1
4 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/insurance/policy/premium_buckets_DE.csv:
--------------------------------------------------------------------------------
1 | 100-250,1
2 | 250-500,1
3 | 500-1000,1
4 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/insurance/policy/premium_buckets_US.csv:
--------------------------------------------------------------------------------
1 | 100-250,1
2 | 250-500,1
3 | 500-1000,1
4 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/public_sector/administration/close_times_DE.csv:
--------------------------------------------------------------------------------
1 | 16:30,1
2 | 17:00,1
3 | 18:00,1
4 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/public_sector/administration/close_times_VN.csv:
--------------------------------------------------------------------------------
1 | 16:30,1
2 | 17:00,1
3 | 17:30,1
4 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/public_sector/administration/open_times_DE.csv:
--------------------------------------------------------------------------------
1 | 08:00,1
2 | 08:30,1
3 | 09:00,1
4 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/public_sector/administration/open_times_VN.csv:
--------------------------------------------------------------------------------
1 | 07:30,1
2 | 08:00,1
3 | 08:30,1
4 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/public_sector/administration/saturday_open_times_US.csv:
--------------------------------------------------------------------------------
1 | 9:00 AM,1
2 | 10:00 AM,1
3 |
--------------------------------------------------------------------------------
/tests_ce/external_service_tests/datamimic_demo/a-simple-script/data/active.wgt.csv:
--------------------------------------------------------------------------------
1 | true|80
2 | false|10
3 | |10
4 |
--------------------------------------------------------------------------------
/tests_ce/external_service_tests/datamimic_demo/f-simple-python/conf/base.properties:
--------------------------------------------------------------------------------
1 | threads=2
2 | customer_count=1000
--------------------------------------------------------------------------------
/tests_ce/external_service_tests/datamimic_demo/n-mongodb/data/friends.ent.csv:
--------------------------------------------------------------------------------
1 | name|age
2 | Jana|31
3 | Ryan|29
4 |
--------------------------------------------------------------------------------
/tests_ce/external_service_tests/test_sequence_table_generator/conf/base.properties:
--------------------------------------------------------------------------------
1 | customer_count=10
2 | user_count=10
--------------------------------------------------------------------------------
/datamimic_ce/demos/demo-db-mapping/conf/environment.env.properties:
--------------------------------------------------------------------------------
1 | mapping.db.database=test
2 | mapping.db.dbms=sqlite
3 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/common/person/nobTitle_male_fr.csv:
--------------------------------------------------------------------------------
1 | Baron,10000
2 | Comte,1000
3 | Prince,50
4 | Roi,10
5 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/insurance/policy/premium_frequencies_DE.csv:
--------------------------------------------------------------------------------
1 | monthly,3
2 | quarterly,1
3 | yearly,1
4 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/insurance/policy/premium_frequencies_US.csv:
--------------------------------------------------------------------------------
1 | monthly,3
2 | quarterly,1
3 | yearly,1
4 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/insurance/policy/premium_frequencies_VN.csv:
--------------------------------------------------------------------------------
1 | hàng_tháng,3
2 | hàng_quý,1
3 | hàng_năm,1
4 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/public_sector/administration/close_times_US.csv:
--------------------------------------------------------------------------------
1 | 4:30 PM,1
2 | 5:00 PM,1
3 | 5:30 PM,1
4 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/public_sector/administration/open_times_US.csv:
--------------------------------------------------------------------------------
1 | 8:00 AM,1
2 | 8:30 AM,1
3 | 9:00 AM,1
4 |
--------------------------------------------------------------------------------
/tests_ce/external_service_tests/datamimic_demo/b-simple-database/conf/base.properties:
--------------------------------------------------------------------------------
1 | customer_count=10
2 | user_count=10
--------------------------------------------------------------------------------
/tests_ce/external_service_tests/datamimic_demo/c-simple-anonymization/data/active.wgt.csv:
--------------------------------------------------------------------------------
1 | true|80
2 | false|10
3 | |10
4 |
--------------------------------------------------------------------------------
/tests_ce/external_service_tests/datamimic_demo/o-datetime/data/customer.ent.csv:
--------------------------------------------------------------------------------
1 | name;n/a
2 | Alice;
3 | Bob;
4 | Jana;
5 |
--------------------------------------------------------------------------------
/tests_ce/functional_tests/test_sqlite/conf/environment.env.properties:
--------------------------------------------------------------------------------
1 | source.db.database=test
2 | source.db.dbms=sqlite
3 |
--------------------------------------------------------------------------------
/tests_ce/integration_tests/extensive_script/custom_script_components/conf/base.properties:
--------------------------------------------------------------------------------
1 | threads=2
2 | customer_count=1000
--------------------------------------------------------------------------------
/tests_ce/integration_tests/test_if/conf/environment.env.properties:
--------------------------------------------------------------------------------
1 | source.db.database=test
2 | source.db.dbms=sqlite
3 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/common/person/nobTitle_male_GB.csv:
--------------------------------------------------------------------------------
1 | Baron,10000
2 | Count,1000
3 | Prince,50
4 | King,10
5 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/common/person/nobTitle_male_US.csv:
--------------------------------------------------------------------------------
1 | Baron,10000
2 | Count,1000
3 | Prince,50
4 | King,10
5 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/common/person/nobTitle_male_de.csv:
--------------------------------------------------------------------------------
1 | Baron,10000
2 | Count,1000
3 | Prince,50
4 | King,10
5 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/common/person/nobTitle_male_es.csv:
--------------------------------------------------------------------------------
1 | Baron,10000
2 | Count,1000
3 | Prince,50
4 | King,10
5 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/common/person/nobTitle_male_it.csv:
--------------------------------------------------------------------------------
1 | Barone,10000
2 | Conte,1000
3 | Principe,50
4 | Re,10
5 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/common/state/state_MC.csv:
--------------------------------------------------------------------------------
1 | id,name,population,defaultLanguage
2 | "01","Monaco",36686,"fr"
3 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/ecommerce/product/rating_weights_DE.csv:
--------------------------------------------------------------------------------
1 | 1,0.05
2 | 2,0.10
3 | 3,0.20
4 | 4,0.30
5 | 5,0.35
6 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/ecommerce/product/rating_weights_ES.csv:
--------------------------------------------------------------------------------
1 | 1,0.03
2 | 2,0.08
3 | 3,0.23
4 | 4,0.35
5 | 5,0.31
6 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/ecommerce/product/rating_weights_FR.csv:
--------------------------------------------------------------------------------
1 | 1,0.04
2 | 2,0.09
3 | 3,0.22
4 | 4,0.33
5 | 5,0.32
6 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/ecommerce/product/rating_weights_GB.csv:
--------------------------------------------------------------------------------
1 | 1,0.03
2 | 2,0.08
3 | 3,0.21
4 | 4,0.34
5 | 5,0.34
6 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/ecommerce/product/rating_weights_US.csv:
--------------------------------------------------------------------------------
1 | 1,0.05
2 | 2,0.10
3 | 3,0.20
4 | 4,0.30
5 | 5,0.35
6 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/public_sector/administration/extended_close_times_DE.csv:
--------------------------------------------------------------------------------
1 | 18:00,1
2 | 18:30,1
3 | 19:00,1
4 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/public_sector/administration/extended_close_times_VN.csv:
--------------------------------------------------------------------------------
1 | 18:00,1
2 | 18:30,1
3 | 19:00,1
4 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/public_sector/administration/saturday_close_times_DE.csv:
--------------------------------------------------------------------------------
1 | 13:00,1
2 | 14:00,1
3 | 15:00,1
4 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/public_sector/administration/saturday_close_times_VN.csv:
--------------------------------------------------------------------------------
1 | 11:30,1
2 | 12:00,1
3 | 12:30,1
4 |
--------------------------------------------------------------------------------
/tests_ce/integration_tests/script_source/data/alice_pet.json:
--------------------------------------------------------------------------------
1 | {
2 | "name":"Alice",
3 | "age":23,
4 | "notes":""
5 | }
--------------------------------------------------------------------------------
/tests_ce/integration_tests/script_source/data/bob_pet.json:
--------------------------------------------------------------------------------
1 | {
2 | "name":"Bob",
3 | "age":34,
4 | "notes":null
5 | }
--------------------------------------------------------------------------------
/tests_ce/integration_tests/test_part/data/person.ent.csv:
--------------------------------------------------------------------------------
1 | name,pet_file
2 | Alice,alice_pet
3 | Bob,bob_pet
4 | Cathay,cathay_pet
--------------------------------------------------------------------------------
/datamimic_ce/demos/demo-database/1_prepare.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/finance/transaction/currency_mapping_VN.csv:
--------------------------------------------------------------------------------
1 | currency_code,weight
2 | VND,85
3 | USD,10
4 | EUR,5
5 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/healthcare/medical/xray_detector_types_VN.csv:
--------------------------------------------------------------------------------
1 | Tấm thu phẳng (Flat Panel),1
2 | CCD,1
3 | CMOS,1
4 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/insurance/policy/statuses_VN.csv:
--------------------------------------------------------------------------------
1 | hieu_luc,5
2 | het_hieu_luc,1
3 | huy_bo,1
4 | cho_hieu_luc,0.5
5 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/public_sector/administration/extended_close_times_US.csv:
--------------------------------------------------------------------------------
1 | 6:00 PM,1
2 | 6:30 PM,1
3 | 7:00 PM,1
4 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/public_sector/administration/jurisdictions_US.csv:
--------------------------------------------------------------------------------
1 | city,2
2 | county,1
3 | state,1
4 | federal,1
5 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/public_sector/administration/saturday_close_times_US.csv:
--------------------------------------------------------------------------------
1 | 1:00 PM,1
2 | 2:00 PM,1
3 | 3:00 PM,1
4 |
--------------------------------------------------------------------------------
/tests_ce/functional_tests/csv_separatorr/data/person.ent.csv:
--------------------------------------------------------------------------------
1 | name,pet_file
2 | Alice,alice_pet
3 | Bob,bob_pet
4 | Cathay,cathay_pet
--------------------------------------------------------------------------------
/tests_ce/functional_tests/csv_separatorr/data/person_2.ent.csv:
--------------------------------------------------------------------------------
1 | name|pet_file
2 | Alice|alice_pet
3 | Bob|bob_pet
4 | Cathay|cathay_pet
--------------------------------------------------------------------------------
/tests_ce/functional_tests/test_nested_part/data/person.ent.csv:
--------------------------------------------------------------------------------
1 | name,pet_file
2 | Alice,alice_pet
3 | Bob,bob_pet
4 | Cathay,cathay_pet
--------------------------------------------------------------------------------
/tests_ce/integration_tests/script_source/data/person.ent.csv:
--------------------------------------------------------------------------------
1 | name,pet_file
2 | Alice,alice_pet
3 | Bob,bob_pet
4 | Cathay,cathay_pet
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/common/person/nobTitle_female_GB.csv:
--------------------------------------------------------------------------------
1 | Baroness,10000
2 | Countess,1000
3 | Princess,50
4 | Queen,10
5 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/common/person/nobTitle_female_US.csv:
--------------------------------------------------------------------------------
1 | Baroness,10000
2 | Countess,1000
3 | Princess,50
4 | Queen,10
5 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/common/person/nobTitle_female_de.csv:
--------------------------------------------------------------------------------
1 | Baronin,10000
2 | Gräfin,1000
3 | Prinzessin,50
4 | Königin,10
5 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/common/person/nobTitle_female_es.csv:
--------------------------------------------------------------------------------
1 | Baronesa,10000
2 | Condesa,1000
3 | Princesa,50
4 | Reina,10
5 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/common/person/nobTitle_female_fr.csv:
--------------------------------------------------------------------------------
1 | Baronne,10000
2 | Comtess,1000
3 | Princesse,50
4 | Reine,10
5 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/ecommerce/order/coupon_prefixes_DE.csv:
--------------------------------------------------------------------------------
1 | RABATT,1
2 | SPAREN,1
3 | ANGEBOT,1
4 | VORTEIL,1
5 | AKTION,1
6 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/ecommerce/order/coupon_prefixes_US.csv:
--------------------------------------------------------------------------------
1 | SAVE,1
2 | DISCOUNT,1
3 | SPECIAL,1
4 | PROMO,1
5 | DEAL,1
6 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/healthcare/medical/genders_US.csv:
--------------------------------------------------------------------------------
1 | gender,weight
2 | Male,100
3 | Female,100
4 | Other,10
5 | Unknown,5
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/public_sector/administration/jurisdictions_DE.csv:
--------------------------------------------------------------------------------
1 | stadt,2
2 | landkreis,1
3 | bundesland,1
4 | bund,1
5 |
--------------------------------------------------------------------------------
/tests_ce/integration_tests/test_part/data/single_people.json:
--------------------------------------------------------------------------------
1 |
2 | {
3 | "name":"Alice",
4 | "age":23,
5 | "notes":""
6 | }
--------------------------------------------------------------------------------
/datamimic_ce/demos/demo-postprocess/1_prepare.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
--------------------------------------------------------------------------------
/datamimic_ce/demos/demo-postprocess/data/tx.ent.csv:
--------------------------------------------------------------------------------
1 | ID|CARD|PRODUCT
2 | 1|Y|Rollerblades
3 | 2|N|Eggplant
4 | 3|N|Cucumber
5 | 4|Y|Mobile Phone
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/common/organization/legalForm_AT.csv:
--------------------------------------------------------------------------------
1 | GmbH,256
2 | AG,240
3 | OG,44
4 | KG,11
5 | GesbR,8
6 | stG,9
7 | Gen,8
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/common/person/nobTitle_female_it.csv:
--------------------------------------------------------------------------------
1 | Baronessa,10000
2 | Contessa,1000
3 | Principessa,50
4 | Regina,10
5 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/ecommerce/order/coupon_prefixes_VN.csv:
--------------------------------------------------------------------------------
1 | GIAM,1
2 | KHUYENMAI,1
3 | UUDAI,1
4 | QUATANG,1
5 | FLASHSALE,1
6 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/finance/transaction/status_US.csv:
--------------------------------------------------------------------------------
1 | status,weight
2 | Completed,85
3 | Pending,10
4 | Failed,3
5 | Reversed,2
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/finance/transaction/status_VN.csv:
--------------------------------------------------------------------------------
1 | status,weight
2 | Hoàn tất,85
3 | Đang xử lý,10
4 | Thất bại,3
5 | Hủy,2
6 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/healthcare/medical/genders_VN.csv:
--------------------------------------------------------------------------------
1 | gender,weight
2 | Nam,100
3 | Nữ,100
4 | Khác,10
5 | Không xác định,5
6 |
--------------------------------------------------------------------------------
/tests_ce/external_service_tests/datamimic_demo/d-simple-postprocess/conf/base.properties:
--------------------------------------------------------------------------------
1 | threads=1
2 | customer_count=100
3 | user_count=1000
--------------------------------------------------------------------------------
/tests_ce/external_service_tests/datamimic_demo/e-simple-compositekey/conf/base.properties:
--------------------------------------------------------------------------------
1 | threads=1
2 | customer_count=100
3 | user_count=1000
--------------------------------------------------------------------------------
/tests_ce/functional_tests/test_sqlite/1_prepare.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
--------------------------------------------------------------------------------
/tests_ce/integration_tests/test_iterate/data/person.ent.csv:
--------------------------------------------------------------------------------
1 | name,pet_file,uid
2 | Alice,alice_pet,1
3 | Bob,bob_pet,2
4 | Cathay,cathay_pet,3
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/common/state/state_VA.csv:
--------------------------------------------------------------------------------
1 | "id","name","population","defaultLanguage"
2 | "01","Vatican City State",825,"it"
3 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/finance/transaction/channels_US.csv:
--------------------------------------------------------------------------------
1 | channel,weight
2 | Online,50
3 | ATM,20
4 | Branch,10
5 | Mobile,15
6 | Phone,5
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/healthcare/medical/genders_DE.csv:
--------------------------------------------------------------------------------
1 | gender,weight
2 | Männlich,100
3 | Weiblich,100
4 | Divers,10
5 | Unbekannt,5
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/public_sector/administration/weekdays_US.csv:
--------------------------------------------------------------------------------
1 | Monday,1
2 | Tuesday,1
3 | Wednesday,1
4 | Thursday,1
5 | Friday,1
6 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/public_sector/administration/weekdays_VN.csv:
--------------------------------------------------------------------------------
1 | Thứ Hai,1
2 | Thứ Ba,1
3 | Thứ Tư,1
4 | Thứ Năm,1
5 | Thứ Sáu,1
6 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/healthcare/medical/blood_types_US.csv:
--------------------------------------------------------------------------------
1 | O+, 38
2 | A+, 34
3 | B+, 9
4 | AB+, 3
5 | O-, 7
6 | A-, 6
7 | B-, 2
8 | AB-, 1
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/public_sector/administration/jurisdictions_VN.csv:
--------------------------------------------------------------------------------
1 | phường/xã,2
2 | quận/huyện,1
3 | tỉnh/thành phố,1
4 | trung ương,1
5 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/public_sector/administration/weekdays_DE.csv:
--------------------------------------------------------------------------------
1 | Montag,1
2 | Dienstag,1
3 | Mittwoch,1
4 | Donnerstag,1
5 | Freitag,1
6 |
--------------------------------------------------------------------------------
/tests_ce/external_service_tests/datamimic_demo/b-simple-database/conf/environment.env.properties:
--------------------------------------------------------------------------------
1 | source.db.database=test
2 | source.db.dbms=sqlite
3 |
--------------------------------------------------------------------------------
/tests_ce/external_service_tests/datamimic_demo/demo-db-mapping/conf/environment.env.properties:
--------------------------------------------------------------------------------
1 | mapping.db.database=test
2 | mapping.db.dbms=sqlite
3 |
--------------------------------------------------------------------------------
/tests_ce/external_service_tests/datamimic_demo/e-simple-compositekey/conf/environment.env.properties:
--------------------------------------------------------------------------------
1 | test.db.database=test
2 | test.db.dbms=sqlite
3 |
--------------------------------------------------------------------------------
/datamimic_ce/demos/demo-watermark/script/update_watermark.scr.sql:
--------------------------------------------------------------------------------
1 | UPDATE "watermark" SET value_column='{until_date}' WHERE key_column='last_processed_datetime'
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/common/organization/department_DE.csv:
--------------------------------------------------------------------------------
1 | Accounting
2 | Human Resources
3 | Vertrieb
4 | Marketing
5 | IT
6 | Logistik
7 | Recht
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/finance/transaction/channels_DE.csv:
--------------------------------------------------------------------------------
1 | channel,weight
2 | Online,50
3 | Geldautomat,20
4 | Filiale,10
5 | Mobil,15
6 | Telefon,5
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/finance/transaction/status_DE.csv:
--------------------------------------------------------------------------------
1 | status,weight
2 | Abgeschlossen,85
3 | Ausstehend,10
4 | Fehlgeschlagen,3
5 | Storniert,2
--------------------------------------------------------------------------------
/script/exporter/clean_exporter_result.sh:
--------------------------------------------------------------------------------
1 | find . -type d -name 'exporter_result*' -exec rm -rf {} +
2 | find . -type d -name 'temp_result*' -exec rm -rf {} +
--------------------------------------------------------------------------------
/tests_ce/functional_tests/test_include/data/control.ent.csv:
--------------------------------------------------------------------------------
1 | id|count|target|model
2 | 1|10|output1|include_generate.xml
3 | 2|20|output2|include_generate.xml
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/common/person/familyName_NZ.csv:
--------------------------------------------------------------------------------
1 | Smith
2 | Brown
3 | Wilson
4 | Barton
5 | Mc Donald
6 | Mac Donald
7 | Williams
8 | Parker
9 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/ecommerce/currencies_VN.csv:
--------------------------------------------------------------------------------
1 | code,name,weight,symbol
2 | VND,Đồng Việt Nam,1.0,₫
3 | USD,Đô la Mỹ,0.15,$
4 | EUR,Euro,0.05,€
5 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/healthcare/hospital/accreditations_childrens_US.csv:
--------------------------------------------------------------------------------
1 | Children's Hospital Association,1
2 | American Academy of Pediatrics,1
3 |
--------------------------------------------------------------------------------
/tests_ce/external_service_tests/datamimic_demo/a-simple-script/data/car.ent.csv:
--------------------------------------------------------------------------------
1 | id,brand
2 | 1234324231423,bmw
3 | 32423sdfsd32423423,vw
4 | 32423sd4322323423,ford
--------------------------------------------------------------------------------
/tests_ce/functional_tests/test_nested_part/data/notification.ent.csv:
--------------------------------------------------------------------------------
1 | Sms|Email|Phone|Mail
2 | No|Yes|No|Yes
3 | Yes|No|No|Yes
4 | No|No|No|No
5 | Yes|No|No|Yes
6 |
--------------------------------------------------------------------------------
/tests_ce/unit_tests/test_generator/people.wgt.ent.csv:
--------------------------------------------------------------------------------
1 | id,name,age,weight
2 | 1,Steve,20,15
3 | 2,Daniel,30,20
4 | 3,Tom,10,10
5 | 4,David,50,30
6 | 5,Ocean,37,23
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/common/net/tld_VN.csv:
--------------------------------------------------------------------------------
1 | tld,weight
2 | vn,1.0
3 | com.vn,0.6
4 | net.vn,0.4
5 | edu.vn,0.5
6 | org.vn,0.3
7 | com,0.3
8 | net,0.2
9 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/ecommerce/product_conditions_DE.csv:
--------------------------------------------------------------------------------
1 | condition,weight
2 | NEW,0.8
3 | USED,0.1
4 | REFURBISHED,0.05
5 | OPEN_BOX,0.03
6 | DAMAGED,0.02
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/ecommerce/product_conditions_US.csv:
--------------------------------------------------------------------------------
1 | condition,weight
2 | NEW,0.8
3 | USED,0.1
4 | REFURBISHED,0.05
5 | OPEN_BOX,0.03
6 | DAMAGED,0.02
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/healthcare/hospital/accreditations_community_DE.csv:
--------------------------------------------------------------------------------
1 | IQTIG-Qualitätssiegel,1
2 | DEGAM-Zertifizierung Hausärztliche Versorgung,1
3 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/healthcare/medical/blood_types_DE.csv:
--------------------------------------------------------------------------------
1 | blood_type,weight
2 | O+,38
3 | A+,34
4 | B+,9
5 | AB+,3
6 | O-,7
7 | A-,6
8 | B-,2
9 | AB-,1
--------------------------------------------------------------------------------
/tests_ce/external_service_tests/datamimic_demo/b-simple-database/1_prepare.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
--------------------------------------------------------------------------------
/tests_ce/external_service_tests/datamimic_demo/e-simple-compositekey/1_prepare.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
--------------------------------------------------------------------------------
/tests_ce/integration_tests/test_demographics/DE/2023Q4/profile_meta.dmgrp.csv:
--------------------------------------------------------------------------------
1 | dataset,version,source,notes,checksum
2 | DE,2023Q4,example,illustrative-only,abc123
3 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/common/organization/department_US.csv:
--------------------------------------------------------------------------------
1 | Accounting
2 | Human Resources
3 | Sales
4 | Marketing
5 | IT
6 | Manufacturing
7 | Logistics
8 | Legal
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/common/organization/legalForm_US.csv:
--------------------------------------------------------------------------------
1 | Inc.
2 | Corp.
3 | Group
4 | Corporation
5 | LLC
6 | GP
7 | LP
8 | LLP
9 | Ltd.
10 | Co.
11 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/ecommerce/currencies_GB.csv:
--------------------------------------------------------------------------------
1 | code,weight
2 | GBP,0.88
3 | EUR,0.045
4 | USD,0.045
5 | AUD,0.01
6 | CAD,0.008
7 | JPY,0.007
8 | SEK,0.005
9 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/finance/transaction/channels_VN.csv:
--------------------------------------------------------------------------------
1 | channel,weight
2 | Trực tuyến,45
3 | ATM,20
4 | Tại quầy,15
5 | Ứng dụng di động,15
6 | Điện thoại,5
7 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/healthcare/hospital/accreditations_childrens_VN.csv:
--------------------------------------------------------------------------------
1 | Chứng nhận Bệnh viện Nhi Trung ương,1
2 | Chứng nhận Hiệp hội Nhi khoa Việt Nam,1
3 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/healthcare/hospital/accreditations_community_VN.csv:
--------------------------------------------------------------------------------
1 | Chứng nhận Sở Y tế tỉnh,1
2 | Chương trình quản lý chất lượng bệnh viện tuyến tỉnh,1
3 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/healthcare/medical/mri_field_strengths_VN.csv:
--------------------------------------------------------------------------------
1 | 1.5T (Lâm sàng chuẩn),1
2 | 3.0T (Độ phân giải cao),1
3 | 7.0T (Nghiên cứu chuyên sâu),1
4 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/healthcare/medical/usage_purposes_mri_DE.csv:
--------------------------------------------------------------------------------
1 | Brain scan,1
2 | Spinal examination,1
3 | Musculoskeletal imaging,1
4 | Abdominal scan,1
5 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/healthcare/medical/usage_purposes_mri_US.csv:
--------------------------------------------------------------------------------
1 | Brain scan,1
2 | Spinal examination,1
3 | Musculoskeletal imaging,1
4 | Abdominal scan,1
5 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/healthcare/medical/usage_purposes_ventilator_DE.csv:
--------------------------------------------------------------------------------
1 | Respiratory support,1
2 | Post-surgical ventilation,1
3 | Critical care support,1
4 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/healthcare/medical/usage_purposes_ventilator_US.csv:
--------------------------------------------------------------------------------
1 | Respiratory support,1
2 | Post-surgical ventilation,1
3 | Critical care support,1
4 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/public_sector/police/shifts_VN.csv:
--------------------------------------------------------------------------------
1 | Ca sáng (07:00-15:00),3
2 | Ca chiều (15:00-23:00),2
3 | Ca đêm (23:00-07:00),2
4 | Ca luân phiên,1
5 |
--------------------------------------------------------------------------------
/tests_ce/functional_tests/csv_separatorr/data/people.wgt.ent.csv:
--------------------------------------------------------------------------------
1 | id,name,age,weight
2 | 1,Steve,20,15
3 | 2,Daniel,30,20
4 | 3,Tom,10,10
5 | 4,David,50,30
6 | 5,Ocean,37,23
--------------------------------------------------------------------------------
/tests_ce/functional_tests/csv_separatorr/data/people_2.wgt.ent.csv:
--------------------------------------------------------------------------------
1 | id|name|age|weight
2 | 1|Steve|20|15
3 | 2|Daniel|30|20
4 | 3|Tom|10|10
5 | 4|David|50|30
6 | 5|Ocean|37|23
--------------------------------------------------------------------------------
/datamimic_ce/demos/demo-masking/conf/environment.env.properties:
--------------------------------------------------------------------------------
1 | source.db.database=source
2 | source.db.dbms=sqlite
3 |
4 | target.db.database=target
5 | target.db.dbms=sqlite
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/common/person/givenName_female_GB.csv:
--------------------------------------------------------------------------------
1 | Olivia
2 | Grace
3 | Jessica
4 | Ruby
5 | Emily
6 | Sophie
7 | Chloe
8 | Lucy
9 | Lily
10 | Ellie
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/ecommerce/product/rating_weights_VN.csv:
--------------------------------------------------------------------------------
1 | value,weight
2 | 5.0,0.35
3 | 4.5,0.25
4 | 4.0,0.2
5 | 3.5,0.1
6 | 3.0,0.07
7 | 2.5,0.02
8 | 2.0,0.01
9 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/finance/transaction/currency_mapping_US.csv:
--------------------------------------------------------------------------------
1 | currency_code,weight
2 | USD,80
3 | CAD,5
4 | MXN,5
5 | EUR,3
6 | GBP,3
7 | JPY,2
8 | AUD,1
9 | CHF,1
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/public_sector/police/shifts_US.csv:
--------------------------------------------------------------------------------
1 | Day Shift (7AM-3PM),3
2 | Evening Shift (3PM-11PM),2
3 | Night Shift (11PM-7AM),2
4 | Rotating Shift,1
5 |
--------------------------------------------------------------------------------
/tests_ce/external_service_tests/datamimic_demo/d-simple-postprocess/data/tx.ent.csv:
--------------------------------------------------------------------------------
1 | ID|CARD|PRODUCT
2 | 1|Y|Rollerblades
3 | 2|N|Eggplant
4 | 3|N|Cucumber
5 | 4|Y|Mobile Phone
--------------------------------------------------------------------------------
/tests_ce/functional_tests/test_xml_functional/test_import_xml.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/tests_ce/integration_tests/test_generate/data/person.ent.csv:
--------------------------------------------------------------------------------
1 | name,pet_file
2 | Alice,alice_pet
3 | Bob,bob_pet
4 | Cathay,cathay_pet
5 | Daniel,daniel_pet
6 | Emily,emily_pet
7 |
--------------------------------------------------------------------------------
/tests_ce/integration_tests/weighted_data_source/data/people.wgt.ent.csv:
--------------------------------------------------------------------------------
1 | id,name,age,weight
2 | 1,Steve,20,15
3 | 2,Daniel,30,20
4 | 3,Tom,10,10
5 | 4,David,50,30
6 | 5,Ocean,37,23
--------------------------------------------------------------------------------
/tests_ce/integration_tests/weighted_data_source/data/people2.wgt.ent.csv:
--------------------------------------------------------------------------------
1 | id,name,age,count
2 | 1,Steve,20,15
3 | 2,Daniel,30,20
4 | 3,Tom,10,10
5 | 4,David,50,30
6 | 5,Ocean,37,23
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/common/net/tld_DE.csv:
--------------------------------------------------------------------------------
1 | tld,weight
2 | de,1.0
3 | com,0.6
4 | net,0.4
5 | org,0.4
6 | eu,0.5
7 | info,0.3
8 | berlin,0.2
9 | bayern,0.2
10 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/common/net/tld_US.csv:
--------------------------------------------------------------------------------
1 | com,20
2 | org,5
3 | de,8
4 | eu,1
5 | it,2
6 | fr,3
7 | us,6
8 | edu,1
9 | net,10
10 | at,3
11 | ch,3
12 | be,1
13 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/common/person/familyName_MX.csv:
--------------------------------------------------------------------------------
1 | Hernández
2 | García
3 | Martínez
4 | López
5 | González
6 | Rodríguez
7 | Pérez
8 | Sánchez
9 | Ramírez
10 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/common/person/givenName_female_AU.csv:
--------------------------------------------------------------------------------
1 | Olivia
2 | Charlotte
3 | Emily
4 | Chloe
5 | Ella
6 | Jessica
7 | Isabella
8 | Sophie
9 | Mia
10 | Emma
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/common/person/givenName_male_GB.csv:
--------------------------------------------------------------------------------
1 | Jack
2 | Thomas
3 | Joshua
4 | Oliver
5 | Harry
6 | James
7 | William
8 | Samuel
9 | Daniel
10 | Charlie
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/common/person/givenName_male_NZ.csv:
--------------------------------------------------------------------------------
1 | Joshua
2 | Jack
3 | Benjamin
4 | Samuel
5 | Daniel
6 | Jacob
7 | Ethan
8 | James
9 | Thomas
10 | Matthew
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/healthcare/hospital/accreditations_community_US.csv:
--------------------------------------------------------------------------------
1 | National Committee for Quality Assurance (NCQA),1
2 | American College of Radiology (ACR),1
3 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/healthcare/hospital/accreditations_rehabilitation_VN.csv:
--------------------------------------------------------------------------------
1 | Chứng nhận Bộ Y tế cho cơ sở phục hồi chức năng,1
2 | ISO 9001 Cơ sở phục hồi chức năng,1
3 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/healthcare/hospital/accreditations_veterans_DE.csv:
--------------------------------------------------------------------------------
1 | Bundeswehrkrankenhaus-Zertifikat,1
2 | Bundesministerium für Verteidigung Qualitätsprüfung,1
3 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/healthcare/medical/ultrasound_probe_types_DE.csv:
--------------------------------------------------------------------------------
1 | Linear, Convex, Phased Array,1
2 | Linear, Convex, Transvaginal,1
3 | Linear, Convex, Cardiac,1
4 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/healthcare/medical/ultrasound_probe_types_US.csv:
--------------------------------------------------------------------------------
1 | Linear, Convex, Phased Array,1
2 | Linear, Convex, Transvaginal,1
3 | Linear, Convex, Cardiac,1
4 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/healthcare/medical/usage_purposes_mri_VN.csv:
--------------------------------------------------------------------------------
1 | Chụp não,1
2 | Kiểm tra cột sống,1
3 | Chụp cơ xương khớp,1
4 | Chụp ổ bụng,1
5 | Đánh giá mạch máu,1
6 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/healthcare/medical/usage_purposes_xray_DE.csv:
--------------------------------------------------------------------------------
1 | Chest radiograph,1
2 | Bone fracture assessment,1
3 | Foreign body detection,1
4 | Dental imaging,1
5 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/healthcare/medical/usage_purposes_xray_US.csv:
--------------------------------------------------------------------------------
1 | Chest radiograph,1
2 | Bone fracture assessment,1
3 | Foreign body detection,1
4 | Dental imaging,1
5 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/insurance/policy/premium_buckets_VN.csv:
--------------------------------------------------------------------------------
1 | "500 nghìn - 1 triệu VND",1
2 | "1 - 3 triệu VND",1
3 | "3 - 6 triệu VND",1
4 | "Trên 6 triệu VND",0.5
5 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/common/city/city_VA.csv:
--------------------------------------------------------------------------------
1 | "state.country.isoCode";"state.id";"name";"postalCode";"areaCode";"language"
2 | "VA";"01";"Città del Vaticano";"00120";"06698";"it"
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/common/person/familyName_AR.csv:
--------------------------------------------------------------------------------
1 | Fernández
2 | Rodríguez
3 | González
4 | García
5 | López
6 | Martínez
7 | Pérez
8 | Álvarez
9 | Gómez
10 | Sánchez
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/common/person/givenName_female_NZ.csv:
--------------------------------------------------------------------------------
1 | Emma
2 | Sophie
3 | Ella
4 | Emily
5 | Jessica
6 | Hannah
7 | Olivia
8 | Grace
9 | Charlotte
10 | Georgia
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/common/person/title_CN.csv:
--------------------------------------------------------------------------------
1 | 学士,0.20
2 | 硕士,0.10
3 | 博士,0.05
4 | 助理教授 ,0.08
5 | 副教授,0.07
6 | 教授,0.10
7 | 特聘教授,0.05
8 | 名誉教授,0.03
9 | 博士后,0.07
10 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/common/state/state_GB.csv:
--------------------------------------------------------------------------------
1 | id,name,population
2 | ENG,England,56286961
3 | NIR,Northern Ireland,1893700
4 | SCT,Scotland,5463300
5 | WLS,Wales,3153000
6 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/groups/age_band/age_band_DE.csv:
--------------------------------------------------------------------------------
1 | group_id,min_age,max_age,weight
2 | age_0_17,0,17,0.507668
3 | age_18_44,18,44,0.199407
4 | age_45_plus,45,200,0.292925
5 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/groups/age_band/age_band_US.csv:
--------------------------------------------------------------------------------
1 | group_id,min_age,max_age,weight
2 | age_0_17,0,17,0.507668
3 | age_18_44,18,44,0.199407
4 | age_45_plus,45,200,0.292925
5 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/groups/age_band/age_band_VN.csv:
--------------------------------------------------------------------------------
1 | group_id,min_age,max_age,weight
2 | age_0_17,0,17,0.507668
3 | age_18_44,18,44,0.199407
4 | age_45_plus,45,200,0.292925
5 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/healthcare/hospital/accreditations_childrens_DE.csv:
--------------------------------------------------------------------------------
1 | Deutsche Gesellschaft für Kinder- und Jugendmedizin,1
2 | Qualitätssiegel Kindermedizin (BVKJ),1
3 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/healthcare/medical/usage_purposes_ultrasound_DE.csv:
--------------------------------------------------------------------------------
1 | Pregnancy examination,1
2 | Abdominal assessment,1
3 | Cardiac evaluation,1
4 | Vascular study,1
5 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/healthcare/medical/usage_purposes_ultrasound_US.csv:
--------------------------------------------------------------------------------
1 | Pregnancy examination,1
2 | Abdominal assessment,1
3 | Cardiac evaluation,1
4 | Vascular study,1
5 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/healthcare/medical/usage_purposes_ventilator_VN.csv:
--------------------------------------------------------------------------------
1 | Hỗ trợ hô hấp,1
2 | Thông khí sau phẫu thuật,1
3 | Chăm sóc tại ICU,1
4 | Điều trị suy hô hấp cấp,1
5 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/public_sector/police/shifts_DE.csv:
--------------------------------------------------------------------------------
1 | Frühschicht (07:00-15:00),3
2 | Spätschicht (15:00-23:00),2
3 | Nachtschicht (23:00-07:00),2
4 | Wechselschicht,1
5 |
--------------------------------------------------------------------------------
/datamimic_ce/mcp/__init__.py:
--------------------------------------------------------------------------------
1 | """Public entrypoints for the MCP integration."""
2 |
3 | from .server import create_server, mount_mcp
4 |
5 | __all__ = ["create_server", "mount_mcp"]
6 |
--------------------------------------------------------------------------------
/tests_ce/external_service_tests/datamimic_demo/a-simple-script/1_prepare.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
--------------------------------------------------------------------------------
/tests_ce/external_service_tests/datamimic_demo/k-watermark/script/update_watermark.scr.sql:
--------------------------------------------------------------------------------
1 | UPDATE "watermark" SET value_column='{until_date}' WHERE key_column='last_processed_datetime'
2 |
--------------------------------------------------------------------------------
/tests_ce/integration_tests/script_source/data/cathay_pet.json:
--------------------------------------------------------------------------------
1 | {
2 | "name":"Charly",
3 | "age":45,
4 | "notes":null,
5 | "car":{
6 | "maker":"Audi"
7 | }
8 | }
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/demographics/demographic_components_DE.csv:
--------------------------------------------------------------------------------
1 | component_id,dmgrp_profile_id,constraints_json
2 | urban_adult,de_urban_adult,"{""age"":{""min"":28,""max"":50}}"
3 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/demographics/demographic_components_VN.csv:
--------------------------------------------------------------------------------
1 | component_id,dmgrp_profile_id,constraints_json
2 | urban_adult,vn_urban_adult,"{""age"":{""min"":22,""max"":38}}"
3 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/ecommerce/product_availability_DE.csv:
--------------------------------------------------------------------------------
1 | availability,weight
2 | IN_STOCK,0.7
3 | OUT_OF_STOCK,0.15
4 | BACK_ORDERED,0.1
5 | DISCONTINUED,0.03
6 | PRE_ORDER,0.02
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/ecommerce/product_availability_US.csv:
--------------------------------------------------------------------------------
1 | availability,weight
2 | IN_STOCK,0.7
3 | OUT_OF_STOCK,0.15
4 | BACK_ORDERED,0.1
5 | DISCONTINUED,0.03
6 | PRE_ORDER,0.02
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/ecommerce/product_conditions_GB.csv:
--------------------------------------------------------------------------------
1 | condition,weight
2 | NEW,0.8
3 | LIKE_NEW,0.06
4 | REFURBISHED,0.06
5 | PRELOVED,0.04
6 | OPEN_BOX,0.03
7 | GRADE_B,0.01
8 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/finance/account_types_DE.csv:
--------------------------------------------------------------------------------
1 | type,weight
2 | GIROKONTO,0.4
3 | SPARKONTO,0.3
4 | FESTGELDKONTO,0.1
5 | TAGESGELDKONTO,0.1
6 | BAUSPARKONTO,0.05
7 | DEPOT,0.05
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/healthcare/hospital/accreditations_rehabilitation_DE.csv:
--------------------------------------------------------------------------------
1 | Deutsche Rentenversicherung Zertifizierte Reha,1
2 | DGNR/DGUV Zertifizierung für Reha-Kliniken,1
3 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/healthcare/hospital/accreditations_veterans_US.csv:
--------------------------------------------------------------------------------
1 | Department of Veterans Affairs,1
2 | Commission on Accreditation of Rehabilitation Facilities (CARF),1
3 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/healthcare/medical/procedure_name_patterns_US.csv:
--------------------------------------------------------------------------------
1 | {action} {location} {structure},1
2 | {action} of {structure},0.8
3 | {location} {structure} {action},0.6
4 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/healthcare/medical/procedure_name_patterns_VN.csv:
--------------------------------------------------------------------------------
1 | {action} {structure} {location},1
2 | {action} {structure},0.8
3 | {location} {structure} {action},0.6
4 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/healthcare/medical/usage_purposes_ultrasound_VN.csv:
--------------------------------------------------------------------------------
1 | Siêu âm thai,1
2 | Siêu âm ổ bụng,1
3 | Siêu âm tim,1
4 | Siêu âm mạch máu,1
5 | Siêu âm tuyến giáp,1
6 |
--------------------------------------------------------------------------------
/tests_ce/external_service_tests/datamimic_demo/d-simple-postprocess/1_prepare.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
--------------------------------------------------------------------------------
/tests_ce/functional_tests/test_functional_weighted_data_source/data/people.wgt.ent.csv:
--------------------------------------------------------------------------------
1 | id,name,age,weight
2 | 1,Steve,20,15
3 | 2,Daniel,30,20
4 | 3,Tom,10,10
5 | 4,David,50,30
6 | 5,Ocean,37,23
--------------------------------------------------------------------------------
/tests_ce/functional_tests/test_functional_weighted_data_source/data/people2.wgt.ent.csv:
--------------------------------------------------------------------------------
1 | id,name,age,count
2 | 1,Steve,20,15
3 | 2,Daniel,30,20
4 | 3,Tom,10,10
5 | 4,David,50,30
6 | 5,Ocean,37,23
--------------------------------------------------------------------------------
/tests_ce/functional_tests/test_include/test_simple_include.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/ecommerce/currencies_FR.csv:
--------------------------------------------------------------------------------
1 | code,weight
2 | EUR,0.94
3 | USD,0.015
4 | GBP,0.015
5 | CHF,0.01
6 | CAD,0.008
7 | MAD,0.006
8 | JPY,0.004
9 | DKK,0.002
10 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/ecommerce/payment_methods_DE.csv:
--------------------------------------------------------------------------------
1 | method,weight
2 | SEPA-Lastschrift,0.35
3 | Rechnungskauf,0.15
4 | PayPal,0.25
5 | Kreditkarte,0.2
6 | Sofortüberweisung,0.05
7 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/finance/account_types_US.csv:
--------------------------------------------------------------------------------
1 | type,weight
2 | CHECKING,0.4
3 | SAVINGS,0.3
4 | MONEY_MARKET,0.1
5 | CERTIFICATE_OF_DEPOSIT,0.05
6 | RETIREMENT,0.1
7 | INVESTMENT,0.05
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/finance/transaction/currency_mapping_DE.csv:
--------------------------------------------------------------------------------
1 | currency_code,weight
2 | EUR,80
3 | USD,5
4 | GBP,5
5 | CHF,3
6 | SEK,2
7 | NOK,2
8 | JPY,1
9 | SGD,1
10 | AUD,1
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/healthcare/hospital/accreditations_psychiatric_VN.csv:
--------------------------------------------------------------------------------
1 | Chứng nhận Hội Tâm thần học Việt Nam,1
2 | Chứng nhận quản lý chất lượng bệnh viện tâm thần của Bộ Y tế,1
3 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/healthcare/hospital/accreditations_veterans_VN.csv:
--------------------------------------------------------------------------------
1 | Chứng nhận bệnh viện cựu chiến binh của Bộ Quốc phòng,1
2 | Chương trình kiểm định chất lượng y tế quân đội,1
3 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/healthcare/hospital/services_specialty_US.csv:
--------------------------------------------------------------------------------
1 | Specialized Diagnostics,1
2 | Specialized Treatments,1
3 | Specialized Surgery,1
4 | Specialized Rehabilitation,1
5 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/healthcare/hospital/services_specialty_VN.csv:
--------------------------------------------------------------------------------
1 | Chẩn đoán chuyên sâu,1
2 | Điều trị chuyên khoa,1
3 | Phẫu thuật chuyên sâu,1
4 | Phục hồi chức năng chuyên khoa,1
5 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/healthcare/medical/usage_purposes_xray_VN.csv:
--------------------------------------------------------------------------------
1 | Chụp X-quang phổi,1
2 | Đánh giá gãy xương,1
3 | Phát hiện dị vật,1
4 | Chụp răng hàm mặt,1
5 | Đánh giá xoang,1
6 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/healthcare/medical/ventilator_modes_DE.csv:
--------------------------------------------------------------------------------
1 | Volume Control, Pressure Control, SIMV,1
2 | CPAP, BiPAP, APRV,1
3 | Volume Control, Pressure Control, CPAP, BiPAP,1
4 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/healthcare/medical/ventilator_modes_US.csv:
--------------------------------------------------------------------------------
1 | Volume Control, Pressure Control, SIMV,1
2 | CPAP, BiPAP, APRV,1
3 | Volume Control, Pressure Control, CPAP, BiPAP,1
4 |
--------------------------------------------------------------------------------
/examples/address/req2_locale.json:
--------------------------------------------------------------------------------
1 | {
2 | "clock": "2025-01-01T00:00:00Z",
3 | "count": 1,
4 | "domain": "address",
5 | "locale": "de_DE",
6 | "seed": "demo",
7 | "version": "v1"
8 | }
9 |
--------------------------------------------------------------------------------
/examples/address/req6_multi.json:
--------------------------------------------------------------------------------
1 | {
2 | "clock": "2025-01-01T00:00:00Z",
3 | "count": 10,
4 | "domain": "address",
5 | "locale": "en_US",
6 | "seed": "bulk",
7 | "version": "v1"
8 | }
9 |
--------------------------------------------------------------------------------
/examples/doctor/req1_minimal.json:
--------------------------------------------------------------------------------
1 | {
2 | "clock": "2025-01-01T00:00:00Z",
3 | "count": 1,
4 | "domain": "doctor",
5 | "locale": "en_US",
6 | "seed": "demo",
7 | "version": "v1"
8 | }
9 |
--------------------------------------------------------------------------------
/examples/doctor/req2_locale.json:
--------------------------------------------------------------------------------
1 | {
2 | "clock": "2025-01-01T00:00:00Z",
3 | "count": 1,
4 | "domain": "doctor",
5 | "locale": "de_DE",
6 | "seed": "demo",
7 | "version": "v1"
8 | }
9 |
--------------------------------------------------------------------------------
/examples/doctor/req6_multi.json:
--------------------------------------------------------------------------------
1 | {
2 | "clock": "2025-01-01T00:00:00Z",
3 | "count": 10,
4 | "domain": "doctor",
5 | "locale": "en_US",
6 | "seed": "bulk",
7 | "version": "v1"
8 | }
9 |
--------------------------------------------------------------------------------
/examples/patient/req2_locale.json:
--------------------------------------------------------------------------------
1 | {
2 | "clock": "2025-01-01T00:00:00Z",
3 | "count": 1,
4 | "domain": "patient",
5 | "locale": "de_DE",
6 | "seed": "demo",
7 | "version": "v1"
8 | }
9 |
--------------------------------------------------------------------------------
/examples/patient/req6_multi.json:
--------------------------------------------------------------------------------
1 | {
2 | "clock": "2025-01-01T00:00:00Z",
3 | "count": 10,
4 | "domain": "patient",
5 | "locale": "en_US",
6 | "seed": "bulk",
7 | "version": "v1"
8 | }
9 |
--------------------------------------------------------------------------------
/examples/person/req1_minimal.json:
--------------------------------------------------------------------------------
1 | {
2 | "clock": "2025-01-01T00:00:00Z",
3 | "count": 1,
4 | "domain": "person",
5 | "locale": "en_US",
6 | "seed": "demo",
7 | "version": "v1"
8 | }
9 |
--------------------------------------------------------------------------------
/examples/person/req2_locale.json:
--------------------------------------------------------------------------------
1 | {
2 | "clock": "2025-01-01T00:00:00Z",
3 | "count": 1,
4 | "domain": "person",
5 | "locale": "de_DE",
6 | "seed": "demo",
7 | "version": "v1"
8 | }
9 |
--------------------------------------------------------------------------------
/examples/person/req6_multi.json:
--------------------------------------------------------------------------------
1 | {
2 | "clock": "2025-01-01T00:00:00Z",
3 | "count": 10,
4 | "domain": "person",
5 | "locale": "en_US",
6 | "seed": "bulk",
7 | "version": "v1"
8 | }
9 |
--------------------------------------------------------------------------------
/tests_ce/external_service_tests/datamimic_demo/gewerbeverordnung-xml/data/xgewerbeordnung_column_data.ent.csv:
--------------------------------------------------------------------------------
1 | Id|Use|ShortName|LongName
2 | Code|required|Code|Code
3 | Text|required|Text|Beschreibung
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/ecommerce/product_availability_VN.csv:
--------------------------------------------------------------------------------
1 | availability,weight
2 | CÒN HÀNG,0.65
3 | HẾT HÀNG,0.12
4 | ĐẶT HÀNG TRƯỚC,0.08
5 | ĐANG VẬN CHUYỂN,0.1
6 | TẠM NGỪNG BÁN,0.05
7 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/healthcare/hospital/accreditations_psychiatric_US.csv:
--------------------------------------------------------------------------------
1 | Commission on Accreditation of Rehabilitation Facilities (CARF),1
2 | American Psychological Association (APA),1
3 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/healthcare/hospital/services_specialty_DE.csv:
--------------------------------------------------------------------------------
1 | Spezialisierte Diagnostik,1
2 | Spezialisierte Therapien,1
3 | Spezielle Chirurgie,1
4 | Spezialisierte Rehabilitation,1
5 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/healthcare/medical/procedure_name_patterns_DE.csv:
--------------------------------------------------------------------------------
1 | {action} am {location} {structure},1
2 | {action} der/des {structure},0.8
3 | {location} {structure} {action},0.6
4 |
--------------------------------------------------------------------------------
/examples/address/req1_minimal.json:
--------------------------------------------------------------------------------
1 | {
2 | "clock": "2025-01-01T00:00:00Z",
3 | "count": 1,
4 | "domain": "address",
5 | "locale": "en_US",
6 | "seed": "demo",
7 | "version": "v1"
8 | }
9 |
--------------------------------------------------------------------------------
/examples/address/req4_zero_count.json:
--------------------------------------------------------------------------------
1 | {
2 | "clock": "2025-01-01T00:00:00Z",
3 | "count": 0,
4 | "domain": "address",
5 | "locale": "en_US",
6 | "seed": "zero",
7 | "version": "v1"
8 | }
9 |
--------------------------------------------------------------------------------
/examples/doctor/req4_zero_count.json:
--------------------------------------------------------------------------------
1 | {
2 | "clock": "2025-01-01T00:00:00Z",
3 | "count": 0,
4 | "domain": "doctor",
5 | "locale": "en_US",
6 | "seed": "zero",
7 | "version": "v1"
8 | }
9 |
--------------------------------------------------------------------------------
/examples/patient/req1_minimal.json:
--------------------------------------------------------------------------------
1 | {
2 | "clock": "2025-01-01T00:00:00Z",
3 | "count": 1,
4 | "domain": "patient",
5 | "locale": "en_US",
6 | "seed": "demo",
7 | "version": "v1"
8 | }
9 |
--------------------------------------------------------------------------------
/examples/patient/req4_zero_count.json:
--------------------------------------------------------------------------------
1 | {
2 | "clock": "2025-01-01T00:00:00Z",
3 | "count": 0,
4 | "domain": "patient",
5 | "locale": "en_US",
6 | "seed": "zero",
7 | "version": "v1"
8 | }
9 |
--------------------------------------------------------------------------------
/examples/person/req4_zero_count.json:
--------------------------------------------------------------------------------
1 | {
2 | "clock": "2025-01-01T00:00:00Z",
3 | "count": 0,
4 | "domain": "person",
5 | "locale": "en_US",
6 | "seed": "zero",
7 | "version": "v1"
8 | }
9 |
--------------------------------------------------------------------------------
/tests_ce/integration_tests/test_source_script/data/people.ent.csv:
--------------------------------------------------------------------------------
1 | id,name,age,weight
2 | 1,Steve,{78+11},15
3 | 2,Daniel,{78+22},20
4 | 3,Tom,{78+33},10
5 | 4,David,{78+44},30
6 | 5,Ocean,{78+55},23
7 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/healthcare/hospital/accreditations_long-term_care_DE.csv:
--------------------------------------------------------------------------------
1 | MDK-Prüfsiegel Pflege,1
2 | TÜV Rheinland Qualitätszertifikat Pflegeeinrichtungen,1
3 | DIN EN ISO 9001 Pflege,1
4 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/healthcare/hospital/accreditations_psychiatric_DE.csv:
--------------------------------------------------------------------------------
1 | Deutsche Gesellschaft für Psychiatrie und Psychotherapie (DGPPN),1
2 | Zertifikat Psychiatrische Versorgung TÜV,1
3 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/healthcare/medical/usage_purposes_DE.csv:
--------------------------------------------------------------------------------
1 | Routine patient care,1
2 | Emergency procedure,1
3 | Scheduled examination,1
4 | Training session,1
5 | Diagnostic procedure,1
6 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/healthcare/medical/usage_purposes_US.csv:
--------------------------------------------------------------------------------
1 | Routine patient care,1
2 | Emergency procedure,1
3 | Scheduled examination,1
4 | Training session,1
5 | Diagnostic procedure,1
6 |
--------------------------------------------------------------------------------
/tests_ce/functional_tests/test_source_script/data/people.wgt.ent.csv:
--------------------------------------------------------------------------------
1 | id,name,age,weight
2 | 1,Steve,{48+11},15
3 | 2,Daniel,{48+22},20
4 | 3,Tom,{48+33},10
5 | 4,David,{48+44},30
6 | 5,Ocean,{48+55},23
7 |
--------------------------------------------------------------------------------
/tests_ce/functional_tests/test_xml_functional/test_export_xml.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
--------------------------------------------------------------------------------
/datamimic_ce/demos/demo-masking/conf/base.properties:
--------------------------------------------------------------------------------
1 | # count for customer|user creation of datamimic example
2 | customer_count=10
3 | user_count=10
4 |
5 | # count for anon-person examples
6 | anon_count=1
7 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/common/person/title_FR.csv:
--------------------------------------------------------------------------------
1 | Licence,0.2
2 | Master,0.15
3 | PhD,0.1
4 | Maître de Conférences,0.08
5 | Chargé de Recherche,0.07
6 | Professeur,0.05
7 | Professeur émérite,0.03
8 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/ecommerce/currencies_ES.csv:
--------------------------------------------------------------------------------
1 | code,weight
2 | EUR,0.93
3 | USD,0.015
4 | GBP,0.008
5 | CHF,0.005
6 | MXN,0.012
7 | BRL,0.01
8 | COP,0.005
9 | ARS,0.005
10 | CLP,0.01
11 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/ecommerce/product_conditions_FR.csv:
--------------------------------------------------------------------------------
1 | condition,weight
2 | NEUF,0.78
3 | RECONDITIONNE,0.08
4 | COMME_NEUF,0.05
5 | TRES_BON_ETAT,0.04
6 | OCCASION,0.03
7 | BOITE_OUVERTE,0.02
8 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/healthcare/medical/ultrasound_imaging_modes_DE.csv:
--------------------------------------------------------------------------------
1 | B-Mode, M-Mode, Color Doppler,1
2 | B-Mode, Color Doppler, Power Doppler,1
3 | B-Mode, M-Mode, Color Doppler, Power Doppler,1
4 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/healthcare/medical/ultrasound_imaging_modes_US.csv:
--------------------------------------------------------------------------------
1 | B-Mode, M-Mode, Color Doppler,1
2 | B-Mode, Color Doppler, Power Doppler,1
3 | B-Mode, M-Mode, Color Doppler, Power Doppler,1
4 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/healthcare/medical/ventilator_modes_VN.csv:
--------------------------------------------------------------------------------
1 | Chế độ Thể tích (VC), Chế độ Áp lực (PC), SIMV,1
2 | CPAP, BiPAP, APRV,1
3 | Chế độ Thể tích (VC), Chế độ Áp lực (PC), CPAP, BiPAP,1
4 |
--------------------------------------------------------------------------------
/examples/address/req5_non_ascii_locale.json:
--------------------------------------------------------------------------------
1 | {
2 | "clock": "2025-01-01T00:00:00Z",
3 | "count": 1,
4 | "domain": "address",
5 | "locale": "vi_VN",
6 | "seed": "unicode",
7 | "version": "v1"
8 | }
9 |
--------------------------------------------------------------------------------
/examples/doctor/req5_non_ascii_locale.json:
--------------------------------------------------------------------------------
1 | {
2 | "clock": "2025-01-01T00:00:00Z",
3 | "count": 1,
4 | "domain": "doctor",
5 | "locale": "vi_VN",
6 | "seed": "unicode",
7 | "version": "v1"
8 | }
9 |
--------------------------------------------------------------------------------
/examples/patient/req5_non_ascii_locale.json:
--------------------------------------------------------------------------------
1 | {
2 | "clock": "2025-01-01T00:00:00Z",
3 | "count": 1,
4 | "domain": "patient",
5 | "locale": "vi_VN",
6 | "seed": "unicode",
7 | "version": "v1"
8 | }
9 |
--------------------------------------------------------------------------------
/examples/person/req5_non_ascii_locale.json:
--------------------------------------------------------------------------------
1 | {
2 | "clock": "2025-01-01T00:00:00Z",
3 | "count": 1,
4 | "domain": "person",
5 | "locale": "vi_VN",
6 | "seed": "unicode",
7 | "version": "v1"
8 | }
9 |
--------------------------------------------------------------------------------
/datamimic_ce/demos/demo-datetime/script/py_script.scr.py:
--------------------------------------------------------------------------------
1 | from datetime import datetime, timedelta
2 |
3 |
4 | def add_days(current_date: datetime, days: int):
5 | return current_date + timedelta(days=days)
6 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/common/organization/artificialName_VN.csv:
--------------------------------------------------------------------------------
1 | An-Phát
2 | Việt-Phúc
3 | Thiên-Long
4 | Sao-Đông
5 | Đại-Hưng
6 | Tân-Lực
7 | Hòa-Bình
8 | Phú-Gia
9 | Lộc-Phát
10 | Thịnh-Vượng
11 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/common/person/familyName_LT.csv:
--------------------------------------------------------------------------------
1 | Kazlauskas
2 | Petrauskas
3 | Jankauskas
4 | Stankevičius
5 | Vasiliauskas
6 | Žukauskas
7 | Butkus
8 | Paulauskas
9 | Urbonas
10 | Kavaliauskas
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/common/person/givenName_male_AU.csv:
--------------------------------------------------------------------------------
1 | Jack
2 | James
3 | Lachlan
4 | Benjamin
5 | Joshua
6 | Ryan
7 | John
8 | Patrick
9 | Samuel
10 | William
11 | Thomas
12 | Daniel
13 | Matthew
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/healthcare/hospital/hospital_types_VN.csv:
--------------------------------------------------------------------------------
1 | Bệnh viện đa khoa,2
2 | Bệnh viện tuyến tỉnh,2
3 | Bệnh viện chuyên khoa,1
4 | Bệnh viện trung ương,1
5 | Bệnh viện phục hồi chức năng,1
6 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/healthcare/hospital/services_long-term_care_US.csv:
--------------------------------------------------------------------------------
1 | Skilled Nursing Care,1
2 | Rehabilitation Services,1
3 | Memory Care,1
4 | Palliative Care,1
5 | Hospice Care,1
6 | Respite Care,1
7 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/healthcare/medical/blood_types_VN.csv:
--------------------------------------------------------------------------------
1 | Nhóm máu O+,38
2 | Nhóm máu A+,34
3 | Nhóm máu B+,9
4 | Nhóm máu AB+,3
5 | Nhóm máu O-,7
6 | Nhóm máu A-,6
7 | Nhóm máu B-,2
8 | Nhóm máu AB-,1
9 |
--------------------------------------------------------------------------------
/tests_ce/external_service_tests/datamimic_demo/gewerbeverordnung-xml/data/veranstaltungstyp_column_data.ent.csv:
--------------------------------------------------------------------------------
1 | Id|Use|ShortName|LongName
2 | Code|required|Code|Code
3 | Beschreibung|optional|Beschreibung|Beschreibung
--------------------------------------------------------------------------------
/tests_ce/functional_tests/test_include/test_dynamic_uri.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/common/state/state_BE.csv:
--------------------------------------------------------------------------------
1 | "id","name","population","defaultLanguage"
2 | "BRU","Bruxelles-Capitale",1235192,"fr"
3 | "VLG","Vlaanderen",6629143,"nl"
4 | "WAL","Wallonie",3633795,"fr"
5 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/ecommerce/product_conditions_VN.csv:
--------------------------------------------------------------------------------
1 | condition,weight
2 | MỚI 100%,0.6
3 | NHƯ MỚI,0.15
4 | ĐÃ QUA SỬ DỤNG TỐT,0.12
5 | ĐÃ TÂN TRANG,0.08
6 | HÀNG MỞ HỘP,0.05
7 | HÀNG KHUYẾT TẬT NHẸ,0.02
8 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/ecommerce/product_nouns_jewelry_DE.csv:
--------------------------------------------------------------------------------
1 | product,weight
2 | Halskette,1.0
3 | Armband,0.9
4 | Ohrringe,0.9
5 | Ring,0.8
6 | Uhr,0.7
7 | Anhänger,0.7
8 | Charms,0.6
9 | Broche,0.5
10 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/healthcare/hospital/accreditations_rehabilitation_US.csv:
--------------------------------------------------------------------------------
1 | Commission on Accreditation of Rehabilitation Facilities (CARF),1
2 | American Academy of Physical Medicine and Rehabilitation,1
3 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/healthcare/hospital/services_long-term_care_DE.csv:
--------------------------------------------------------------------------------
1 | Fachpflege,1
2 | Rehabilitationsangebote,1
3 | Demenzbetreuung,1
4 | Palliativversorgung,1
5 | Hospizbegleitung,1
6 | Kurzzeitpflege,1
7 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/public_sector/police/languages_DE.csv:
--------------------------------------------------------------------------------
1 | Deutsch,5
2 | Englisch,3
3 | Türkisch,2
4 | Arabisch,1
5 | Russisch,1
6 | Polnisch,1
7 | Französisch,1
8 | Italienisch,1
9 | Spanisch,1
10 |
--------------------------------------------------------------------------------
/datamimic_ce/demos/demo-mongodb/conf/environment.env.properties:
--------------------------------------------------------------------------------
1 | mongodb.mongo.host=mongo
2 | mongodb.mongo.port=27017
3 | mongodb.mongo.database=datamimic
4 | mongodb.mongo.user=datamimic
5 | mongodb.mongo.password=datamimic
6 |
--------------------------------------------------------------------------------
/datamimic_ce/demos/overview-generator/us.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | Running SSNGenerator
4 |
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/healthcare/hospital/accreditations_specialty_DE.csv:
--------------------------------------------------------------------------------
1 | Zertifiziertes Onkologisches Zentrum (DKG),1
2 | EndoCert Endoprothetikzentrum,1
3 | Deutsche Gesellschaft für Kardiologie Zertifizierung,1
4 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/healthcare/hospital/accreditations_specialty_VN.csv:
--------------------------------------------------------------------------------
1 | Chứng nhận Trung tâm Ung bướu quốc gia,1
2 | Chứng nhận Trung tâm Tim mạch Việt Nam,1
3 | Tiêu chuẩn phẫu thuật chuyên sâu của Bộ Y tế,1
4 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/healthcare/hospital/services_veterans_US.csv:
--------------------------------------------------------------------------------
1 | Veterans Health Services,1
2 | PTSD Treatment,1
3 | Prosthetics Services,1
4 | Veterans Benefits Counseling,1
5 | Military Transition Support,1
6 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/healthcare/medical/statuses_VN.csv:
--------------------------------------------------------------------------------
1 | status,weight
2 | Hoàn thành,200
3 | Đã duyệt,180
4 | Đã ký,150
5 | Đang thực hiện,120
6 | Đang chờ xét duyệt,100
7 | Bổ sung thông tin,80
8 | Bị từ chối,40
9 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/public_sector/education/facilities_k12_US.csv:
--------------------------------------------------------------------------------
1 | Playground,1
2 | Music Room,1
3 | Art Studio,1
4 | Science Labs,1
5 | Counseling Center,1
6 | Health Office,1
7 | Special Education Classrooms,1
8 |
--------------------------------------------------------------------------------
/tests_ce/functional_tests/test_nested_part/data/state.ent.csv:
--------------------------------------------------------------------------------
1 | PHONE_IND|PROMPT_IND|Timestamp
2 | Y|N|2022-09-15 14:12:00.008
3 | N|Y|2022-10-10 10:12:36.112
4 | |N|2023-01-29 22:49:33.997
5 | Y| |2023-02-15 03:30:27.845
6 |
--------------------------------------------------------------------------------
/datamimic_ce/demos/demo-model/conf/base.properties:
--------------------------------------------------------------------------------
1 | # control processing with global parameters to be used in models as {variable}
2 | # {customer_count} controls the amount of records created in 2_generate
3 | customer_count=10
4 |
--------------------------------------------------------------------------------
/datamimic_ce/demos/demo-xml/info.toml:
--------------------------------------------------------------------------------
1 | title = "Basic XML"
2 | description = "Showcases how to generate and export XML file with DATAMIMIC."
3 | icon = "xml"
4 | tags = ["#xml"]
5 | id = "demo-xml"
6 | projectName = "demo-xml"
7 |
--------------------------------------------------------------------------------
/datamimic_ce/demos/overview-generator/product.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | Running EANGenerator
4 |
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/common/net/webmailDomain_DE.csv:
--------------------------------------------------------------------------------
1 | domain,weight
2 | gmx.de,1.0
3 | web.de,0.9
4 | t-online.de,0.8
5 | posteo.de,0.5
6 | freenet.de,0.6
7 | outlook.de,0.4
8 | proton.me,0.3
9 | mail.de,0.2
10 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/common/state/state_IE.csv:
--------------------------------------------------------------------------------
1 | "id","name","population","defaultLanguage"
2 | "C","Connacht",588583,"en"
3 | "L","Leinster",2858501,"en"
4 | "M","Munster",1364098,"en"
5 | "U","Ulster",2215454,"en"
6 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/ecommerce/payment_methods_VN.csv:
--------------------------------------------------------------------------------
1 | method,weight
2 | Thẻ tín dụng,0.25
3 | Chuyển khoản ngân hàng,0.25
4 | Ví điện tử MoMo,0.25
5 | Ví điện tử ZaloPay,0.15
6 | Thanh toán khi nhận hàng (COD),0.10
7 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/ecommerce/product_conditions_ES.csv:
--------------------------------------------------------------------------------
1 | condition,weight
2 | NUEVO,0.78
3 | COMO_NUEVO,0.07
4 | REACONDICIONADO,0.06
5 | SEMINUEVO,0.04
6 | CAJA_ABIERTA,0.03
7 | GRADO_B,0.015
8 | EXPOSICION,0.015
9 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/healthcare/hospital/accreditations_long-term_care_VN.csv:
--------------------------------------------------------------------------------
1 | Chứng nhận chất lượng cơ sở điều dưỡng của Bộ Y tế,1
2 | ISO 9001 cho cơ sở chăm sóc dài hạn,1
3 | Đánh giá chất lượng Sở Y tế địa phương,1
4 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/healthcare/hospital/services_psychiatric_DE.csv:
--------------------------------------------------------------------------------
1 | Psychiatrische Diagnostik,1
2 | Medikamentenmanagement,1
3 | Einzeltherapie,1
4 | Gruppentherapie,1
5 | Familientherapie,1
6 | Krisenintervention,1
7 |
--------------------------------------------------------------------------------
/datamimic_ce/demos/demo-finance/datamimic.xml:
--------------------------------------------------------------------------------
1 |
2 | Running Finance Demos
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/datamimic_ce/demos/demo-insurance/datamimic.xml:
--------------------------------------------------------------------------------
1 |
2 | Running Insurance Demos
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/datamimic_ce/demos/demo-json/info.toml:
--------------------------------------------------------------------------------
1 | tags = ["#database", "#json"]
2 | title = "Basic JSON"
3 | description = "Showcases how to generate JSON data with DATAMIMIC."
4 | icon = "json"
5 | projectName = "demo-json"
6 | id = "demo-json"
7 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/common/state/state_BA.csv:
--------------------------------------------------------------------------------
1 | "id","name","population","defaultLanguage"
2 | "BIH","Federacija Bosne i Hercegovine",2219220,"bs"
3 | "BRC","Brčko distrikt",83516,"bs"
4 | "SRP","Republika Srpska",1218107,"sr"
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/finance/account_types_VN.csv:
--------------------------------------------------------------------------------
1 | type,weight
2 | TÀI KHOẢN THANH TOÁN,0.45
3 | TÀI KHOẢN TIẾT KIỆM,0.3
4 | TÀI KHOẢN KỲ HẠN,0.1
5 | TÀI KHOẢN VND,0.05
6 | TÀI KHOẢN NGOẠI TỆ,0.05
7 | THẺ GỬI TIẾT KIỆM,0.05
8 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/healthcare/hospital/accreditations_general_VN.csv:
--------------------------------------------------------------------------------
1 | Chứng nhận Bộ Y tế Việt Nam,1
2 | ISO 15189 Phòng xét nghiệm y khoa,1
3 | Chứng nhận JCI (nếu áp dụng),1
4 | Tiêu chuẩn an toàn người bệnh VietHF,1
5 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/healthcare/hospital/accreditations_long-term_care_US.csv:
--------------------------------------------------------------------------------
1 | Joint Commission,1
2 | Commission on Accreditation of Rehabilitation Facilities (CARF),1
3 | National Committee for Quality Assurance (NCQA),1
4 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/healthcare/hospital/hospital_types_US.csv:
--------------------------------------------------------------------------------
1 | General,2
2 | Teaching,1
3 | Community,2
4 | Specialty,1
5 | Rehabilitation,1
6 | Psychiatric,1
7 | Children's,1
8 | Veterans,1
9 | Long-term Care,1
10 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/healthcare/hospital/services_psychiatric_VN.csv:
--------------------------------------------------------------------------------
1 | Đánh giá sức khỏe tâm thần,1
2 | Quản lý thuốc tâm thần,1
3 | Trị liệu cá nhân,1
4 | Trị liệu nhóm,1
5 | Trị liệu gia đình,1
6 | Can thiệp khủng hoảng,1
7 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/healthcare/medical/clinical_trials/phases_DE.csv:
--------------------------------------------------------------------------------
1 | Phase 1, 100
2 | Phase 2, 150
3 | Phase 3, 120
4 | Phase 4, 80
5 | Frühe Phase 1, 50
6 | Phase 1/Phase 2, 70
7 | Phase 2/Phase 3, 60
8 | Nicht Anwendbar, 40
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/healthcare/medical/clinical_trials/phases_US.csv:
--------------------------------------------------------------------------------
1 | Phase 1, 100
2 | Phase 2, 150
3 | Phase 3, 120
4 | Phase 4, 80
5 | Early Phase 1, 50
6 | Phase 1/Phase 2, 70
7 | Phase 2/Phase 3, 60
8 | Not Applicable, 40
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/healthcare/medical/maintenance_parts_VN.csv:
--------------------------------------------------------------------------------
1 | Nguồn điện,1
2 | Pin dự phòng,1
3 | Màn hình hiển thị,1
4 | Bảng điều khiển,1
5 | Cụm cảm biến,1
6 | Ống dẫn khí,1
7 | Van một chiều,1
8 | Module phần mềm,1
9 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/healthcare/medical/procedure_actions_preventive_VN.csv:
--------------------------------------------------------------------------------
1 | Điều trị dự phòng,1
2 | Liệu pháp dự phòng,0.9
3 | Quản lý dự phòng,0.8
4 | Sàng lọc,1
5 | Tiêm chủng,0.9
6 | Tiêm vắc xin,0.9
7 | Dự phòng,0.8
8 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/healthcare/medical/test_types_VN.csv:
--------------------------------------------------------------------------------
1 | Xét nghiệm máu,10
2 | Xét nghiệm nước tiểu,8
3 | Chẩn đoán hình ảnh,7
4 | Sinh thiết,5
5 | Xét nghiệm di truyền,3
6 | Test nhanh kháng nguyên,4
7 | Xét nghiệm PCR,6
8 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/healthcare/medical/ultrasound_probe_types_VN.csv:
--------------------------------------------------------------------------------
1 | Đầu dò linear, đầu dò convex, đầu dò tim mạch,1
2 | Đầu dò linear, đầu dò convex, đầu dò âm đạo,1
3 | Đầu dò linear, đầu dò convex, đầu dò thể tích 3D,1
4 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/public_sector/police/languages_US.csv:
--------------------------------------------------------------------------------
1 | English,5
2 | Spanish,3
3 | French,2
4 | German,1
5 | Chinese,2
6 | Arabic,1
7 | Russian,1
8 | Japanese,1
9 | Korean,1
10 | Portuguese,1
11 | Italian,1
12 |
--------------------------------------------------------------------------------
/tests_ce/functional_tests/test_include/test_dynamic_include_model.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/datamimic_ce/demos/demo-model/1_prepare.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/datamimic_ce/demos/demo-py-scripting/data/person.ent.csv:
--------------------------------------------------------------------------------
1 | name|age
2 | Alice|23
3 | Bob|{multiply(43,32)}
4 | Hank|{multiply(4,12)}
5 | Frank|{multiply(12,3)}
6 | Linda|{multiply(12,22)}
7 | Ruth|{multiply(12,66)}
8 | Sue|{multiply(12,55)}
9 |
--------------------------------------------------------------------------------
/datamimic_ce/demos/demo-watermark/conf/environment.env.properties:
--------------------------------------------------------------------------------
1 | source.db.database=source
2 | source.db.dbms=sqlite
3 |
4 | config.db.database=config
5 | config.db.dbms=sqlite
6 |
7 | target.db.database=target
8 | target.db.dbms=sqlite
9 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/common/net/webmailDomain_VN.csv:
--------------------------------------------------------------------------------
1 | domain,weight
2 | gmail.com,1.0
3 | yahoo.com,0.6
4 | outlook.com,0.5
5 | icloud.com,0.3
6 | zohomail.com,0.2
7 | viettel.com.vn,0.2
8 | vnpt.vn,0.2
9 | mail.vn,0.1
10 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/common/person/givenName_female_SK.csv:
--------------------------------------------------------------------------------
1 | Mária,225471
2 | Anna,161812
3 | Zuzana,88276
4 | Katarína,88001
5 | Eva,85952
6 | Jana,85518
7 | Helena,66898
8 | Monika,48667
9 | Marta,47586
10 | Martina,44738
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/common/person/givenName_male_SK.csv:
--------------------------------------------------------------------------------
1 | Jozef,175593
2 | Ján,174949
3 | Peter,158593
4 | Martin,87283
5 | Štefan,80647
6 | Milan,78781
7 | Michal,78548
8 | Miroslav,78093
9 | Tomáš,59653
10 | Ladislav,58927
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/ecommerce/product_nouns_books_DE.csv:
--------------------------------------------------------------------------------
1 | product,weight
2 | Roman,1.0
3 | Krimi,0.9
4 | Sachbuch,0.8
5 | Kinderbuch,0.8
6 | Kochbuch,0.7
7 | Biografie,0.7
8 | Reiseführer,0.6
9 | Graphic Novel,0.6
10 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/healthcare/hospital/services_community_US.csv:
--------------------------------------------------------------------------------
1 | Diagnostic Imaging,1
2 | Laboratory Services,1
3 | Pharmacy Services,1
4 | Outpatient Care,1
5 | Primary Care,1
6 | Family Medicine,1
7 | Community Outreach,1
8 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/healthcare/hospital/services_psychiatric_US.csv:
--------------------------------------------------------------------------------
1 | Mental Health Assessment,1
2 | Psychiatric Medication Management,1
3 | Individual Therapy,1
4 | Group Therapy,1
5 | Family Therapy,1
6 | Crisis Intervention,1
7 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/healthcare/medical/procedure_purposes_preventive_VN.csv:
--------------------------------------------------------------------------------
1 | phòng ngừa bệnh,1
2 | giảm yếu tố nguy cơ,0.9
3 | duy trì sức khỏe,0.9
4 | ngăn ngừa biến chứng,0.8
5 | thúc đẩy sức khỏe,0.8
6 | sàng lọc sớm,0.9
7 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/healthcare/medical/ultrasound_imaging_modes_VN.csv:
--------------------------------------------------------------------------------
1 | Chế độ B (2D), Chế độ M, Doppler màu,1
2 | Chế độ B (2D), Doppler màu, Doppler năng lượng,1
3 | Chế độ B (2D), Chế độ M, Doppler màu, Doppler năng lượng,1
4 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/healthcare/medical_device/device_statuses_VN.csv:
--------------------------------------------------------------------------------
1 | Đang hoạt động,200
2 | Tạm ngừng,50
3 | Đang bảo dưỡng,30
4 | Đang sửa chữa,25
5 | Đang hiệu chuẩn,20
6 | Đã loại bỏ,15
7 | Đang vận chuyển,15
8 | Đặt chỗ,10
9 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/public_sector/education/facilities_k12_DE.csv:
--------------------------------------------------------------------------------
1 | Schulhof,1
2 | Musikraum,1
3 | Kunstatelier,1
4 | Naturwissenschaftliche Labore,1
5 | Beratungszentrum,1
6 | Health Office,1
7 | Special Education Classrooms,1
8 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/public_sector/police/languages_VN.csv:
--------------------------------------------------------------------------------
1 | Tiếng Việt,5
2 | Tiếng Anh,3
3 | Tiếng Trung,2
4 | Tiếng Pháp,1
5 | Tiếng Nga,1
6 | Tiếng Nhật,1
7 | Tiếng Hàn,1
8 | Tiếng Khmer,1
9 | Tiếng Tây Ban Nha,1
10 |
--------------------------------------------------------------------------------
/datamimic_ce/demos/overview-generator/net.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | Running Domain Generator
4 |
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/common/person/givenName_female_CZ.csv:
--------------------------------------------------------------------------------
1 | Marie,385985
2 | Jana,276123
3 | Anna,164362
4 | Eva,163238
5 | Hana,152215
6 | Vera,140109
7 | Lenka,116662
8 | Alena,111924
9 | Jaroslava,101920
10 | Ludmila,99583
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/ecommerce/payment_methods_US.csv:
--------------------------------------------------------------------------------
1 | method,weight
2 | CREDIT_CARD,0.4
3 | DEBIT_CARD,0.3
4 | PAYPAL,0.15
5 | BANK_TRANSFER,0.05
6 | CASH_ON_DELIVERY,0.03
7 | GIFT_CARD,0.03
8 | STORE_CREDIT,0.02
9 | CRYPTOCURRENCY,0.02
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/ecommerce/product_nouns_furniture_DE.csv:
--------------------------------------------------------------------------------
1 | product,weight
2 | Sofa,1.0
3 | Esstisch,0.9
4 | Kleiderschrank,0.8
5 | Schreibtisch,0.8
6 | Kommode,0.7
7 | Regal,0.8
8 | Nachttisch,0.7
9 | Polsterstuhl,0.7
10 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/finance/credit_card/card_types_VN.csv:
--------------------------------------------------------------------------------
1 | type,prefix,length,cvv_length,weight
2 | VISA,4,16,3,0.35
3 | MASTERCARD,5,16,3,0.3
4 | JCB,3528|3589,16,3,0.15
5 | Napas,9704|9706|9707,16,3,0.1
6 | AMEX,34|37,15,4,0.1
7 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/groups/gender_category/gender_category_US.csv:
--------------------------------------------------------------------------------
1 | group_id,gender,weight
2 | gender_majority,Female,0.465116
3 | gender_majority,Male,0.465116
4 | gender_majority,Other,0.046512
5 | gender_majority,Unknown,0.023256
6 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/groups/gender_category/gender_category_VN.csv:
--------------------------------------------------------------------------------
1 | group_id,gender,weight
2 | gender_majority,Khác,0.046512
3 | gender_majority,Không xác định,0.023256
4 | gender_majority,Nam,0.465116
5 | gender_majority,Nữ,0.465116
6 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/healthcare/medical/clinical_trials/phases_VN.csv:
--------------------------------------------------------------------------------
1 | Giai đoạn 1,100
2 | Giai đoạn 2,150
3 | Giai đoạn 3,120
4 | Giai đoạn 4,80
5 | Giai đoạn sớm 1,50
6 | Giai đoạn 1/2,70
7 | Giai đoạn 2/3,60
8 | Không áp dụng,40
9 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/healthcare/medical/test_statuses_US.csv:
--------------------------------------------------------------------------------
1 | Ordered,5
2 | Specimen Collected,4
3 | In Progress,6
4 | Completed,10
5 | Reported,8
6 | Cancelled,2
7 | Rejected,1
8 | On Hold,3
9 | Pending Review,4
10 | Amended,2
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/common/organization/department_VN.csv:
--------------------------------------------------------------------------------
1 | Kế toán
2 | Nhân sự
3 | Kinh doanh
4 | Tiếp thị
5 | Công nghệ Thông tin
6 | Chăm sóc Khách hàng
7 | Mua hàng
8 | Sản xuất
9 | Pháp chế
10 | Truyền thông
11 | Chất lượng
12 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/common/person/familyName_LV.csv:
--------------------------------------------------------------------------------
1 | Bērziņš
2 | Kalniņš
3 | Ozoliņš
4 | Jansons
5 | Ozols
6 | Liepiņš
7 | Krūmiņš
8 | Balodis
9 | Eglītis
10 | Zariņš
11 | Pētersons
12 | Vītols
13 | Kļaviņš
14 | Kārkliņš
15 | Vanags
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/common/person/givenName_female_CH.csv:
--------------------------------------------------------------------------------
1 | Sandra,17114
2 | Claudia,18225
3 | Christine,18373
4 | Marianne,18947
5 | Monika,19525
6 | Barbara,20068
7 | Elisabeth,24171
8 | Ursula,24488
9 | Ruth,25446
10 | Maria,33234
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/common/person/givenName_male_CZ.csv:
--------------------------------------------------------------------------------
1 | Jiri,328884
2 | Josef,294405
3 | Jan,293121
4 | Petr,267601
5 | Jaroslav,223442
6 | Pavel,207300
7 | Miroslav,176337
8 | Frantisek,176215
9 | Martin,164534
10 | Zdenek,152742
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/ecommerce/product_nouns_sports_DE.csv:
--------------------------------------------------------------------------------
1 | product,weight
2 | Fußball,1.0
3 | Laufband,0.8
4 | Yogamatte,0.9
5 | Tennis-Schläger,0.8
6 | Mountainbike,0.7
7 | Hantelset,0.8
8 | Fitness-Tracker,0.7
9 | Skihelm,0.6
10 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/finance/transaction/categories_US.csv:
--------------------------------------------------------------------------------
1 | category,weight
2 | Retail,20
3 | Grocery,18
4 | Dining,15
5 | Entertainment,8
6 | Travel,7
7 | Utilities,10
8 | Healthcare,8
9 | Education,5
10 | Services,7
11 | Other,2
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/finance/transaction/categories_VN.csv:
--------------------------------------------------------------------------------
1 | category,weight
2 | Bán lẻ,20
3 | Siêu thị & thực phẩm,18
4 | Ăn uống,15
5 | Giải trí,8
6 | Du lịch,7
7 | Hóa đơn tiện ích,10
8 | Y tế,8
9 | Giáo dục,5
10 | Dịch vụ,7
11 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/healthcare/hospital/services_childrens_US.csv:
--------------------------------------------------------------------------------
1 | Pediatric Emergency Care,1
2 | Pediatric Surgery,1
3 | Neonatal Intensive Care,1
4 | Pediatric Intensive Care,1
5 | Child Life Services,1
6 | Pediatric Specialty Care,1
7 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/healthcare/hospital/services_veterans_DE.csv:
--------------------------------------------------------------------------------
1 | Veteranen-Gesundheitsdienst,1
2 | PTBS-Behandlung,1
3 | Prothesenversorgung,1
4 | Beratung zu Veteranenleistungen,1
5 | Unterstützung beim Übergang in das zivile Leben,1
6 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/healthcare/medical/procedure_actions_preventive_DE.csv:
--------------------------------------------------------------------------------
1 | Präventive Behandlung,1
2 | Prophylaktische Therapie,0.9
3 | Präventives Management,0.8
4 | Screening,1
5 | Immunisierung,0.9
6 | Impfung,0.9
7 | Prophylaxe,0.8
8 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/healthcare/medical/procedure_actions_preventive_US.csv:
--------------------------------------------------------------------------------
1 | Preventive treatment,1
2 | Prophylactic therapy,0.9
3 | Preventive management,0.8
4 | Screening,1
5 | Immunization,0.9
6 | Vaccination,0.9
7 | Prophylaxis,0.8
8 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/healthcare/medical/procedure_purposes_preventive_US.csv:
--------------------------------------------------------------------------------
1 | prevent disease,1
2 | reduce risk factors,0.9
3 | maintain health,0.9
4 | prevent complications,0.8
5 | promote wellness,0.8
6 | screen for early disease,0.9
7 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/public_sector/education/facilities_common_DE.csv:
--------------------------------------------------------------------------------
1 | Bibliothek,1
2 | Computerkabinett,1
3 | Mensa,1
4 | Verwaltungsbüros,1
5 | Klassenzimmer,1
6 | Gymnasium,1
7 | Auditorium,1
8 | Sports Fields,1
9 | Parking,1
10 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/public_sector/education/facilities_common_US.csv:
--------------------------------------------------------------------------------
1 | Library,1
2 | Computer Lab,1
3 | Cafeteria,1
4 | Administrative Offices,1
5 | Classrooms,1
6 | Gymnasium,1
7 | Auditorium,1
8 | Sports Fields,1
9 | Parking,1
10 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/public_sector/education/facilities_common_VN.csv:
--------------------------------------------------------------------------------
1 | Thư viện,1
2 | Phòng máy tính,1
3 | Nhà ăn,1
4 | Văn phòng hành chính,1
5 | Phòng học,1
6 | Gymnasium,1
7 | Auditorium,1
8 | Sports Fields,1
9 | Parking,1
10 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/public_sector/education/facilities_k12_VN.csv:
--------------------------------------------------------------------------------
1 | Sân chơi,1
2 | Phòng âm nhạc,1
3 | Phòng mỹ thuật,1
4 | Phòng thí nghiệm khoa học,1
5 | Phòng tư vấn học đường,1
6 | Health Office,1
7 | Special Education Classrooms,1
8 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/public_sector/education/programs_k12_VN.csv:
--------------------------------------------------------------------------------
1 | Đọc hiểu và ngôn ngữ,1
2 | Toán học,1
3 | Khoa học,1
4 | Khoa học xã hội,1
5 | Giáo dục thể chất,1
6 | Arts and Music,1
7 | Technology Education,1
8 | Career Exploration,1
9 |
--------------------------------------------------------------------------------
/tests_ce/external_service_tests/datamimic_demo/c-simple-anonymization/conf/base.properties:
--------------------------------------------------------------------------------
1 | # count for customer|user creation of datamimic example
2 | customer_count=10
3 | user_count=10
4 |
5 | # count for anon-person examples
6 | anon_count=1
7 |
--------------------------------------------------------------------------------
/tests_ce/external_service_tests/datamimic_demo/n-mongodb/conf/local.env.properties:
--------------------------------------------------------------------------------
1 | mongodb.mongo.host=localhost
2 | mongodb.mongo.port=47017
3 | mongodb.mongo.database=datamimic
4 | mongodb.mongo.user=datamimic
5 | mongodb.mongo.password=datamimic
6 |
--------------------------------------------------------------------------------
/tests_ce/external_service_tests/test_demo/demo-mongodb/conf/environment.env.properties:
--------------------------------------------------------------------------------
1 | mongodb.mongo.host=mongo
2 | mongodb.mongo.port=27017
3 | mongodb.mongo.database=datamimic
4 | mongodb.mongo.user=datamimic
5 | mongodb.mongo.password=datamimic
6 |
--------------------------------------------------------------------------------
/tests_ce/functional_tests/test_sqlite/4_iterate.xml:
--------------------------------------------------------------------------------
1 |
2 |
4 |
5 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/ecommerce/product_nouns_beverages_DE.csv:
--------------------------------------------------------------------------------
1 | product,weight
2 | Mineralwasser,1.0
3 | Apfelschorle,0.9
4 | Kräutertee,0.8
5 | Filterkaffee,0.9
6 | Espresso,0.8
7 | Bio-Saft,0.7
8 | Energydrink,0.6
9 | Craft-Bier,0.6
10 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/groups/gender_category/gender_category_DE.csv:
--------------------------------------------------------------------------------
1 | group_id,gender,weight
2 | gender_majority,Divers,0.046512
3 | gender_majority,Männlich,0.465116
4 | gender_majority,Unbekannt,0.023256
5 | gender_majority,Weiblich,0.465116
6 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/healthcare/hospital/accreditations_general_DE.csv:
--------------------------------------------------------------------------------
1 | KTQ-Zertifizierung,1
2 | DIN EN ISO 9001 Gesundheitswesen,1
3 | Deutsche Krebsgesellschaft Zertifizierungsprogramm,1
4 | Ärztliche Zentralstelle Qualitätssicherung (ÄZQ),1
5 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/healthcare/hospital/accreditations_general_US.csv:
--------------------------------------------------------------------------------
1 | Joint Commission,1
2 | American College of Surgeons Commission on Cancer (CoC),1
3 | American College of Radiology (ACR),1
4 | College of American Pathologists (CAP),1
5 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/healthcare/hospital/accreditations_specialty_US.csv:
--------------------------------------------------------------------------------
1 | Commission on Accreditation of Rehabilitation Facilities (CARF),1
2 | American College of Surgeons Commission on Cancer (CoC),1
3 | American College of Radiology (ACR),1
4 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/healthcare/hospital/services_childrens_VN.csv:
--------------------------------------------------------------------------------
1 | Chăm sóc cấp cứu Nhi,1
2 | Phẫu thuật Nhi,1
3 | Chăm sóc sơ sinh đặc biệt,1
4 | Chăm sóc tích cực Nhi,1
5 | Hỗ trợ tâm lý và vui chơi cho trẻ,1
6 | Dịch vụ chuyên khoa Nhi,1
7 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/healthcare/medical/abnormal_flags_US.csv:
--------------------------------------------------------------------------------
1 | High,10
2 | Low,10
3 | Critical High,5
4 | Critical Low,5
5 | Abnormal,8
6 | Out of Range,7
7 | Panic Value,3
8 | Borderline,6
9 | Inconclusive,4
10 | Requires Confirmation,5
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/healthcare/medical/doctor_titles_VN.csv:
--------------------------------------------------------------------------------
1 | BS.,200
2 | BS.CK1,180
3 | BS.CK2,150
4 | ThS. BS.,120
5 | TS. BS.,100
6 | PGS. TS.,80
7 | GS. TS.,60
8 | Điều dưỡng trưởng,40
9 | Dược sĩ CK1,50
10 | ThS. Điều dưỡng,30
11 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/healthcare/medical/procedure_actions_general_VN.csv:
--------------------------------------------------------------------------------
1 | Điều trị,1
2 | Liệu pháp,1
3 | Quản lý,0.9
4 | Tiêm,0.8
5 | Truyền dịch,0.7
6 | Dẫn lưu,0.6
7 | Nong,0.5
8 | Nắn chỉnh,0.5
9 | Áp dụng,0.6
10 | Quản trị,0.6
11 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/healthcare/medical_device/device_types_VN.csv:
--------------------------------------------------------------------------------
1 | Máy thở,80
2 | Máy monitor bệnh nhân,120
3 | Máy truyền dịch,150
4 | Máy sốc điện tim,70
5 | Máy điện tâm đồ,90
6 | Máy bơm tiêm điện,60
7 | Máy khí dung,55
8 | Máy lọc máu,65
9 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/public_sector/education/programs_k12_US.csv:
--------------------------------------------------------------------------------
1 | Reading and Literacy,1
2 | Mathematics,1
3 | Science,1
4 | Social Studies,1
5 | Physical Education,1
6 | Arts and Music,1
7 | Technology Education,1
8 | Career Exploration,1
9 |
--------------------------------------------------------------------------------
/tests_ce/unit_tests/tests_demographics/data/age_pyramid.dmgrp.csv:
--------------------------------------------------------------------------------
1 | dataset,version,sex,age_min,age_max,weight
2 | TEST,v1,F,0,17,0.2
3 | TEST,v1,F,18,35,0.3
4 | TEST,v1,F,36,80,0.5
5 | TEST,v1,M,0,17,0.25
6 | TEST,v1,M,18,35,0.35
7 | TEST,v1,M,36,80,0.4
8 |
--------------------------------------------------------------------------------
/datamimic_ce/demos/demo-datetime/info.toml:
--------------------------------------------------------------------------------
1 | title = "Basic Date Time"
2 | description = "Showcases how to generate and handle data for Date Time format."
3 | icon = "calendar"
4 | tags = ["#datetime"]
5 | projectName = "demo-datetime"
6 | id = "demo-datetime"
7 |
--------------------------------------------------------------------------------
/datamimic_ce/demos/demo-db-mapping/1_prepare.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/common/organization/legalForm_VN.csv:
--------------------------------------------------------------------------------
1 | Công ty TNHH
2 | Công ty Cổ phần
3 | Doanh nghiệp Tư nhân
4 | Công ty Hợp danh
5 | Hợp tác xã
6 | Chi nhánh Doanh nghiệp Nước ngoài
7 | Văn phòng Đại diện
8 | Công ty TNHH Một Thành viên
9 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/common/person/givenName_male_BE.csv:
--------------------------------------------------------------------------------
1 | Daan
2 | Sem
3 | Jayden
4 | Thomas
5 | Lars
6 | Jesse
7 | Thijs
8 | Tim
9 | Ruben
10 | Milan
11 | Lucas
12 | Sam
13 | Sven
14 | Finn
15 | Luuk
16 | Bram
17 | Nick
18 | Stijn
19 | Levi
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/common/person/title_US.csv:
--------------------------------------------------------------------------------
1 | Bachelor,0.2
2 | Master,0.1
3 | PhD,0.05
4 | Asst. Prof.,0.03
5 | Assoc. Prof.,0.02
6 | Postdoc,0.02
7 | Prof.,0.01
8 | Distinguished Prof.,0.005
9 | Endowed Prof.,0.004
10 | Emeritus Prof.,0.003
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/common/person/title_VN.csv:
--------------------------------------------------------------------------------
1 | Cử nhân,0.25
2 | Thạc sĩ,0.15
3 | Tiến sĩ,0.08
4 | Giảng viên,0.1
5 | Phó Giáo sư,0.05
6 | Giáo sư,0.03
7 | Kỹ sư,0.12
8 | Kiến trúc sư,0.07
9 | Chuyên gia cao cấp,0.1
10 | Danh dự,0.05
11 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/ecommerce/product_nouns_toys_DE.csv:
--------------------------------------------------------------------------------
1 | product,weight
2 | Bausteinset,1.0
3 | Plüschfigur,0.9
4 | Bauspielzeug,0.8
5 | Lernspiel,0.8
6 | Puppenhaus,0.7
7 | Modellauto,0.7
8 | Puzzle,0.8
9 | Ferngesteuertes Fahrzeug,0.6
10 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/healthcare/hospital/services_general_US.csv:
--------------------------------------------------------------------------------
1 | Diagnostic Imaging,1
2 | Laboratory Services,1
3 | Pharmacy Services,1
4 | Outpatient Care,1
5 | Inpatient Care,1
6 | Emergency Care,1
7 | Surgery,1
8 | Rehabilitation Services,1
9 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/healthcare/medical/languages_VN.csv:
--------------------------------------------------------------------------------
1 | language,weight
2 | Tiếng Việt,200
3 | Tiếng Anh,120
4 | Tiếng Khmer,40
5 | Tiếng Hoa,60
6 | Tiếng Hàn,30
7 | Tiếng Nhật,25
8 | Tiếng Pháp,35
9 | Tiếng Ê Đê,20
10 | Tiếng Thái,20
11 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/healthcare/medical/maintenance_types_DE.csv:
--------------------------------------------------------------------------------
1 | Routine inspection,1
2 | Preventive maintenance,1
3 | Calibration,1
4 | Software update,1
5 | Hardware repair,1
6 | Component replacement,1
7 | Emergency repair,1
8 | Safety check,1
9 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/healthcare/medical/maintenance_types_US.csv:
--------------------------------------------------------------------------------
1 | Routine inspection,1
2 | Preventive maintenance,1
3 | Calibration,1
4 | Software update,1
5 | Hardware repair,1
6 | Component replacement,1
7 | Emergency repair,1
8 | Safety check,1
9 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/healthcare/medical/maintenance_types_VN.csv:
--------------------------------------------------------------------------------
1 | Kiểm tra định kỳ,1
2 | Bảo dưỡng phòng ngừa,1
3 | Hiệu chuẩn thiết bị,1
4 | Cập nhật phần mềm,1
5 | Sửa chữa phần cứng,1
6 | Vệ sinh chuyên sâu,1
7 | Thay thế linh kiện hao mòn,1
8 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/healthcare/medical/procedure_anesthesia_notes_VN.csv:
--------------------------------------------------------------------------------
1 | Thủ thuật cần gây mê.,1
2 | Quy trình được thực hiện dưới gây mê.,1
3 | Có sử dụng gây mê trong thủ thuật này.,1
4 | Cần gây mê để đảm bảo thoải mái cho bệnh nhân.,1
5 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/healthcare/medical/test_statuses_VN.csv:
--------------------------------------------------------------------------------
1 | Đã chỉ định,5
2 | Đã lấy mẫu,4
3 | Đang xử lý,6
4 | Hoàn tất,10
5 | Đã trả kết quả,8
6 | Hủy,2
7 | Bị từ chối,1
8 | Tạm giữ,3
9 | Chờ bác sĩ duyệt,4
10 | Đã chỉnh sửa kết quả,2
11 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/healthcare/medical_device/locations_VN.csv:
--------------------------------------------------------------------------------
1 | Khoa Cấp cứu,150
2 | Phòng mổ,130
3 | Khoa Hồi sức tích cực,140
4 | Khoa Tim mạch,100
5 | Khoa Chẩn đoán hình ảnh,120
6 | Kho thiết bị y tế,90
7 | Phòng hậu phẫu,110
8 | Xe cấp cứu,80
9 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/public_sector/education/programs_k12_DE.csv:
--------------------------------------------------------------------------------
1 | Lesen und Sprachförderung,1
2 | Mathematik,1
3 | Naturwissenschaften,1
4 | Gesellschaftslehre,1
5 | Sport,1
6 | Arts and Music,1
7 | Technology Education,1
8 | Career Exploration,1
9 |
--------------------------------------------------------------------------------
/tests_ce/external_service_tests/datamimic_demo/h-converter/datamimic.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/tests_ce/external_service_tests/datamimic_demo/k-watermark/conf/local.env.properties:
--------------------------------------------------------------------------------
1 | source.db.database=source
2 | source.db.dbms=sqlite
3 |
4 | config.db.database=config
5 | config.db.dbms=sqlite
6 |
7 | target.db.database=target
8 | target.db.dbms=sqlite
9 |
--------------------------------------------------------------------------------
/datamimic_ce/demos/demo-selector/info.toml:
--------------------------------------------------------------------------------
1 | title = "Selector"
2 | description = "Showcases how to use selector in database."
3 | icon = "database"
4 | tags = ["#database", "#selector", "#mongodb", "#SQL"]
5 | projectName = "demo-selector"
6 | id = "demo-selector"
7 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/common/person/givenName_female_BE.csv:
--------------------------------------------------------------------------------
1 | Lieke
2 | Sophie
3 | Julia
4 | Eva
5 | Sanne
6 | Lotte
7 | Anna
8 | Emma
9 | Jasmijn
10 | Anne
11 | Lisa
12 | Isa
13 | Maud
14 | Noa
15 | Femke
16 | Sara
17 | Anouk
18 | Fleur
19 | Iris
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/common/person/title_IT.csv:
--------------------------------------------------------------------------------
1 | Laurea breve,0.2
2 | Laurea Magistrale,0.12
3 | Dottorato di Ricerca,0.07
4 | Ricercatore,0.05
5 | Professore Aggregato,0.04
6 | Professore,0.03
7 | Professore Emerito,0.02
8 | Assegnista di Ricerca,0.02
9 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/ecommerce/product_nouns_home_goods_DE.csv:
--------------------------------------------------------------------------------
1 | product,weight
2 | Küchenmesser,1.0
3 | Kochtopf,0.9
4 | Wasserkocher,0.8
5 | Staubsauger,0.7
6 | Wanddeko-Set,0.6
7 | Bettwäsche,0.8
8 | Handtuchset,0.7
9 | Aroma-Diffuser,0.6
10 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/ecommerce/product_nouns_pet_supplies_DE.csv:
--------------------------------------------------------------------------------
1 | product,weight
2 | Hundenapf,1.0
3 | Katzenklo,0.9
4 | Kratzbaum,0.8
5 | Leckerli-Beutel,0.8
6 | Hundeleine,0.9
7 | Aquariumfilter,0.7
8 | Vogelkäfig,0.6
9 | Kuschelbett,0.7
10 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/finance/credit_card/card_types_DE.csv:
--------------------------------------------------------------------------------
1 | type,prefix,length,cvv_length,weight
2 | VISA,4,16,3,0.35
3 | MASTERCARD,5,16,3,0.35
4 | AMEX,34|37,15,4,0.15
5 | EUROCARD,5,16,3,0.1
6 | MAESTRO,5018|5020|5038|6304|6759|6761|6762|6763,16,3,0.05
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/healthcare/hospital/accreditations_teaching_DE.csv:
--------------------------------------------------------------------------------
1 | Zertifizierte Akademische Lehrkrankenhausstruktur (ÄK),1
2 | DEGUM-Ausbildungszentrum,1
3 | DGCH Ausbildungszertifikat Chirurgie,1
4 | Onkologisches Zentrum mit DKG-Zertifikat,1
5 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/healthcare/hospital/services_community_VN.csv:
--------------------------------------------------------------------------------
1 | Chẩn đoán hình ảnh,1
2 | Dịch vụ xét nghiệm,1
3 | Quầy thuốc bệnh viện,1
4 | Khám ngoại trú,1
5 | Khám bệnh ban đầu,1
6 | Y học gia đình,1
7 | Chương trình chăm sóc sức khỏe cộng đồng,1
8 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/healthcare/hospital/services_long-term_care_VN.csv:
--------------------------------------------------------------------------------
1 | Chăm sóc điều dưỡng chuyên sâu,1
2 | Phục hồi chức năng,1
3 | Chăm sóc bệnh nhân sa sút trí tuệ,1
4 | Chăm sóc giảm nhẹ,1
5 | Chăm sóc cuối đời,1
6 | Chăm sóc ngắn hạn nghỉ ngơi,1
7 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/healthcare/medical/abnormal_flags_VN.csv:
--------------------------------------------------------------------------------
1 | Cao,10
2 | Thấp,10
3 | Cao nguy cấp,5
4 | Thấp nguy cấp,5
5 | Bất thường,8
6 | Ngoài giới hạn,7
7 | Giá trị cảnh báo,3
8 | Biên giới,6
9 | Không kết luận,4
10 | Cần xác nhận lại,5
11 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/healthcare/medical/device_statuses_VN.csv:
--------------------------------------------------------------------------------
1 | Đang hoạt động,200
2 | Tạm ngừng,50
3 | Đang bảo dưỡng,30
4 | Đang sửa chữa,25
5 | Đang hiệu chuẩn,20
6 | Đã thu hồi,15
7 | Chờ lắp đặt,20
8 | Đang vận chuyển,15
9 | Đặt trước,25
10 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/healthcare/medical/usage_purposes_VN.csv:
--------------------------------------------------------------------------------
1 | Chăm sóc bệnh nhân thường quy,1
2 | Can thiệp cấp cứu,1
3 | Khám theo lịch hẹn,1
4 | Buổi đào tạo,1
5 | Thủ thuật chẩn đoán,1
6 | Theo dõi sau phẫu thuật,1
7 | Sàng lọc sức khỏe cộng đồng,1
8 |
--------------------------------------------------------------------------------
/script/format/lint.sh:
--------------------------------------------------------------------------------
1 | #!/bin/sh
2 |
3 | # Print commands and their arguments as they are executed.
4 | # http://linuxcommand.org/lc3_man_pages/seth.html
5 | set -x
6 |
7 | # http://mypy-lang.org/
8 | mypy datamimic_ce
9 |
10 | ruff check datamimic_ce
11 |
--------------------------------------------------------------------------------
/tests_ce/external_service_tests/datamimic_demo/f-simple-python/data/person.ent.csv:
--------------------------------------------------------------------------------
1 | name|age
2 | Alice|23
3 | Bob|{multiply(43,32)}
4 | Hank|{multiply(4,12)}
5 | Frank|{multiply(12,3)}
6 | Linda|{multiply(12,22)}
7 | Ruth|{multiply(12,66)}
8 | Sue|{multiply(12,55)}
9 |
--------------------------------------------------------------------------------
/tests_ce/external_service_tests/datamimic_demo/g-entity/us.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | Running SSNGenerator
4 |
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/tests_ce/external_service_tests/datamimic_demo/k-watermark/conf/environment.env.properties:
--------------------------------------------------------------------------------
1 | source.db.database=source
2 | source.db.dbms=sqlite
3 |
4 | config.db.database=config
5 | config.db.dbms=sqlite
6 |
7 | target.db.database=target
8 | target.db.dbms=sqlite
9 |
--------------------------------------------------------------------------------
/tests_ce/functional_tests/test_generator_functional/uuid_generator_test.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/tests_ce/functional_tests/test_include/include_generate.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/datamimic_ce/demos/demo-watermark/script/source.scr.sql:
--------------------------------------------------------------------------------
1 | DROP TABLE IF EXISTS data;
2 | CREATE TABLE "data"
3 | (
4 | id SERIAL PRIMARY KEY,
5 | no VARCHAR NOT NULL,
6 | name VARCHAR,
7 | company VARCHAR,
8 | date TIMESTAMP NOT NULL
9 | );
10 |
--------------------------------------------------------------------------------
/datamimic_ce/demos/demo-watermark/script/target.scr.sql:
--------------------------------------------------------------------------------
1 | DROP TABLE IF EXISTS data;
2 | CREATE TABLE "data"
3 | (
4 | id SERIAL PRIMARY KEY,
5 | no VARCHAR NOT NULL,
6 | name VARCHAR,
7 | company VARCHAR,
8 | date TIMESTAMP NOT NULL
9 | );
10 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/ecommerce/product_colors_GB.csv:
--------------------------------------------------------------------------------
1 | color,weight
2 | Red,0.11
3 | Blue,0.11
4 | Green,0.1
5 | Yellow,0.07
6 | Black,0.12
7 | White,0.12
8 | Grey,0.09
9 | Navy,0.07
10 | Blush,0.06
11 | Teal,0.05
12 | Charcoal,0.05
13 | Olive,0.05
14 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/ecommerce/product_nouns_food_DE.csv:
--------------------------------------------------------------------------------
1 | product,weight
2 | Vollkornbrot,1.0
3 | Bio-Joghurt,0.9
4 | Schwarzwälder Schinken,0.7
5 | Käseplatte,0.8
6 | Kartoffelsalat,0.7
7 | Maultaschen,0.6
8 | Bratwurst,0.7
9 | Apfelstrudel,0.6
10 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/finance/transaction/transaction_type_modifiers_US.csv:
--------------------------------------------------------------------------------
1 | transaction_type,modifier,weight
2 | Deposit,1.0,15
3 | Withdrawal,1.0,20
4 | Transfer,1.2,10
5 | Payment,1.0,40
6 | Fee,0.5,5
7 | Interest,0.3,2
8 | Refund,1.0,5
9 | Adjustment,0.7,3
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/healthcare/hospital/services_general_VN.csv:
--------------------------------------------------------------------------------
1 | Chẩn đoán hình ảnh,1
2 | Dịch vụ xét nghiệm,1
3 | Quầy thuốc bệnh viện,1
4 | Khám ngoại trú,1
5 | Điều trị nội trú,1
6 | Cấp cứu 24/7,1
7 | Phẫu thuật,1
8 | Chương trình phục hồi chức năng,1
9 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/healthcare/hospital/services_rehabilitation_US.csv:
--------------------------------------------------------------------------------
1 | Inpatient Rehabilitation,1
2 | Outpatient Rehabilitation,1
3 | Cardiac Rehabilitation,1
4 | Pulmonary Rehabilitation,1
5 | Neurological Rehabilitation,1
6 | Orthopedic Rehabilitation,1
7 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/healthcare/hospital/services_teaching_US.csv:
--------------------------------------------------------------------------------
1 | Diagnostic Imaging,1
2 | Laboratory Services,1
3 | Pharmacy Services,1
4 | Outpatient Care,1
5 | Research Programs,1
6 | Residency Programs,1
7 | Fellowship Programs,1
8 | Medical Education,1
9 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/healthcare/medical/chief_complaints_VN.csv:
--------------------------------------------------------------------------------
1 | complaint,weight
2 | Sốt,180
3 | Đau đầu,200
4 | Đau ngực,170
5 | Đau bụng,190
6 | Khó thở,160
7 | Ho kéo dài,150
8 | Chóng mặt,140
9 | Phát ban,120
10 | Đau khớp,130
11 | Mệt mỏi,110
12 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/healthcare/medical/procedure_purposes_preventive_DE.csv:
--------------------------------------------------------------------------------
1 | Krankheiten vorbeugen,1
2 | Risikofaktoren reduzieren,0.9
3 | Gesundheit erhalten,0.9
4 | Komplikationen verhindern,0.8
5 | Wohlbefinden fördern,0.8
6 | frühzeitig screenen,0.9
7 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/healthcare/medical/specimen_types_VN.csv:
--------------------------------------------------------------------------------
1 | specimen_type,weight
2 | Máu toàn phần,200
3 | Huyết thanh,180
4 | Huyết tương,170
5 | Nước tiểu,190
6 | Dịch não tủy,120
7 | Đờm,110
8 | Dịch tiết mũi họng,100
9 | Mẫu mô sinh thiết,90
10 |
--------------------------------------------------------------------------------
/tests_ce/external_service_tests/datamimic_demo/g-entity/product.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | Running EANGenerator
4 |
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/tests_ce/integration_tests/test_source_script/test_source_scripted_in_generate.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/ecommerce/product_colors_FR.csv:
--------------------------------------------------------------------------------
1 | color,weight
2 | Rouge,0.11
3 | Bleu,0.11
4 | Vert,0.1
5 | Jaune,0.07
6 | Noir,0.12
7 | Blanc,0.12
8 | Gris,0.09
9 | Rose,0.07
10 | Violet,0.06
11 | Beige,0.07
12 | Marine,0.05
13 | Bordeaux,0.05
14 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/ecommerce/product_nouns_automotive_DE.csv:
--------------------------------------------------------------------------------
1 | product,weight
2 | Motoröl,1.0
3 | Scheibenreiniger,0.8
4 | Autobatterie,0.7
5 | Reifen-Sommer,0.7
6 | Reifen-Winter,0.7
7 | LED-Scheinwerfer,0.6
8 | Armaturenhalter,0.6
9 | Kindersitz,0.8
10 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/finance/credit_card/card_types_US.csv:
--------------------------------------------------------------------------------
1 | type,prefix,length,cvv_length,weight
2 | VISA,4,16,3,0.4
3 | MASTERCARD,5,16,3,0.3
4 | AMEX,34|37,15,4,0.15
5 | DISCOVER,6011,16,3,0.1
6 | DINERS_CLUB,300|301|302|303|304|305,14,3,0.03
7 | JCB,35,16,3,0.02
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/healthcare/hospital/hospital_types_DE.csv:
--------------------------------------------------------------------------------
1 | Allgemeines Krankenhaus,2
2 | Universitätsklinik,1
3 | Kreiskrankenhaus,2
4 | Fachklinik,1
5 | Rehabilitationsklinik,1
6 | Psychiatric,1
7 | Children's,1
8 | Veterans,1
9 | Long-term Care,1
10 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/healthcare/medical/clinical_trials/intervention_types_VN.csv:
--------------------------------------------------------------------------------
1 | Dùng thuốc,160
2 | Vaccine,120
3 | Can thiệp phẫu thuật,80
4 | Vật lý trị liệu,90
5 | Chương trình giáo dục sức khỏe,70
6 | Chế độ dinh dưỡng điều chỉnh,60
7 | Liệu pháp kết hợp,50
8 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/healthcare/medical/device_types_VN.csv:
--------------------------------------------------------------------------------
1 | Máy thở,80
2 | Máy theo dõi bệnh nhân,120
3 | Máy truyền dịch,150
4 | Máy sốc điện tim,70
5 | Máy điện tâm đồ,90
6 | Máy siêu âm cầm tay,60
7 | Máy chụp X-quang di động,50
8 | Máy xét nghiệm sinh hóa,55
9 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/healthcare/medical/insurance_providers_VN.csv:
--------------------------------------------------------------------------------
1 | Bảo hiểm Y tế Nhà nước,150
2 | Bảo hiểm Bảo Việt,130
3 | Bảo hiểm PVI,110
4 | Prudential HealthCare,90
5 | Manulife Health,80
6 | Bảo hiểm Bảo Minh,70
7 | FWD Care,60
8 | Generali Sức khỏe,50
9 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/healthcare/medical/procedure_actions_general_DE.csv:
--------------------------------------------------------------------------------
1 | Behandlung,1
2 | Therapie,1
3 | Management,0.9
4 | Verabreichung,0.7
5 | Anwendung,0.6
6 | Injektion,0.8
7 | Infusion,0.7
8 | Drainage,0.6
9 | Dilatation,0.5
10 | Manipulation,0.5
11 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/healthcare/medical/procedure_actions_general_US.csv:
--------------------------------------------------------------------------------
1 | Treatment,1
2 | Therapy,1
3 | Management,0.9
4 | Administration,0.7
5 | Application,0.6
6 | Injection,0.8
7 | Infusion,0.7
8 | Drainage,0.6
9 | Dilation,0.5
10 | Manipulation,0.5
11 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/healthcare/medical/test_statuses_DE.csv:
--------------------------------------------------------------------------------
1 | Angefordert,5
2 | Probe entnommen,4
3 | In Bearbeitung,6
4 | Abgeschlossen,10
5 | Berichtet,8
6 | Storniert,2
7 | Abgelehnt,1
8 | In Wartestellung,3
9 | Überprüfung ausstehend,4
10 | Geändert,2
--------------------------------------------------------------------------------
/tests_ce/functional_tests/test_attribute_script/data/company.json:
--------------------------------------------------------------------------------
1 | [
2 | {
3 | "company": {
4 | "departments": [
5 | {
6 | "id": 101
7 | },
8 | {
9 | "id": 102
10 | }
11 | ]
12 | }
13 | }
14 | ]
--------------------------------------------------------------------------------
/tests_ce/integration_tests/extensive_script/custom_script_components/data/person.ent.csv:
--------------------------------------------------------------------------------
1 | name|age
2 | Alice|23
3 | Bob|{multiply(43,32)}
4 | Hank|{multiply(4,12)}
5 | Frank|{multiply(12,3)}
6 | Linda|{multiply(12,22)}
7 | Ruth|{multiply(12,66)}
8 | Sue|{multiply(12,55)}
9 |
--------------------------------------------------------------------------------
/datamimic_ce/demos/demo-watermark/info.toml:
--------------------------------------------------------------------------------
1 | title = "Watermark"
2 | description = "Showcases how to create mark in the database of your last data generation."
3 | icon = "droplet"
4 | tags = ["#database", "#watermark"]
5 | projectName = "demo-watermark"
6 | id = "demo-watermark"
7 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/finance/transaction/categories_DE.csv:
--------------------------------------------------------------------------------
1 | category,weight
2 | Einzelhandel,20
3 | Lebensmittel,18
4 | Gastronomie,15
5 | Unterhaltung,8
6 | Reisen,7
7 | Versorgung,10
8 | Gesundheitswesen,8
9 | Bildung,5
10 | Dienstleistungen,7
11 | Sonstiges,2
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/finance/transaction/transaction_types_US.csv:
--------------------------------------------------------------------------------
1 | transaction_type,weight,direction
2 | Deposit,15,credit
3 | Withdrawal,20,debit
4 | Transfer,10,debit
5 | Payment,40,debit
6 | Fee,5,debit
7 | Interest,2,credit
8 | Refund,5,credit
9 | Adjustment,3,credit
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/groups/coverage_line/coverage_line_VN.csv:
--------------------------------------------------------------------------------
1 | group_id,product_code,weight
2 | coverage_other,NHAN_THO,0.120000
3 | coverage_other,XE_MAY,0.280000
4 | coverage_other,XE_MAY,0.180000
5 | coverage_other,XE_O_TO,0.220000
6 | coverage_other,Y_TE,0.200000
7 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/healthcare/hospital/services_childrens_DE.csv:
--------------------------------------------------------------------------------
1 | Kinder-Notfallversorgung,1
2 | Kinderchirurgie,1
3 | Neonatologische Intensivpflege,1
4 | Pädiatrische Intensivpflege,1
5 | Familien- und Spieltherapie,1
6 | Spezialisierte Pädiatrische Versorgung,1
7 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/healthcare/hospital/services_community_DE.csv:
--------------------------------------------------------------------------------
1 | Diagnostische Bildgebung,1
2 | Labordienstleistungen,1
3 | Apothekenservice,1
4 | Ambulante Versorgung,1
5 | Hausärztliche Versorgung,1
6 | Familienmedizin,1
7 | Gesundheitsprogramme in der Gemeinde,1
8 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/healthcare/hospital/services_rehabilitation_DE.csv:
--------------------------------------------------------------------------------
1 | Stationäre Rehabilitation,1
2 | Ambulante Rehabilitation,1
3 | Kardiologische Rehabilitation,1
4 | Pulmonale Rehabilitation,1
5 | Neurologische Rehabilitation,1
6 | Orthopädische Rehabilitation,1
7 |
--------------------------------------------------------------------------------
/tests_ce/external_service_tests/test_sqlalchemy_extended_conf/script/backup.sql:
--------------------------------------------------------------------------------
1 | DROP TABLE IF EXISTS public.none_as_null;
2 |
3 | CREATE TABLE public.none_as_null (
4 | my_id integer NOT NULL,
5 | data_null jsonb,
6 | data_none jsonb,
7 | data_text text
8 | );
9 |
--------------------------------------------------------------------------------
/tests_ce/integration_tests/consumer_json_minio/test_json_consumer.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/common/person/familyName_VN.csv:
--------------------------------------------------------------------------------
1 | Nguyễn,40000
2 | Trần,15000
3 | Lê,12000
4 | Phạm,8000
5 | Hoàng,7000
6 | Huỳnh,6500
7 | Phan,6000
8 | Vũ,5500
9 | Võ,5000
10 | Đặng,4800
11 | Bùi,4600
12 | Đỗ,4200
13 | Hồ,4000
14 | Ngô,3800
15 | Dương,3600
16 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/finance/transaction/transaction_type_modifiers_DE.csv:
--------------------------------------------------------------------------------
1 | transaction_type,modifier,weight
2 | Einzahlung,1.0,15
3 | Auszahlung,1.0,20
4 | Überweisung,1.2,10
5 | Zahlung,1.0,40
6 | Gebühr,0.5,5
7 | Zinsen,0.3,2
8 | Rückerstattung,1.0,5
9 | Anpassung,0.7,3
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/healthcare/hospital/services_veterans_VN.csv:
--------------------------------------------------------------------------------
1 | Dịch vụ y tế cho cựu chiến binh,1
2 | Điều trị rối loạn stress sau sang chấn,1
3 | Dịch vụ thay thế và lắp ghép chi giả,1
4 | Tư vấn quyền lợi cựu chiến binh,1
5 | Hỗ trợ tái hòa nhập cuộc sống dân sự,1
6 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/healthcare/medical/clinical_trials/statuses_US.csv:
--------------------------------------------------------------------------------
1 | Not yet recruiting, 80
2 | Recruiting, 150
3 | Enrolling by invitation, 70
4 | Active, not recruiting, 120
5 | Suspended, 40
6 | Terminated, 30
7 | Completed, 100
8 | Withdrawn, 20
9 | Unknown status, 10
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/healthcare/medical/procedure_purposes_general_US.csv:
--------------------------------------------------------------------------------
1 | address medical issues,1
2 | improve patient outcomes,0.9
3 | manage symptoms,0.9
4 | treat underlying conditions,0.8
5 | restore health,0.8
6 | improve function,0.8
7 | alleviate discomfort,0.8
8 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/healthcare/medical/procedure_purposes_general_VN.csv:
--------------------------------------------------------------------------------
1 | giải quyết vấn đề y khoa,1
2 | cải thiện kết quả điều trị,0.9
3 | kiểm soát triệu chứng,0.9
4 | điều trị căn nguyên,0.8
5 | phục hồi sức khỏe,0.8
6 | cải thiện chức năng,0.8
7 | giảm khó chịu,0.8
8 |
--------------------------------------------------------------------------------
/tests_ce/external_service_tests/datamimic_demo/demo-db-mapping/1_prepare.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/tests_ce/external_service_tests/datamimic_demo/f-simple-python/datamimic.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/tests_ce/integration_tests/test_array/test_array_invalid_type.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/datamimic_ce/connection_config/__init__.py:
--------------------------------------------------------------------------------
1 | # DATAMIMIC
2 | # Copyright (c) 2023-2025 Rapiddweller Asia Co., Ltd.
3 | # This software is licensed under the MIT License.
4 | # See LICENSE file for the full text of the license.
5 | # For questions and support, contact: info@rapiddweller.com
6 |
--------------------------------------------------------------------------------
/datamimic_ce/demos/demo-database/info.toml:
--------------------------------------------------------------------------------
1 | title = "Basic Database"
2 | description = "Showcases the connection and read/write operations to one or many database(s)."
3 | icon = "database"
4 | tags = ["#database", "#connection"]
5 | projectName = "demo-database"
6 | id = "demo-database"
7 |
--------------------------------------------------------------------------------
/datamimic_ce/demos/demo-healthcare/info.toml:
--------------------------------------------------------------------------------
1 | title = "Demo Healthcare"
2 | description = "Explore available entities and generators."
3 | icon = "generator"
4 | tags = ["#generator", "#datasets", "#domains", "#healthcare"]
5 | projectName = "demo-healthcare"
6 | id = "demo-healthcare"
7 |
--------------------------------------------------------------------------------
/datamimic_ce/demos/demo-model/info.toml:
--------------------------------------------------------------------------------
1 | title = "Basic Model"
2 | description = "Demo showcases data generation with built-in generators as well as custom datasets from files."
3 | icon = "script"
4 | tags = ["#generate", "#datasets"]
5 | projectName = "demo-model"
6 | id = "demo-model"
7 |
--------------------------------------------------------------------------------
/datamimic_ce/demos/demo-mongodb/info.toml:
--------------------------------------------------------------------------------
1 | title = "MongoDB"
2 | description = "Showcases how to handle data in MongoDB (make sure to have a MongoDB environment set up.)"
3 | tags = ["#mongodb", "#nosql", "#query"]
4 | icon = "mongo"
5 | projectName = "demo-mongodb"
6 | id = "demo-mongodb"
7 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/common/organization/sector_VN.csv:
--------------------------------------------------------------------------------
1 | Công nghệ thông tin
2 | Thương mại điện tử
3 | Ngân hàng
4 | Du lịch & Lữ hành
5 | Nông nghiệp công nghệ cao
6 | Sản xuất chế biến
7 | Logistics
8 | Giáo dục trực tuyến
9 | Y tế tư nhân
10 | Năng lượng tái tạo
11 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/common/person/familyName_CA.csv:
--------------------------------------------------------------------------------
1 | Li
2 | Smith
3 | Lam
4 | Martin
5 | Brown
6 | Roy
7 | Tremblay
8 | Lee
9 | Gagnon
10 | Wilson
11 | Clark
12 | Johnson
13 | White
14 | Williams
15 | Côté
16 | Taylor
17 | Campbell
18 | Anderson
19 | Chan
20 | Jones
21 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/common/person/givenName_female_ES.csv:
--------------------------------------------------------------------------------
1 | Lucia
2 | Maria
3 | Paula
4 | Laura
5 | Marta
6 | Alba
7 | Claudia
8 | Carla
9 | Andrea
10 | Sara
11 | Nerea
12 | Irene
13 | Ana
14 | Natalia
15 | Julia
16 | Elena
17 | Carmen
18 | Sofia
19 | Marina
20 | Cristina
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/common/person/givenName_male_IE.csv:
--------------------------------------------------------------------------------
1 | Adam
2 | Matthew
3 | Jack
4 | Ryan
5 | Dylan
6 | James
7 | Joshua
8 | Ben
9 | Daniel
10 | Ethan
11 | Conor
12 | Thomas
13 | Michael
14 | Nathan
15 | Aaron
16 | Luke
17 | Sean
18 | Jamie
19 | David
20 | Cian
21 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/demographics/demographic_components_US.csv:
--------------------------------------------------------------------------------
1 | component_id,dmgrp_profile_id,constraints_json
2 | urban_adult,urban_adult,"{""age"":{""min"":25,""max"":45}}"
3 | chronic_diabetes,diabetes_profile,"{""conditions"": [""E11""],""age"":{""min"":45,""max"":70}}"
4 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/ecommerce/product_nouns_office_supplies_DE.csv:
--------------------------------------------------------------------------------
1 | product,weight
2 | Notizbuch,1.0
3 | Kugelschreiber-Set,0.9
4 | Schreibtischlampe,0.8
5 | Ordner,0.8
6 | Druckerpapier,0.9
7 | Aktenvernichter,0.6
8 | Whiteboard,0.6
9 | Ergonomischer Bürostuhl,0.7
10 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/healthcare/hospital/services_rehabilitation_VN.csv:
--------------------------------------------------------------------------------
1 | Phục hồi chức năng nội trú,1
2 | Phục hồi chức năng ngoại trú,1
3 | Phục hồi chức năng tim mạch,1
4 | Phục hồi chức năng hô hấp,1
5 | Phục hồi chức năng thần kinh,1
6 | Phục hồi chức năng cơ xương khớp,1
7 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/public_sector/education/accreditations_vocational_DE.csv:
--------------------------------------------------------------------------------
1 | IHK-zertifizierte Ausbildungsstätte,1
2 | HWK-Meisterschule Qualitätssiegel,1
3 | AZAV-Zulassung (Arbeitsförderung),1
4 | BIBB Modellprojekt Zertifizierung,1
5 | Fernunterrichtsgesetz-Zulassung,1
6 |
--------------------------------------------------------------------------------
/examples/address/req3_constraints.json:
--------------------------------------------------------------------------------
1 | {
2 | "clock": "2025-01-01T00:00:00Z",
3 | "constraints": {
4 | "postal_code_prefix": "10"
5 | },
6 | "count": 2,
7 | "domain": "address",
8 | "locale": "de_DE",
9 | "seed": "constraints",
10 | "version": "v1"
11 | }
12 |
--------------------------------------------------------------------------------
/tests_ce/external_service_tests/datamimic_demo/g-entity/net.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | Running Domain Generator
4 |
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/tests_ce/external_service_tests/test_demo/demo-selector/info.toml:
--------------------------------------------------------------------------------
1 | title = "Selector"
2 | description = "Showcases how to use selector in database."
3 | icon = "database"
4 | tags = ["#database", "#selector", "#mongodb", "#SQL"]
5 | projectName = "demo-selector"
6 | id = "demo-selector"
7 |
--------------------------------------------------------------------------------
/tests_ce/integration_tests/extensive_script/custom_script_components/datamimic.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/datamimic_ce/demos/demo-masking/info.toml:
--------------------------------------------------------------------------------
1 | title = "Basic Masking"
2 | description = "Obfuscation from different data sources (e.g. database| csv). Built-in generators and converters."
3 | icon = "mask"
4 | tags = ["#mask", "#iterate"]
5 | projectName = "demo-masking"
6 | id = "demo-masking"
7 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/common/person/givenName_female_CN.csv:
--------------------------------------------------------------------------------
1 | 爱,,Ai
2 | 宝,,Bao
3 | 碧,,Bi
4 | 彩,,Cai
5 | 婵,,Chan
6 | 翠,,Cui
7 | 黛,,Dai
8 | 丹,,Dan
9 | 娥,,E
10 | 芳,,Fang
11 | 凤,,Feng
12 | 红,,Hong
13 | 花,,Hua
14 | 环,,Huan
15 | 惠,,Hui
16 | 娇,,Jiao
17 | 菊,,Ju
18 | 娟,,Juan
19 | 兰,,Lan
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/common/person/givenName_female_IE.csv:
--------------------------------------------------------------------------------
1 | Chloe
2 | Lauren
3 | Caitlin
4 | Megan
5 | Emma
6 | Amy
7 | Katie
8 | Hannah
9 | Rebecca
10 | Niamh
11 | Rachel
12 | Sarah
13 | Sophie
14 | Jessica
15 | Leah
16 | Ellie
17 | Anna
18 | Lucy
19 | Erin
20 | Ciara
21 | Ella
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/common/person/givenName_female_VN.csv:
--------------------------------------------------------------------------------
1 | Linh,13000
2 | Trang,12000
3 | Mai,11000
4 | Thảo,10500
5 | Lan,10000
6 | Ngọc,9500
7 | Phương,9000
8 | Hạnh,8500
9 | Vy,8200
10 | Anh,8000
11 | Quỳnh,7800
12 | Yến,7600
13 | Hà,7400
14 | Chi,7200
15 | Giang,7000
16 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/common/person/givenName_male_ES.csv:
--------------------------------------------------------------------------------
1 | Alejandro
2 | Daniel
3 | Pablo
4 | David
5 | Adrian
6 | Javier
7 | Alvaro
8 | Sergio
9 | Carlos
10 | Marcos
11 | Ivan
12 | Hugo
13 | Diego
14 | Jorge
15 | Miguel
16 | Manuel
17 | Mario
18 | Raul
19 | Antonio
20 | Ruben
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/common/person/givenName_male_VN.csv:
--------------------------------------------------------------------------------
1 | Anh,12000
2 | Minh,11000
3 | Huy,10000
4 | Nam,9500
5 | Quang,9200
6 | Long,9000
7 | Khoa,8500
8 | Phúc,8200
9 | Tùng,7800
10 | Tuấn,7600
11 | Đạt,7200
12 | Khôi,7000
13 | Dũng,6800
14 | Hiếu,6500
15 | Trọng,6200
16 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/ecommerce/product_colors_ES.csv:
--------------------------------------------------------------------------------
1 | color,weight
2 | Rojo,0.11
3 | Azul,0.11
4 | Verde,0.1
5 | Amarillo,0.07
6 | Negro,0.12
7 | Blanco,0.12
8 | Gris,0.09
9 | Rosa,0.07
10 | Morado,0.06
11 | Beige,0.07
12 | Marino,0.05
13 | Burdeos,0.05
14 | Terracota,0.05
15 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/ecommerce/product_nouns_beauty_DE.csv:
--------------------------------------------------------------------------------
1 | product,weight
2 | Lippenstift,1.0
3 | Make-up-Foundation,0.9
4 | Mascara,0.9
5 | Eyeliner,0.8
6 | Rouge,0.7
7 | Concealer,0.8
8 | Gesichtscreme,0.8
9 | Feuchtigkeitslotion,0.8
10 | Sonnenschutz,0.7
11 | Serum,0.7
12 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/ecommerce/product_nouns_health_DE.csv:
--------------------------------------------------------------------------------
1 | product,weight
2 | Vitaminpräparat,1.0
3 | Blutdruckmessgerät,0.8
4 | Inhalator,0.7
5 | Orthopädisches Kissen,0.7
6 | Desinfektionsmittel,0.9
7 | Fieberthermometer,0.8
8 | Massagegerät,0.7
9 | Erste-Hilfe-Set,0.8
10 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/finance/transaction/transaction_types_DE.csv:
--------------------------------------------------------------------------------
1 | transaction_type,weight,direction
2 | Einzahlung,15,credit
3 | Auszahlung,20,debit
4 | Überweisung,15,debit
5 | Zahlung,35,debit
6 | Gebühr,5,debit
7 | Zinsen,2,credit
8 | Rückerstattung,5,credit
9 | Anpassung,3,credit
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/healthcare/hospital/services_general_DE.csv:
--------------------------------------------------------------------------------
1 | Diagnostische Bildgebung,1
2 | Labordienstleistungen,1
3 | Apothekenservice,1
4 | Ambulante Versorgung,1
5 | Stationäre Versorgung,1
6 | Notfallversorgung,1
7 | Chirurgische Eingriffe,1
8 | Rehabilitationsangebote,1
9 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/healthcare/hospital/services_teaching_DE.csv:
--------------------------------------------------------------------------------
1 | Diagnostische Bildgebung,1
2 | Labordienstleistungen,1
3 | Apothekenservice,1
4 | Ambulante Versorgung,1
5 | Forschungsprogramme,1
6 | Weiterbildungsprogramme,1
7 | Facharztprogramme,1
8 | Medizinische Ausbildung,1
9 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/healthcare/medical/procedure_locations_VN.csv:
--------------------------------------------------------------------------------
1 | Tim,1
2 | Vành,1
3 | Động mạch chủ,0.8
4 | Tĩnh mạch,0.7
5 | Động mạch,0.9
6 | Phổi,0.9
7 | Gan,0.6
8 | Dạ dày,0.6
9 | Ruột,0.6
10 | Sọ não,0.5
11 | Cột sống,0.7
12 | Ngực,0.6
13 | Bụng,0.7
14 | Chậu,0.6
15 |
--------------------------------------------------------------------------------
/tests_ce/external_service_tests/datamimic_demo/a-simple-script/datamimic.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/tests_ce/external_service_tests/datamimic_demo/k-watermark/script/source.scr.sql:
--------------------------------------------------------------------------------
1 | DROP TABLE IF EXISTS data;
2 | CREATE TABLE "data"
3 | (
4 | id SERIAL PRIMARY KEY,
5 | no VARCHAR NOT NULL,
6 | name VARCHAR,
7 | company VARCHAR,
8 | date TIMESTAMP NOT NULL
9 | );
10 |
--------------------------------------------------------------------------------
/tests_ce/external_service_tests/datamimic_demo/k-watermark/script/target.scr.sql:
--------------------------------------------------------------------------------
1 | DROP TABLE IF EXISTS data;
2 | CREATE TABLE "data"
3 | (
4 | id SERIAL PRIMARY KEY,
5 | no VARCHAR NOT NULL,
6 | name VARCHAR,
7 | company VARCHAR,
8 | date TIMESTAMP NOT NULL
9 | );
10 |
--------------------------------------------------------------------------------
/tests_ce/integration_tests/test_demographics/DE/2023Q4/condition_rates.dmgrp.csv:
--------------------------------------------------------------------------------
1 | dataset,version,condition,sex,age_min,age_max,prevalence
2 | DE,2023Q4,Diabetes,F,65,100,0.19
3 | DE,2023Q4,Diabetes,M,65,100,0.22
4 | DE,2023Q4,Hypertension,,40,64,0.27
5 | DE,2023Q4,Hypertension,,65,100,0.48
6 |
--------------------------------------------------------------------------------
/tests_ce/integration_tests/test_if/data/products.ent.csv:
--------------------------------------------------------------------------------
1 | ean_code,name,category_id,price,manufacturer,gender
2 | 8000353006386,Limoncello Liqueur,DRNK/ALCO,9.85,Luxardo,male
3 | 3068320018430,Evian 1.0 l,FOOD/CONF,1.95,Danone,female
4 | 8076800000085,le Lasagnette,FOOD/MISC,0.89,Barilla,unisex
5 |
--------------------------------------------------------------------------------
/tests_ce/unit_tests/tests_demographics/data/condition_rates.dmgrp.csv:
--------------------------------------------------------------------------------
1 | dataset,version,condition,sex,age_min,age_max,prevalence
2 | TEST,v1,Asthma,,0,17,0.1
3 | TEST,v1,Asthma,,18,80,0.05
4 | TEST,v1,Diabetes,F,36,80,0.15
5 | TEST,v1,Diabetes,M,36,80,0.12
6 | TEST,v1,Hypertension,,36,80,0.3
7 |
--------------------------------------------------------------------------------
/datamimic_ce/demos/overview-converter/info.toml:
--------------------------------------------------------------------------------
1 | title = "Converter Overview"
2 | description = "Explore the different types of converters available in the system."
3 | icon = "convert"
4 | tags = ["#converter", "#replacement"]
5 | projectName = "overview-converter"
6 | id = "overview-converter"
7 |
--------------------------------------------------------------------------------
/datamimic_ce/demos/overview-generator/info.toml:
--------------------------------------------------------------------------------
1 | title = "Generator Overview"
2 | description = "Explore available entities and generators."
3 | icon = "generator"
4 | tags = ["#generator", "#datasets", "#domains", "#ecommerce"]
5 | projectName = "overview-generator"
6 | id = "overview-generator"
7 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/healthcare/medical/abnormal_flags_DE.csv:
--------------------------------------------------------------------------------
1 | Erhöht,10
2 | Erniedrigt,10
3 | Kritisch erhöht,5
4 | Kritisch erniedrigt,5
5 | Auffällig,8
6 | Außerhalb des Referenzbereichs,7
7 | Alarmwert,3
8 | Grenzwertig,6
9 | Nicht eindeutig,4
10 | Bestätigung erforderlich,5
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/healthcare/medical/procedure_anesthesia_notes_DE.csv:
--------------------------------------------------------------------------------
1 | Der Eingriff erfordert Anästhesie.,1
2 | Während des Eingriffs wird Anästhesie verabreicht.,1
3 | Dieser Eingriff wird in Anästhesie durchgeführt.,1
4 | Für den Patientenkomfort ist Anästhesie erforderlich.,1
5 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/finance/transaction/transaction_type_modifiers_VN.csv:
--------------------------------------------------------------------------------
1 | transaction_type,modifier,weight
2 | Nạp tiền,1.0,15
3 | Rút tiền,1.0,20
4 | Chuyển khoản,1.1,10
5 | Thanh toán,1.0,40
6 | Phí dịch vụ,0.5,5
7 | Lãi tiết kiệm,0.3,2
8 | Hoàn tiền,1.0,5
9 | Điều chỉnh,0.7,3
10 |
--------------------------------------------------------------------------------
/tests_ce/external_service_tests/test_rdbms/data/products.ent.csv:
--------------------------------------------------------------------------------
1 | ean_code,name,category_id,price,manufacturer,gender
2 | 8000353006386,Limoncello Liqueur,DRNK/ALCO,9.85,Luxardo,male
3 | 3068320018430,Evian 1.0 l,FOOD/CONF,1.95,Danone,female
4 | 8076800000085,le Lasagnette,FOOD/MISC,0.89,Barilla,unisex
5 |
--------------------------------------------------------------------------------
/tests_ce/functional_tests/csv_separatorr/data/products.ent.csv:
--------------------------------------------------------------------------------
1 | ean_code,name,category_id,price,manufacturer,gender
2 | 8000353006386,Limoncello Liqueur,DRNK/ALCO,9.85,Luxardo,male
3 | 3068320018430,Evian 1.0 l,FOOD/CONF,1.95,Danone,female
4 | 8076800000085,le Lasagnette,FOOD/MISC,0.89,Barilla,unisex
5 |
--------------------------------------------------------------------------------
/tests_ce/functional_tests/csv_separatorr/data/products_2.ent.csv:
--------------------------------------------------------------------------------
1 | ean_code|name|category_id|price|manufacturer|gender
2 | 8000353006386|Limoncello Liqueur|DRNK/ALCO|9.85|Luxardo|male
3 | 3068320018430|Evian 1.0 l|FOOD/CONF|1.95|Danone|female
4 | 8076800000085|le Lasagnette|FOOD/MISC|0.89|Barilla|unisex
5 |
--------------------------------------------------------------------------------
/tests_ce/functional_tests/test_file_exporter/data/products.ent.csv:
--------------------------------------------------------------------------------
1 | ean_code,name,category_id,price,manufacturer,gender
2 | 8000353006386,Limoncello Liqueur,DRNK/ALCO,9.85,Luxardo,male
3 | 3068320018430,Evian 1.0 l,FOOD/CONF,1.95,Danone,female
4 | 8076800000085,le Lasagnette,FOOD/MISC,0.89,Barilla,unisex
5 |
--------------------------------------------------------------------------------
/tests_ce/integration_tests/data_iteration/data/products.ent.csv:
--------------------------------------------------------------------------------
1 | ean_code,name,category_id,price,manufacturer,gender
2 | 8000353006386,Limoncello Liqueur,DRNK/ALCO,9.85,Luxardo,male
3 | 3068320018430,Evian 1.0 l,FOOD/CONF,1.95,Danone,female
4 | 8076800000085,le Lasagnette,FOOD/MISC,0.89,Barilla,unisex
5 |
--------------------------------------------------------------------------------
/tests_ce/integration_tests/test_exporters/data/products.ent.csv:
--------------------------------------------------------------------------------
1 | ean_code,name,category_id,price,manufacturer,gender
2 | 8000353006386,Limoncello Liqueur,DRNK/ALCO,9.85,Luxardo,male
3 | 3068320018430,Evian 1.0 l,FOOD/CONF,1.95,Danone,female
4 | 8076800000085,le Lasagnette,FOOD/MISC,0.89,Barilla,unisex
5 |
--------------------------------------------------------------------------------
/tests_ce/integration_tests/test_page_process/data/products.ent.csv:
--------------------------------------------------------------------------------
1 | ean_code,name,category_id,price,manufacturer,gender
2 | 8000353006386,Limoncello Liqueur,DRNK/ALCO,9.85,Luxardo,male
3 | 3068320018430,Evian 1.0 l,FOOD/CONF,1.95,Danone,female
4 | 8076800000085,le Lasagnette,FOOD/MISC,0.89,Barilla,unisex
5 |
--------------------------------------------------------------------------------
/tests_ce/unit_tests/test_connection_config/__init__.py:
--------------------------------------------------------------------------------
1 | # DATAMIMIC
2 | # Copyright (c) 2023-2025 Rapiddweller Asia Co., Ltd.
3 | # This software is licensed under the MIT License.
4 | # See LICENSE file for the full text of the license.
5 | # For questions and support, contact: info@rapiddweller.com
6 |
--------------------------------------------------------------------------------
/tests_ce/unit_tests/test_exporter/__init__.py:
--------------------------------------------------------------------------------
1 | # DATAMIMIC
2 | # Copyright (c) 2023-2025 Rapiddweller Asia Co., Ltd.
3 | # This software is licensed under the MIT License.
4 | # See LICENSE file for the full text of the license.
5 | # For questions and support, contact: info@rapiddweller.com
6 |
7 |
8 |
--------------------------------------------------------------------------------
/MANIFEST.in:
--------------------------------------------------------------------------------
1 | global-exclude *.py[cod]
2 | global-exclude __pycache__
3 | global-exclude *.so
4 | global-exclude .git*
5 | global-exclude .DS_Store
6 |
7 | # Exclude all test directories and files
8 | recursive-exclude * tests_ce
9 |
10 | # Exclude specific test-related directories
11 | prune tests_ce
--------------------------------------------------------------------------------
/datamimic_ce/demos/demo-postprocess/info.toml:
--------------------------------------------------------------------------------
1 | title = "Basic Postprocess"
2 | description = "Showcases the postprocessing of entities with datamimic converters or handy inline scripts."
3 | icon = "table"
4 | tags = ["#converter", "#script"]
5 | projectName = "demo-postprocess"
6 | id = "demo-postprocess"
7 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/ecommerce/order/coupon_prefixes_ES.csv:
--------------------------------------------------------------------------------
1 | AHORRA
2 | ENVIOGRATIS
3 | FLASHES
4 | REGALOES
5 | REBAJAS
6 | BIENVENIDA
7 | CUPONAZO
8 | VIPES
9 | SEMANA
10 | OUTLET
11 | ULTIMAS
12 | FAMILIA
13 | PLANAMIGO
14 | VERANO
15 | NAVIDAD
16 | SINIVA
17 | TRIENVIO
18 | NOCHES
19 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/healthcare/hospital/services_teaching_VN.csv:
--------------------------------------------------------------------------------
1 | Chẩn đoán hình ảnh,1
2 | Dịch vụ xét nghiệm,1
3 | Quầy thuốc bệnh viện,1
4 | Khám ngoại trú,1
5 | Chương trình nghiên cứu,1
6 | Chương trình đào tạo bác sĩ nội trú,1
7 | Chương trình đào tạo chuyên khoa sâu,1
8 | Đào tạo y khoa,1
9 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/healthcare/medical/clinical_trials/statuses_DE.csv:
--------------------------------------------------------------------------------
1 | Noch nicht rekrutierend, 80
2 | Rekrutierend, 150
3 | Rekrutierung auf Einladung, 70
4 | Aktiv, keine Rekrutierung, 120
5 | Ausgesetzt, 40
6 | Abgebrochen, 30
7 | Abgeschlossen, 100
8 | Zurückgezogen, 20
9 | Status unbekannt, 10
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/healthcare/medical/procedure_anesthesia_notes_US.csv:
--------------------------------------------------------------------------------
1 | The procedure requires anesthesia.,1
2 | Anesthesia is administered during this procedure.,1
3 | This procedure is performed under anesthesia.,1
4 | Anesthesia is required for patient comfort during this procedure.,1
5 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/healthcare/medical/procedure_purposes_general_DE.csv:
--------------------------------------------------------------------------------
1 | medizinische Probleme angehen,1
2 | Patientenergebnisse verbessern,0.9
3 | Symptome managen,0.9
4 | Grunderkrankungen behandeln,0.8
5 | Gesundheit wiederherstellen,0.8
6 | Funktion verbessern,0.8
7 | Beschwerden lindern,0.8
8 |
--------------------------------------------------------------------------------
/tests_ce/external_service_tests/datamimic_demo/gewerbeverordnung-xml/data/veranstaltungstyp_row_data.ent.csv:
--------------------------------------------------------------------------------
1 | Code|Beschreibung
2 | 01|Messe oder Ausstellung
3 | 02|Markt
4 | 03|Öffentliche Veranstaltung
5 | 04|Großveranstaltung
6 | 05|Sportfest oder Sportveranstaltungen
7 | 06|Großdemonstration
8 | 07|Sonstige
--------------------------------------------------------------------------------
/tests_ce/functional_tests/test_datetime/functional_test_date_empty_in_format.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/tests_ce/functional_tests/test_datetime/functional_test_date_invalid_input_1.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/tests_ce/functional_tests/test_datetime/functional_test_date_invalid_input_2.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/tests_ce/integration_tests/generator_test/stateful_generator_pagination.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/ecommerce/order/coupon_prefixes_GB.csv:
--------------------------------------------------------------------------------
1 | SAVEUK
2 | PROMO
3 | OFFER
4 | MEGADEAL
5 | FREESHIP
6 | WELCOME
7 | LOYALTY
8 | BUNDLE
9 | FLASHUK
10 | PAYDAY
11 | STUDENT
12 | ANNIVERSARY
13 | GREENDEL
14 | NEXTDAY
15 | CLEARANCE
16 | BOXINGDAY
17 | SPRINGSALE
18 | SUMMERFUN
19 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/finance/transaction/transaction_types_VN.csv:
--------------------------------------------------------------------------------
1 | transaction_type,weight,direction
2 | Nạp tiền,15,credit
3 | Rút tiền,20,debit
4 | Chuyển khoản,20,debit
5 | Thanh toán,30,debit
6 | Phí dịch vụ,5,debit
7 | Lãi tiết kiệm,3,credit
8 | Hoàn tiền,5,credit
9 | Điều chỉnh,2,credit
10 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/healthcare/medical/clinical_trials/intervention_types_US.csv:
--------------------------------------------------------------------------------
1 | Drug, 200
2 | Device, 120
3 | Biological, 100
4 | Procedure, 90
5 | Radiation, 70
6 | Behavioral, 80
7 | Genetic, 60
8 | Dietary Supplement, 50
9 | Diagnostic Test, 40
10 | Combination Product, 30
11 | Other, 20
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/healthcare/medical/clinical_trials/statuses_VN.csv:
--------------------------------------------------------------------------------
1 | Chưa tuyển chọn,80
2 | Đang tuyển người tham gia,150
3 | Mời tham gia theo thư mời,70
4 | Đang theo dõi (không tuyển thêm),120
5 | Tạm dừng,40
6 | Ngừng sớm,30
7 | Hoàn thành,100
8 | Rút lui,20
9 | Không rõ trạng thái,10
10 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/public_sector/administration/name_patterns_VN.csv:
--------------------------------------------------------------------------------
1 | {jurisdiction} Cơ quan Chính phủ,1.0
2 | {jurisdiction} Dịch vụ Hành chính,0.9
3 | Trung tâm Hành chính {jurisdiction},0.8
4 | Sở {office_type} - {city},0.7
5 | {state} Phòng {office_type},0.6
6 | {city} Văn phòng {office_type},0.5
7 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/public_sector/education/accreditations_k12_DE.csv:
--------------------------------------------------------------------------------
1 | Zertifikat „Gute gesunde Schule“ (Länder),1
2 | Bundeswettbewerb „MINT-freundliche Schule“,1
3 | Deutsches Schulportal Qualitätssiegel,1
4 | Exzellente Digitale Schule (Bitkom),1
5 | International Baccalaureate (IB) World School,1
6 |
--------------------------------------------------------------------------------
/tests_ce/external_service_tests/test_demo/demo-mongodb/info.toml:
--------------------------------------------------------------------------------
1 | title = "MongoDB"
2 | description = "Showcases how to handle data in MongoDB (make sure to have a MongoDB environment set up.)"
3 | tags = ["#mongodb", "#nosql", "#query"]
4 | icon = "mongo"
5 | projectName = "demo-mongodb"
6 | id = "demo-mongodb"
7 |
--------------------------------------------------------------------------------
/Makefile:
--------------------------------------------------------------------------------
1 | .PHONY: test coverage typecheck lint
2 |
3 | test:
4 | pytest -q
5 |
6 | coverage:
7 | coverage run -m pytest tests/mcp
8 | coverage report --include="datamimic_ce/mcp/*" --fail-under=90
9 |
10 | typecheck:
11 | mypy --strict datamimic_ce/mcp
12 |
13 | lint:
14 | pylint datamimic_ce/mcp
15 |
--------------------------------------------------------------------------------
/datamimic_ce/demos/demo-condition/info.toml:
--------------------------------------------------------------------------------
1 | title = "Condition Demo"
2 | description = "Showcases how to use condition tag with if, else-if, else; and condition attribute of key, nestedKey"
3 | icon = "json"
4 | tags = ["#condtion", "#if", "#else-if", "#else",]
5 | projectName = "demo-condition"
6 | id = "demo-condition"
--------------------------------------------------------------------------------
/datamimic_ce/demos/demo-ecommerce/info.toml:
--------------------------------------------------------------------------------
1 | title = "Demo E-commerce"
2 | description = "Showcase of e-commerce data generation including products, customers, and orders."
3 | icon = "store"
4 | tags = ["#generator", "#datasets", "#domains", "#ecommerce"]
5 | projectName = "demo-ecommerce"
6 | id = "demo-ecommerce"
7 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/ecommerce/currencies_US.csv:
--------------------------------------------------------------------------------
1 | code,name,weight,symbol
2 | USD,US Dollar,1.0,$
3 | CAD,Canadian Dollar,0.1,C$
4 | MXN,Mexican Peso,0.05,Mex$
5 | EUR,Euro,0.3,€
6 | GBP,British Pound,0.2,£
7 | JPY,Japanese Yen,0.2,¥
8 | AUD,Australian Dollar,0.1,A$
9 | CHF,Swiss Franc,0.1,CHF
10 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/healthcare/medical/procedure_locations_DE.csv:
--------------------------------------------------------------------------------
1 | Kardiak,1
2 | Koronar,1
3 | Aortal,0.8
4 | Venös,0.7
5 | Arteriell,0.9
6 | Pulmonal,0.9
7 | Hepatisch,0.6
8 | Gastrisch,0.6
9 | Intestinal,0.6
10 | Schädel,0.5
11 | Spinal,0.7
12 | Thorakal,0.6
13 | Abdominell,0.7
14 | Becken,0.6
15 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/healthcare/medical/procedure_locations_US.csv:
--------------------------------------------------------------------------------
1 | Cardiac,1
2 | Coronary,1
3 | Aortic,0.8
4 | Venous,0.7
5 | Arterial,0.9
6 | Pulmonary,0.9
7 | Hepatic,0.6
8 | Gastric,0.6
9 | Intestinal,0.6
10 | Cranial,0.5
11 | Spinal,0.7
12 | Thoracic,0.6
13 | Abdominal,0.7
14 | Pelvic,0.6
15 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/public_sector/administration/name_patterns_DE.csv:
--------------------------------------------------------------------------------
1 | {jurisdiction} Regierungsamt,1.0
2 | {jurisdiction} Verwaltungsdienst,0.9
3 | {jurisdiction} Verwaltungszentrum,0.8
4 | Abteilung für {office_type} - {city},0.7
5 | {state} {office_type} Abteilung,0.6
6 | {city} {office_type} Amt,0.5
7 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/public_sector/administration/roles_DE.csv:
--------------------------------------------------------------------------------
1 | Direktor,1.0
2 | Stellvertretender Direktor,0.9
3 | Stabschef,0.8
4 | Verwaltungsleiter,0.7
5 | Leiter Öffentlichkeitsarbeit,0.6
6 | Finanzleiter,0.6
7 | Betriebsleiter,0.6
8 | Personalleiter,0.5
9 | Justiziar,0.5
10 | IT-Leiter,0.5
11 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/public_sector/education/programs_middle_school_DE.csv:
--------------------------------------------------------------------------------
1 | Deutsch,1
2 | Mathematik,1
3 | Naturwissenschaften,1
4 | Gesellschaftslehre,1
5 | Sport,1
6 | Foreign Languages,1
7 | Technology Education,1
8 | Visual and Performing Arts,1
9 | Health Education,1
10 | Career Exploration,1
11 |
--------------------------------------------------------------------------------
/tests_ce/functional_tests/test_datetime/functional_test_date_invalid_in_format.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/datamimic_ce/constants/convention_constants.py:
--------------------------------------------------------------------------------
1 | # DATAMIMIC
2 | # Copyright (c) 2023-2025 Rapiddweller Asia Co., Ltd.
3 | # This software is licensed under the MIT License.
4 | # See LICENSE file for the full text of the license.
5 | # For questions and support, contact: info@rapiddweller.com
6 |
7 | NAME_SEPARATOR = "|"
8 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/common/person/title_DE.csv:
--------------------------------------------------------------------------------
1 | Bachelor,0.2
2 | Master,0.12
3 | Dr.,0.08
4 | Postdoktorand,0.02
5 | Juniorprofessor,0.03
6 | Wissenschaftlicher Mitarbeiter,0.025
7 | Außerplanmäßiger Professor,0.015
8 | Universitätsprofessor,0.01
9 | Hochschulprofessor,0.005
10 | Professor Emeritus,0.003
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/ecommerce/order/coupon_prefixes_FR.csv:
--------------------------------------------------------------------------------
1 | BONPLAN
2 | REDUC
3 | VENTEFLASH
4 | CADEAU
5 | FRAISPORT
6 | BIENVENUE
7 | FRENCHDAYS
8 | PRIVILEGE
9 | LIVRAISON
10 | ECOLO
11 | FIDELITE
12 | BOUTIQUE
13 | RENTREE
14 | NOELMAGIE
15 | BLACKFR
16 | FAMILLE
17 | WEEKEND
18 | ANNIVERSAIRE
19 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/groups/area_code_cluster/area_code_cluster_VN.csv:
--------------------------------------------------------------------------------
1 | group_id,area_code,weight
2 | area_225,225,0.125000
3 | area_234,234,0.125000
4 | area_236,236,0.125000
5 | area_24,24,0.125000
6 | area_258,258,0.125000
7 | area_274,274,0.125000
8 | area_28,28,0.125000
9 | area_292,292,0.125000
10 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/healthcare/hospital/accreditations_teaching_US.csv:
--------------------------------------------------------------------------------
1 | Accreditation Council for Graduate Medical Education (ACGME),1
2 | Liaison Committee on Medical Education (LCME),1
3 | American College of Surgeons Commission on Cancer (CoC),1
4 | National Accreditation Program for Breast Centers (NAPBC),1
5 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/healthcare/hospital/accreditations_teaching_VN.csv:
--------------------------------------------------------------------------------
1 | Chứng nhận bệnh viện thực hành của các trường Y Việt Nam,1
2 | Chương trình đào tạo bác sĩ nội trú được Bộ Y tế phê duyệt,1
3 | Chứng nhận Trung tâm đào tạo phẫu thuật chuyên sâu,1
4 | Chứng nhận chương trình nghiên cứu y học ứng dụng,1
5 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/healthcare/medical/locations_VN.csv:
--------------------------------------------------------------------------------
1 | Khoa Cấp cứu,150
2 | Phòng mổ,130
3 | Khoa Hồi sức tích cực,140
4 | Khoa Tim mạch,100
5 | Khoa Chẩn đoán hình ảnh,120
6 | Khoa Nhi,110
7 | Phòng khám ngoại trú,115
8 | Phòng Xét nghiệm,105
9 | Khoa Thận - Tiết niệu,90
10 | Khoa Nội tổng quát,125
11 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/healthcare/medical/procedure_purposes_surgical_VN.csv:
--------------------------------------------------------------------------------
1 | điều trị bệnh lý,1
2 | loại bỏ mô bệnh,0.9
3 | sửa chữa cấu trúc bị tổn thương,0.9
4 | khôi phục chức năng,0.9
5 | giảm triệu chứng,0.8
6 | sửa bất thường giải phẫu,0.7
7 | cải thiện chất lượng cuộc sống,0.7
8 | ngăn ngừa biến chứng,0.8
9 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/public_sector/administration/roles_US.csv:
--------------------------------------------------------------------------------
1 | Director,1.0
2 | Deputy Director,0.9
3 | Chief of Staff,0.8
4 | Administrative Officer,0.7
5 | Public Affairs Manager,0.6
6 | Finance Manager,0.6
7 | Operations Manager,0.6
8 | HR Director,0.5
9 | Legal Counsel,0.5
10 | IT Director,0.5
11 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/public_sector/education/facilities_vocational_DE.csv:
--------------------------------------------------------------------------------
1 | Werkstätten,1
2 | Ausbildungslabore,1
3 | Simulationszentren,1
4 | Kfz-Werkstatt,1
5 | Lehrküche,1
6 | Construction Workshop,1
7 | Healthcare Simulation Lab,1
8 | Welding Shop,1
9 | Electrical Lab,1
10 | IT Training Center,1
11 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/public_sector/education/programs_middle_school_US.csv:
--------------------------------------------------------------------------------
1 | Language Arts,1
2 | Mathematics,1
3 | Science,1
4 | Social Studies,1
5 | Physical Education,1
6 | Foreign Languages,1
7 | Technology Education,1
8 | Visual and Performing Arts,1
9 | Health Education,1
10 | Career Exploration,1
11 |
--------------------------------------------------------------------------------
/tests_ce/external_service_tests/integration_data_source_cyclic/data/products.ent.csv:
--------------------------------------------------------------------------------
1 | ean_code,name,category_id,price,manufacturer,gender
2 | 8000353006386,Limoncello Liqueur,DRNK/ALCO,9.85,Luxardo,male
3 | 3068320018430,Evian 1.0 l,FOOD/CONF,1.95,Danone,female
4 | 8076800000085,le Lasagnette,FOOD/MISC,0.89,Barilla,unisex
5 |
--------------------------------------------------------------------------------
/tests_ce/integration_tests/consumer_csv/test_csv_consumer.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/tests_ce/integration_tests/consumer_log_consumer/test_log_consumer.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/tests_ce/integration_tests/consumer_txt/test_txt_consumer.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/datamimic_ce/demos/demo-db-mapping/info.toml:
--------------------------------------------------------------------------------
1 | title = "DB Mapping Demo"
2 | description = "Showcases how to apply complex mappings based on a database table with differen selector and filters."
3 | icon = "mapping"
4 | tags = ["#datamimic", "#mapping", "#database"]
5 | projectName = "demo-db-mapping"
6 | id = "demo-db-mapping"
7 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/common/country_ES.csv:
--------------------------------------------------------------------------------
1 | ES,es_ES,34,6[0-9],España,47500000,comunidad autónoma,provincia,municipio
2 | AD,ca_AD,376,6[0-9],Andorra,79000,parròquia,,parròquia
3 | GI,en_GI,350,5[6-9][0-9],Gibraltar,33700,district,,town
4 | EA,es_EA,34,6[0-9],Ceuta y Melilla,170000,ciudad autónoma,barriada,barrio
5 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/common/person/familyName_BE.csv:
--------------------------------------------------------------------------------
1 | Peeters,32657
2 | Janssens,30296
3 | Maes,25524
4 | Jacobs,19999
5 | Mertens,18518
6 | Willems,18498
7 | Claes,16553
8 | Goossens,15883
9 | Wouters,15732
10 | De Smet,14259
11 | Dubois,12975
12 | Lambert,11802
13 | Dupont,10369
14 | Martin,9008
15 | Simon,7774
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/ecommerce/product_categories_VN.csv:
--------------------------------------------------------------------------------
1 | category,weight
2 | Điện tử,0.22
3 | Thời trang,0.18
4 | Gia dụng,0.16
5 | Làm đẹp & Chăm sóc cá nhân,0.12
6 | Mẹ và Bé,0.08
7 | Thực phẩm & Đồ uống,0.07
8 | Thể thao & Dã ngoại,0.06
9 | Văn phòng phẩm,0.05
10 | Sách & Văn hóa,0.04
11 | Nội thất,0.02
12 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/healthcare/hospital/departments_specialty_DE.csv:
--------------------------------------------------------------------------------
1 | Notaufnahme,1
2 | Radiologie,1
3 | Labor,1
4 | Krankenhausapotheke,1
5 | Verwaltung,1
6 | Kardiologie,1
7 | Neurologie,1
8 | Orthopädie,1
9 | Onkologie,1
10 | Pädiatrie,1
11 | Frauenheilkunde,1
12 | Psychosomatik,1
13 | Rehabilitation,1
14 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/healthcare/hospital/departments_specialty_US.csv:
--------------------------------------------------------------------------------
1 | Emergency,1
2 | Radiology,1
3 | Laboratory,1
4 | Pharmacy,1
5 | Administration,1
6 | Cardiology,1
7 | Neurology,1
8 | Orthopedics,1
9 | Oncology,1
10 | Pediatrics,1
11 | Women's Health,1
12 | Behavioral Health,1
13 | Rehabilitation,1
14 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/public_sector/education/programs_middle_school_VN.csv:
--------------------------------------------------------------------------------
1 | Ngữ văn,1
2 | Toán học,1
3 | Khoa học tự nhiên,1
4 | Lịch sử và Địa lý,1
5 | Giáo dục thể chất,1
6 | Foreign Languages,1
7 | Technology Education,1
8 | Visual and Performing Arts,1
9 | Health Education,1
10 | Career Exploration,1
11 |
--------------------------------------------------------------------------------
/tests_ce/functional_tests/test_attribute_script/test_attribute_script.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/healthcare/medical/procedure_purposes_diagnostic_VN.csv:
--------------------------------------------------------------------------------
1 | chẩn đoán bệnh,1
2 | phát hiện bất thường,0.9
3 | đánh giá chức năng cơ quan,0.9
4 | đánh giá tiến triển bệnh,0.8
5 | hỗ trợ quyết định điều trị,0.8
6 | theo dõi đáp ứng điều trị,0.8
7 | sàng lọc bệnh,0.9
8 | xác định nguyên nhân triệu chứng,0.8
9 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/public_sector/education/facilities_vocational_US.csv:
--------------------------------------------------------------------------------
1 | Workshops,1
2 | Training Laboratories,1
3 | Simulation Centers,1
4 | Automotive Shop,1
5 | Culinary Kitchen,1
6 | Construction Workshop,1
7 | Healthcare Simulation Lab,1
8 | Welding Shop,1
9 | Electrical Lab,1
10 | IT Training Center,1
11 |
--------------------------------------------------------------------------------
/datamimic_ce/exporters/exporter.py:
--------------------------------------------------------------------------------
1 | # DATAMIMIC
2 | # Copyright (c) 2023-2025 Rapiddweller Asia Co., Ltd.
3 | # This software is licensed under the MIT License.
4 | # See LICENSE file for the full text of the license.
5 | # For questions and support, contact: info@rapiddweller.com
6 |
7 |
8 | class Exporter:
9 | pass
10 |
--------------------------------------------------------------------------------
/tests_ce/external_service_tests/test_variable/data/arnginfo.ent.csv:
--------------------------------------------------------------------------------
1 | arng_id|source_sys_name|source_insta_name|sort_code|acct_no|acct_open_date
2 | ADB-RBS-163480-11212065|ADB|RBS|163480|11212065|04/06/2015
3 | ADB-RBS-163481-11212066|ADB|RBS|163481|11212066|05/06/2015
4 | ADB-RBS-163482-11212067|ADB|RBS|163482|11212067|06/06/2015
5 |
--------------------------------------------------------------------------------
/tests_ce/functional_tests/test_generator_functional/data/name_dataset.ent.csv:
--------------------------------------------------------------------------------
1 | name_dataset
2 | AT
3 | AU
4 | BE
5 | BR
6 | CA
7 | CH
8 | CN
9 | CZ
10 | DE
11 | ES
12 | FI
13 | FR
14 | GB
15 | IE
16 | IL
17 | IN
18 | IT
19 | JP
20 | KR
21 | NL
22 | NO
23 | NZ
24 | PL
25 | RU
26 | SE
27 | SI
28 | SK
29 | TR
30 | UA
31 | US
32 |
--------------------------------------------------------------------------------
/datamimic_ce/demos/demo-finance/info.toml:
--------------------------------------------------------------------------------
1 | title = "Demo Finance"
2 | description = "Showcase of finance data generation including banks, accounts (with nested transactions), and transactions."
3 | icon = "bank"
4 | tags = ["#generator", "#datasets", "#domains", "#finance"]
5 | projectName = "demo-finance"
6 | id = "demo-finance"
7 |
8 |
--------------------------------------------------------------------------------
/datamimic_ce/demos/demo-watermark/script/config.scr.sql:
--------------------------------------------------------------------------------
1 | DROP TABLE IF EXISTS watermark;
2 | CREATE TABLE "watermark"(
3 | id SERIAL PRIMARY KEY,
4 | key_column VARCHAR NOT NULL,
5 | value_column TIMESTAMP
6 | );
7 | INSERT INTO watermark (key_column, value_column) VALUES ('last_processed_datetime', '2020-01-01 00:00:00');
8 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/common/state/state_AT.csv:
--------------------------------------------------------------------------------
1 | id,name,population,defaultLanguage
2 | 1,Burgenland,297583,de
3 | 2,Kärnten,564513,de
4 | 3,Niederösterreich,1698796,de
5 | 4,Oberösterreich,1505140,de
6 | 5,Salzburg,560710,de
7 | 6,Steiermark,1252922,de
8 | 7,Tirol,764102,de
9 | 8,Vorarlberg,401647,de
10 | 9,Wien,1931593,de
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/finance/bank/banks_VN.csv:
--------------------------------------------------------------------------------
1 | name,swift_code,bic,weight
2 | Vietcombank,BFTVVNVX,BFTVVNVX,0.2
3 | VietinBank,ICBVVNVX,ICBVVNVX,0.18
4 | BIDV,BFTVVNVX002,BFTVVNVX002,0.18
5 | Techcombank,TCBVVNVX,TCBVVNVX,0.15
6 | ACB,ASCBVNVX,ASCBVNVX,0.1
7 | VPBank,VPBKVNVX,VPBKVNVX,0.09
8 | Sacombank,SGTTVNVX,SGTTVNVX,0.1
9 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/healthcare/medical/procedure_actions_surgical_VN.csv:
--------------------------------------------------------------------------------
1 | Cắt bỏ,1
2 | Cắt đoạn,1
3 | Sửa chữa,1
4 | Tái tạo,0.8
5 | Ghép,0.5
6 | Cấy ghép,0.7
7 | Loại bỏ,0.9
8 | Thay thế,0.7
9 | Sửa đổi,0.6
10 | Hợp nhất,0.5
11 | Cắt cụt,0.3
12 | Nối mạch,0.4
13 | Bắc cầu,0.4
14 | Ghép mô,0.4
15 | Thắt mạch,0.3
16 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/healthcare/medical/test_components_DE.csv:
--------------------------------------------------------------------------------
1 | Bluttest,blood_test_components_DE.csv,1
2 | Urinanalyse,urinalysis_components_DE.csv,1
3 | Komplettes Blutbild,blood_test_components_DE.csv,1
4 | Basis-Stoffwechselprofil,blood_test_components_DE.csv,1
5 | Umfassendes Stoffwechselprofil,blood_test_components_DE.csv,1
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/healthcare/medical/visit_types_VN.csv:
--------------------------------------------------------------------------------
1 | visit_type,weight
2 | Khám định kỳ,200
3 | Tái khám,180
4 | Khám cấp cứu,160
5 | Khám chuyên khoa,150
6 | Tiêm chủng,130
7 | Khám sức khỏe tổng quát,170
8 | Khám phòng bệnh,120
9 | Xét nghiệm chẩn đoán,110
10 | Tư vấn từ xa,90
11 | Theo dõi sau nhập viện,100
12 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/public_sector/education/programs_elementary_VN.csv:
--------------------------------------------------------------------------------
1 | Giáo dục mầm non,1
2 | Giáo dục tiểu học,1
3 | Đọc hiểu và ngôn ngữ,1
4 | Toán cơ bản,1
5 | Khám phá khoa học,1
6 | Arts and Music,1
7 | Physical Education,1
8 | Special Education,1
9 | Gifted and Talented Program,1
10 | After-School Programs,1
11 |
--------------------------------------------------------------------------------
/tests_ce/external_service_tests/datamimic_demo/j-json/datamimic.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/common/state/state_AD.csv:
--------------------------------------------------------------------------------
1 | "id","name","population","defaultLanguage"
2 | "07","Andorra la Vella",22256,"ca"
3 | "02","Canillo",4826,"ca"
4 | "03","Encamp",13521,"ca"
5 | "08","Escaldes-Engordany",14395,"ca"
6 | "04","La Massana",10359,"ca"
7 | "05","Ordino",4858,"ca"
8 | "06","Sant Julià de Lòria",9207,"ca"
9 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/healthcare/medical/procedure_purposes_surgical_US.csv:
--------------------------------------------------------------------------------
1 | treat a medical condition,1
2 | remove diseased tissue,0.9
3 | repair damaged structures,0.9
4 | restore normal function,0.9
5 | alleviate symptoms,0.8
6 | correct anatomical abnormalities,0.7
7 | improve quality of life,0.7
8 | prevent complications,0.8
9 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/healthcare/medical/test_types_DE.csv:
--------------------------------------------------------------------------------
1 | Bluttest,10
2 | Urinanalyse,8
3 | Bildgebung,7
4 | Biopsie,5
5 | Gentest,3
6 | Mikrobiologie,5
7 | Toxikologie,4
8 | Immunologie,4
9 | Zytologie,3
10 | Histologie,3
11 | Molekulardiagnostik,2
12 | Serologie,4
13 | Biochemie,6
14 | Hämatologie,8
15 | Endokrinologie,4
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/healthcare/medical/test_types_US.csv:
--------------------------------------------------------------------------------
1 | Blood Test,10
2 | Urinalysis,8
3 | Imaging,7
4 | Biopsy,5
5 | Genetic Test,3
6 | Microbiology,5
7 | Toxicology,4
8 | Immunology,4
9 | Cytology,3
10 | Histology,3
11 | Molecular Diagnostics,2
12 | Serology,4
13 | Biochemistry,6
14 | Hematology,8
15 | Endocrinology,4
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/public_sector/administration/name_patterns_US.csv:
--------------------------------------------------------------------------------
1 | {jurisdiction} Government Office,1.0
2 | {jurisdiction} Administrative Services,0.9
3 | {jurisdiction} Public Administration Center,0.8
4 | Department of {office_type} - {city},0.7
5 | {state} {office_type} Department,0.6
6 | {city} {office_type} Office,0.5
7 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/public_sector/administration/roles_VN.csv:
--------------------------------------------------------------------------------
1 | Giám đốc,1.0
2 | Phó Giám đốc,0.9
3 | Chánh Văn phòng,0.8
4 | Trưởng phòng Hành chính,0.7
5 | Quản lý Truyền thông,0.6
6 | Trưởng phòng Tài chính,0.6
7 | Trưởng phòng Vận hành,0.6
8 | Trưởng phòng Nhân sự,0.5
9 | Cố vấn Pháp lý,0.5
10 | Trưởng phòng CNTT,0.5
11 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/public_sector/education/accreditations_vocational_VN.csv:
--------------------------------------------------------------------------------
1 | Cục Dạy nghề - Bộ LĐTB&XH chứng nhận,1
2 | Chương trình đào tạo nghề trọng điểm quốc gia,1
3 | Kiểm định chất lượng cơ sở giáo dục nghề nghiệp,1
4 | Liên kết đào tạo nghề chuẩn quốc tế ASEAN,1
5 | Chứng nhận đào tạo trực tuyến theo Thông tư 08/2021,1
6 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/public_sector/education/facilities_vocational_VN.csv:
--------------------------------------------------------------------------------
1 | Xưởng thực hành,1
2 | Phòng thí nghiệm đào tạo,1
3 | Trung tâm mô phỏng,1
4 | Xưởng sửa chữa ô tô,1
5 | Bếp thực hành,1
6 | Construction Workshop,1
7 | Healthcare Simulation Lab,1
8 | Welding Shop,1
9 | Electrical Lab,1
10 | IT Training Center,1
11 |
--------------------------------------------------------------------------------
/tests_ce/integration_tests/test_source_script/test_source_scripted_in_nested_key.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/tests_ce/unit_tests/test_mcp/conftest.py:
--------------------------------------------------------------------------------
1 | """Ensure the project package is importable during isolated test runs."""
2 |
3 | import sys
4 | from pathlib import Path
5 |
6 | ROOT = Path(__file__).resolve().parents[1]
7 | PROJECT_ROOT = ROOT.parent
8 | if str(PROJECT_ROOT) not in sys.path:
9 | sys.path.insert(0, str(PROJECT_ROOT))
10 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/common/state/state_CY.csv:
--------------------------------------------------------------------------------
1 | "id","name","population","defaultLanguage"
2 | "04","Ammochostos(Famagusta)",47338,"el"
3 | "06","Keryneia(Kyrenia)",294906,"tr"
4 | "03","Larnaka(Larnaca)",145365,"el"
5 | "01","Lefkosia(Nicosia)",334120,"el"
6 | "02","Lemesos(Limassol)",239842,"el"
7 | "05","Pafos(Paphos)",90295,"el"
8 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/ecommerce/currencies_DE.csv:
--------------------------------------------------------------------------------
1 | code,name,weight,symbol
2 | EUR,Euro,1.0,€
3 | USD,US Dollar,0.2,$
4 | GBP,British Pound,0.2,£
5 | CHF,Swiss Franc,0.1,CHF
6 | SEK,Swedish Krona,0.1,kr
7 | NOK,Norwegian Krone,0.1,kr
8 | JPY,Japanese Yen,0.1,¥
9 | SGD,Singapore Dollar,0.05,S$
10 | AUD,Australian Dollar,0.05,A$
11 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/groups/sector_macro/sector_macro_VN.csv:
--------------------------------------------------------------------------------
1 | group_id,sector,weight
2 | sector_other,,0.111111
3 | sector_other,,0.111111
4 | sector_other,,0.111111
5 | sector_other,,0.111111
6 | sector_other,,0.111111
7 | sector_other,,0.111111
8 | sector_other,,0.111111
9 | sector_other,,0.111111
10 | sector_other,,0.111111
11 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/healthcare/medical/maintenance_parts_DE.csv:
--------------------------------------------------------------------------------
1 | Power supply,1
2 | Battery,1
3 | Display screen,1
4 | Control board,1
5 | Sensor array,1
6 | Cooling fan,1
7 | Cable assembly,1
8 | User interface panel,1
9 | Memory module,1
10 | Network card,1
11 | Filter assembly,1
12 | Pump mechanism,1
13 | Valve system,1
14 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/healthcare/medical/maintenance_parts_US.csv:
--------------------------------------------------------------------------------
1 | Power supply,1
2 | Battery,1
3 | Display screen,1
4 | Control board,1
5 | Sensor array,1
6 | Cooling fan,1
7 | Cable assembly,1
8 | User interface panel,1
9 | Memory module,1
10 | Network card,1
11 | Filter assembly,1
12 | Pump mechanism,1
13 | Valve system,1
14 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/healthcare/medical/maintenance_results_US.csv:
--------------------------------------------------------------------------------
1 | Completed successfully,1
2 | Issues resolved,1
3 | Partial repair - follow-up needed,0.6
4 | Temporary fix applied,0.4
5 | No issues found,0.8
6 | Calibration completed,0.7
7 | Software updated,0.7
8 | Hardware replaced,0.5
9 | Referred to manufacturer,0.3
10 |
--------------------------------------------------------------------------------
/datamimic_ce/domains/domain_data/healthcare/medical/procedure_description_templates_general_VN.csv:
--------------------------------------------------------------------------------
1 | Thủ thuật y khoa {action} {structure} để {purpose}.,1
2 | Thủ thuật {category} {action} {structure} nhằm {purpose}.,0.8
3 | Can thiệp điều trị {action} trên {structure} để {purpose}.,0.7
4 | Thủ thuật giúp {action} {structure}, hỗ trợ {purpose}.,0.6
5 |
--------------------------------------------------------------------------------