Redaction
Eliminate sensitive event field data by either nullifying or replacing with a blank value
Objective
Effective method of eliminating sensitive event field data by either nullifying or replacing with a blank value.
Example & DSL attributes
This DSL will replace the contents of the field with blank field.
The obfuscation strategy called redactPII, which is applied to two fields: address and firstlast_name.
address The value for the
addressfield is redacted and replaced withnull(i.e., the address is completely removed).firstlast_name The value for the
firstlast_namefield is not redacted and remains unchanged (as null: falsemeans no obfuscation).
This strategy helps protect personally identifiable information (PII) by redacting sensitive data while retaining non-sensitive data.
obfuscation:
name: redactPII
fields:
address:
redact:
as null: true
firstlast_name:
redact:
as null: falseAttributes schema
as null
If set to true replace value with a null otherwise as a empty string
Boolean
Default: true
Last updated
Was this helpful?