/** * Accenture Data Classification labels for CapaKraken fields. * HC = Highly Confidential, C = Confidential, IR = Internal/Restricted, U = Unrestricted * * EGAI 4.2 / Data Classification Standard */ export const DATA_CLASSIFICATION = { // Highly Confidential passwordHash: "HC", totpSecret: "HC", apiKeys: "HC", // Confidential lcrCents: "C", ucrCents: "C", budgetCents: "C", chargeabilityTarget: "C", email: "C", // Internal/Restricted displayName: "IR", eid: "IR", chapter: "IR", skills: "IR", // Unrestricted projectName: "U", shortCode: "U", roleName: "U", } as const; export type DataClassification = "HC" | "C" | "IR" | "U";