CIA Compliance Manager — API Documentation - v1.1.50
    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 {
        returnRate: string;
        recommendation: string;
        description: string;
        value?: string;
        potentialSavings?: string;
        breakEvenPeriod?: string;
    }
    Index

    Properties

    returnRate: string

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

    recommendation: string

    Investment recommendation text

    description: string

    Detailed description of the investment scenario

    value?: string

    Optional calculated ROI value in currency

    potentialSavings?: string

    Optional estimated cost savings

    breakEvenPeriod?: string

    Optional time period to break even on investment