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

    Variable CIA_LABELSConst

    CIA_LABELS: { AVAILABILITY: string; CONFIDENTIALITY: string; INTEGRITY: string } = ...

    CIA component label constants for consistent terminology.

    Standard display labels for CIA triad components. Use these labels throughout the UI to ensure consistent terminology and improve user recognition.

    Type Declaration

    • AVAILABILITY: string
    • CONFIDENTIALITY: string
    • INTEGRITY: string
    // In select dropdown
    const options = [
    { value: 'availability', label: CIA_LABELS.AVAILABILITY },
    { value: 'integrity', label: CIA_LABELS.INTEGRITY },
    { value: 'confidentiality', label: CIA_LABELS.CONFIDENTIALITY }
    ];