Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 | 28x | import { ROIEstimatesMap } from "../../types/cia-services";
/**
* Return on investment estimates for different security levels
*
* ## Business Perspective
*
* These estimates help organizations understand the potential business value
* of different security investments, supporting decision-making with quantified
* return projections and payback periods. 💰
*/
const roiEstimatesData: ROIEstimatesMap = {
NONE: {
returnRate: "0%",
value: "0%", // For backward compatibility
description: "No ROI without security investment",
potentialSavings: "$0",
breakEvenPeriod: "N/A",
},
LOW: {
returnRate: "50-100%",
value: "50-100%", // For backward compatibility
description:
"Basic security measures provide minimal protection with moderate return",
potentialSavings: "$5K-$10K annually",
breakEvenPeriod: "12-18 months",
},
MODERATE: {
returnRate: "100-200%",
value: "100-200%", // For backward compatibility
description:
"Balanced security approach delivers positive returns for most organizations",
potentialSavings: "$10K-$25K annually",
breakEvenPeriod: "6-12 months",
},
HIGH: {
returnRate: "200-300%",
value: "200-300%", // For backward compatibility
description:
"Strong security posture provides excellent returns for organizations with sensitive data or operations",
potentialSavings: "$20K-$50K annually",
breakEvenPeriod: "3-6 months",
},
VERY_HIGH: {
returnRate: "300-500%",
value: "300-500%", // For backward compatibility
description:
"Maximum security investment delivers highest potential returns for organizations in regulated industries or handling critical data",
potentialSavings: "$30K-$70K annually",
breakEvenPeriod: "2-4 months",
},
};
export default roiEstimatesData;
|