CIA Compliance Manager API Documentation - v1.0.1
    Preparing search index...

    Interface IntegrityImpact

    Impact associated with the integrity of the system

    Describes data accuracy requirements and verification processes for the selected integrity security level.

    const impact: IntegrityImpact = {
    level: 'Very High',
    description: 'Data must be tamper-proof with audit trails',
    dataAccuracy: 'Zero tolerance for unauthorized modifications',
    verificationSteps: 'Cryptographic signatures, audit logs, checksums'
    };
    interface IntegrityImpact {
        dataAccuracy: string;
        description: string;
        level: SecurityLevel;
        verificationSteps: string;
    }

    Hierarchy (View Summary)

    Index

    Properties

    dataAccuracy: string

    Expected data accuracy level and tolerance for errors

    description: string

    Human-readable description of the impact

    Security level associated with this impact

    verificationSteps: string

    Verification and validation processes required