Comment on page
Company Name (CompanyNameGenerator)
The Company Name generator does not support linking. It can be self-consistent or consistent with another column. You cannot configure differential privacy.
There is no generator-specific configuration.
{
"presetId": "string",
"generatorId": "CompanyNameGenerator",
"schema": "string",
"table": "string",
"column": "string",
"dataType": "string", //MongoDB only
"metadata": {
"isConsistent": boolean,
"consistencyColumn": "string"
},
"encryptionProcessor": "x-on", //To use configured Tonic data encryption
"customValueProcessor": "string" //If custom value processor applied
}
In the following replacement, the Company Name generator is applied to a
company
column, and is consistent with a name
column.{
"name": "company",
"schema": "public",
"table": "users",
"links": [
{
"presetId": "CompanyNameGenerator",
"generatorId": "CompanyNameGenerator",
"schema": "public",
"table": "users",
"column": "company",
"metadata": {
"isConsistent": true,
"consistencyColumn": "name"
}
}
]
}
Last modified 3mo ago