Random UUID (UUIDGenerator)
The Random UUID generator does not support linking or consistency. You cannot configure differential privacy.
There is no generator-specific configuration.
{
"generatorId": "UUIDGenerator",
"schema": "string",
"table": "string",
"column": "string",
"dataType": "string" //MongoDB only
"metadata": {},
"encryptionProcessor": "x-on", //To use configured Tonic data encryption
"customValueProcessor": "string" //If custom value processor applied
}
The following example replacement applies the Random UUID generator to a column.
{
"name": "guid",
"schema": "public",
"table": "test",
"links": [
{
"generatorId": "UUIDGenerator",
"schema": "public",
"table": "test",
"column": "guid",
"metadata": {}
}
]
}