URL (UrlGenerator)
The URL generator is a substitution cipher that preserves formatting, but keeps the URL scheme and top-level domain intact.
The URL generator does not support linking or consistency. You cannot configure differential privacy.
There is no generator-specific configuration.
{
"generatorId": "UrlGenerator",
"schema": "string",
"table": "string",
"column": "string",
"metadata": {},
"encryptionProcessor": "x-on", //To use configured Tonic data encryption
"customValueProcessor": "string" //If custom value processor applied
}
Here is an example replacement that assigns the URL generator to a column.
{
"name": "url",
"schema": "public",
"table": "events",
"links": [
{
"generatorId": "UrlGenerator",
"schema": "public",
"table": "events",
"column": "url",
"metadata": {}
}
]
}
Last modified 1mo ago