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

    ROI data structure containing investment analysis

    Provides return on investment metrics and recommendations for security level implementations, helping stakeholders understand the business value of security investments.

    const roiData: ROIData = {
    returnRate: "75%",
    recommendation: "High investment recommended",
    description: "Advanced security measures should be implemented.",
    value: "$75,000",
    potentialSavings: "$200,000 annually",
    breakEvenPeriod: "18 months"
    };
    interface ROIData {
        breakEvenPeriod?: string;
        description: string;
        potentialSavings?: string;
        recommendation: string;
        returnRate: string;
        value?: string;
    }
    Index

    Properties

    breakEvenPeriod?: string

    Optional time period to break even on investment

    description: string

    Detailed description of the investment scenario

    potentialSavings?: string

    Optional estimated cost savings

    recommendation: string

    Investment recommendation text

    returnRate: string

    Expected return rate as percentage (e.g., "75%", "100%")

    value?: string

    Optional calculated ROI value in currency