Table of Contents

Class DataClassification

Namespace
JD.AI.Core.Governance
Assembly
JD.AI.Core.dll

A named data classification with matching patterns and an enforcement action.

public sealed class DataClassification
Inheritance
DataClassification
Inherited Members

Properties

Action

Action to apply when a match is detected.

public ClassificationAction Action { get; set; }

Property Value

ClassificationAction

DenyProviders

Provider names that are denied when this classification is detected. Use ["*"] to deny all external providers. Applicable only when Action is DenyAndAudit.

public IList<string> DenyProviders { get; set; }

Property Value

IList<string>

Name

Classification label (e.g. "PCI-DSS", "PHI", "PII").

public string Name { get; set; }

Property Value

string

Patterns

Regular expressions identifying this classification of data. Each pattern is OR-combined.

public IList<string> Patterns { get; set; }

Property Value

IList<string>