prorm API Reference
    Preparing search index...

    Interface SensitiveField

    Discovered sensitive field information

    interface SensitiveField {
        field: string;
        type: SensitiveDataType;
        confidence: number;
        method: "column_name" | "pattern" | "data_sample";
        pattern: RegExp;
        frameworks: ComplianceFramework[];
        recommendation: "encrypt" | "mask" | "tokenize" | "redact";
        sampleMatch?: string;
    }
    Index
    field: string

    The field name in the model

    Type of sensitive data detected

    confidence: number

    Confidence score (0-1)

    method: "column_name" | "pattern" | "data_sample"

    Detection method used

    pattern: RegExp

    Matching regex or pattern

    frameworks: ComplianceFramework[]

    Regulatory frameworks that apply

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

    Recommended protection method

    sampleMatch?: string

    Original matched value (for validation)