Redaction

Effective method of eliminating sensitive event field data by either nullifying or replacing with a blank value.

Example

This DSL will replace the contents of the field with blank field.

obfuscation:
  name: redactPII
  fields:
    address: 
      redact:
        as null: true
    firstlast_name:
      redact:
        as null: false

Attributes

AttributeDescriptionData TypeRequired

as null

If set to true replace value with a null otherwise as a empty string

Boolean

Default: true

Last updated