default_config: mode: KEEP tables: - table_name_with_schema: public.address mode: MASKING transformations: # Requirement 3b.2 # Preserve postal code format and length - columns: - postal_code params: type: format_preserving_hashing # Requirement 3b.3 # Keep district values unchanged - columns: - district mode: KEEP # Requirement 3b.4 # Generate realistic phone numbers - columns: - phone params: type: person_generator locale: en_GB schema_creation_mode: CREATE_IF_NOT_EXISTS table_truncation_mode: TRUNCATE safety_mode: RELAXED
default_config:
mode: KEEP
tables:
table_name_with_schema: public.address
mode: MASKING
transformations:
Requirement 3b.2
Preserve postal code format and length
params:
type: format_preserving_hashing
Requirement 3b.3
Keep district values unchanged
mode: KEEP
Requirement 3b.4
Generate realistic phone numbers
params:
type: person_generator
locale: en_GB
schema_creation_mode: CREATE_IF_NOT_EXISTS
table_truncation_mode: TRUNCATE
safety_mode: RELAXED