prorm API Reference
    Preparing search index...

    Interface DiscoveryPattern

    Custom discovery pattern definition

    interface DiscoveryPattern {
        id: string;
        name: string;
        type: SensitiveDataType;
        pattern: RegExp;
        columnNames?: RegExp[];
        frameworks: ComplianceFramework[];
        recommendation: "encrypt" | "mask" | "tokenize" | "redact";
        priority?: number;
    }
    Index
    id: string

    Unique identifier for the pattern

    name: string

    Human-readable name

    Type of sensitive data

    pattern: RegExp

    Regex pattern to match

    columnNames?: RegExp[]

    Column name patterns to match

    frameworks: ComplianceFramework[]

    Frameworks that this pattern satisfies

    recommendation: "encrypt" | "mask" | "tokenize" | "redact"

    Recommended protection

    priority?: number

    Priority (higher = checked first)