import type { CreatedAtMsV3 } from '../schemas/CreatedAtMsV3'; /** * Exemption status for an artifact, showing if an exception exists. */ export interface ExemptionStatusV3 { createdAt: CreatedAtMsV3; expirationAt?: CreatedAtMsV3; /** * Firewall exception ID for navigation to the exception detail. * @format uuid */ id: string; /** * Current status of the exception. */ status: 'APPROVED' | 'EXPIRED' | 'PENDING' | 'REJECTED'; }