PHP Classes

File: src/database/data/business_tiers.php

Recommend this page to a friend!
  Classes of Angel Campos   Atlas catalog   src/database/data/business_tiers.php   Download  
File: src/database/data/business_tiers.php
Role: Auxiliary script
Content type: text/plain
Description: Configuration script
Class: Atlas catalog
API to provide details of APIs of an organization
Author: By
Last change:
Date: 1 month ago
Size: 1,584 bytes
 

Contents

Class file image Download
<?php

declare(strict_types=1);

/**
 * A list of common business criticality tiers for seeding the database.
 * Each element should contain a 'code', 'name', and a 'description'.
 */
return [
    [
       
'code' => 'T0',
       
'name' => 'Tier 0 - Mission-Critical',
       
'description' => 'Highest criticality services. Direct, real-time impact on customers and revenue. Requires the highest level of availability and lowest latency. (e.g., Core APIs, Authentication)',
    ],
    [
       
'code' => 'T1',
       
'name' => 'Tier 1 - High-Impact Business',
       
'description' => 'Services critical for business operations with significant customer or revenue impact. High availability is required, but with slightly more tolerance than Tier 0. (e.g., Order Processing, User Profile Management)',
    ],
    [
       
'code' => 'T2',
       
'name' => 'Tier 2 - Core Internal Services',
       
'description' => 'Services that support internal business processes. Downtime impacts employee productivity but not directly customers. (e.g., Internal Dashboards, Reporting Services)',
    ],
    [
       
'code' => 'T3',
       
'name' => 'Tier 3 - Supporting & Batch Services',
       
'description' => 'Services with low-urgency or asynchronous workloads. Downtime is tolerable and can often be scheduled. (e.g., Data Warehousing, Log Processing)',
    ],
    [
       
'code' => 'T4',
       
'name' => 'Tier 4 - Development & Experimental',
       
'description' => 'Non-production services used for development, testing, or staging. No availability guarantees.',
    ],
];