TenantAtlas/apps/platform/app/Support/Baselines/CompareSemantics/CompareResultCoverageStatus.php
ahmido ea77c8c718 feat(baselines): implement baseline compare result semantics (#454)
Implemented deterministic Baseline Result Semantics (Spec 383), introducing CompareSubjectResult and CompareEvidenceResult. Replaced generic arrays with strict Data Transfer Objects for Baseline engine output.

Co-authored-by: Ahmed Darrazi <ahmed.darrazi@live.de>
Reviewed-on: #454
2026-06-16 20:20:27 +00:00

20 lines
608 B
PHP

<?php
declare(strict_types=1);
namespace App\Support\Baselines\CompareSemantics;
enum CompareResultCoverageStatus: string
{
case FullyVerified = 'fully_verified';
case VerifiedWithLimitations = 'verified_with_limitations';
case InventoryOnly = 'inventory_only';
case IdentityOnly = 'identity_only';
case CanonicalOnly = 'canonical_only';
case Unsupported = 'unsupported';
case MissingLocalEvidence = 'missing_local_evidence';
case MissingProviderResource = 'missing_provider_resource';
case Excluded = 'excluded';
case AcceptedLimitation = 'accepted_limitation';
}