Ignoring items using a custom rule
Published 13 March 2025
A custom rule can be used to ignore items from a classification.
To create an ignore rule, create a custom classification rule as normal, but set its type
to the special value of Ignore
. Any items that match this rule will be ignored from classification.
Example to add a custom classification rule to ignore all string columns called 'username' Toggle source code
- {
- "classifications": {
- "custom": [
- {
- "type": "Ignore",
- "condition": "Column.Type is string AND Column.Name equals 'username'
- }
- ]
- }
- }