CIA Compliance Manager — API Documentation - v1.1.50
    Preparing search index...

    Interface ComplianceGap

    Interface for individual compliance gap

    interface ComplianceGap {
        framework: string;
        frameworkDescription: string;
        components: {
            availability: {
                current: SecurityLevel;
                required: SecurityLevel;
                gap: number;
            };
            integrity: {
                current: SecurityLevel;
                required: SecurityLevel;
                gap: number;
            };
            confidentiality: {
                current: SecurityLevel;
                required: SecurityLevel;
                gap: number;
            };
        };
        recommendations: string[];
    }
    Index

    Properties

    framework: string

    Framework name

    frameworkDescription: string

    Framework description

    components: {
        availability: {
            current: SecurityLevel;
            required: SecurityLevel;
            gap: number;
        };
        integrity: { current: SecurityLevel; required: SecurityLevel; gap: number };
        confidentiality: {
            current: SecurityLevel;
            required: SecurityLevel;
            gap: number;
        };
    }

    Component-specific gap details

    recommendations: string[]

    Recommendations for addressing this gap