Null (NullGenerator)
The Null generator does not support linking or consistency. You cannot configure differential privacy.
There is no generator-specific configuration.
{
"generatorId": "NullGenerator",
"schema": "string",
"table": "string",
"column": "string",
"dataType": "string" //MongoDB only
"metadata": {},
"customValueProcessor": "string" //If custom value processor applied
}
The following example replacement applies the Null generator to a column.
{
"name": "occupation",
"schema": "public",
"table": "users",
"links": [
{
"generatorId": "NullGenerator",
"column": "occupation",
"table": "users",
"schema": "public",
"metadata": {}
}
]
}