Null (NullGenerator)

The Null generator generates NULL values to fill the rows of the specified column.

The Null generator does not support linking or consistency. You cannot configure differential privacy.

There is no generator-specific configuration.

{
  "schema": "string",
  "table": "string",
  "column": "string",
  "dataType": "string"  //MongoDB only
  "metadata": {
    "generatorId": "NullGenerator",
    "customValueProcessor": "string"  //If custom value processor applied
  }
}

Example replacement

The following example replacement applies the Null generator to a column.

{
  "name": "occupation",
  "schema": "public",
  "table": "users",
  "links": [
    {
      "column": "occupation",
      "table": "users",
      "schema": "public",
      "metadata": {
       "generatorId": "NullGenerator"
      }
    }
  ]
}

Last updated