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.

{
  "schema": "string",
  "table": "string",
  "column": "string",
  "metadata": {
    "generatorId": "UrlGenerator",
    "encryptionProcessor": "x-on", //To use configured Structural data encryption
    "customValueProcessor": "string"  //If custom value processor applied
  }
}

Example replacement

Here is an example replacement that assigns the URL generator to a column.

{
  "name": "url",
  "schema": "public",
  "table": "events",
  "links": [
    {
      "schema": "public",
      "table": "events",
      "column": "url",
      "metadata": {
        "generatorId": "UrlGenerator"
      }
    }
  ]
}

Last updated