prorm API Reference
    Preparing search index...

    Interface ScanOptions

    Options for scanning

    interface ScanOptions {
        minConfidence?: number;
        analyzeSamples?: boolean;
        sampleSize?: number;
        customPatterns?: DiscoveryPattern[];
        targetFrameworks?: ComplianceFramework[];
        matchByName?: boolean;
        matchByPattern?: boolean;
    }
    Index
    minConfidence?: number

    Minimum confidence threshold (0-1). Default: 0.7

    analyzeSamples?: boolean

    Whether to analyze data samples (may be slow). Default: false

    sampleSize?: number

    Maximum rows to sample for analysis. Default: 100

    customPatterns?: DiscoveryPattern[]

    Custom patterns to add

    targetFrameworks?: ComplianceFramework[]

    Frameworks to prioritize

    matchByName?: boolean

    Whether to include column name matching. Default: true

    matchByPattern?: boolean

    Whether to include pattern matching. Default: true