Variable: ClassificationLevelSchema
ts
const ClassificationLevelSchema: ZodObject<{
color: ZodOptional<ZodEnum<{
BLUE: "BLUE";
GREEN: "GREEN";
GREY: "GREY";
LIME: "LIME";
NAVY: "NAVY";
ORANGE: "ORANGE";
PURPLE: "PURPLE";
RED: "RED";
RED_BOLD: "RED_BOLD";
TEAL: "TEAL";
YELLOW: "YELLOW";
}>>;
description: ZodOptional<ZodString>;
guideline: ZodOptional<ZodString>;
id: ZodOptional<ZodString>;
name: ZodOptional<ZodString>;
order: ZodOptional<ZodNumber>;
status: ZodOptional<ZodEnum<{
ARCHIVED: "ARCHIVED";
DRAFT: "DRAFT";
PUBLISHED: "PUBLISHED";
}>>;
}, $loose>;Defined in: src/v2/models/classificationLevel.ts:12
A unit of data classification defined by an organiation. * A classification level may be associated with specific storage and handling requirements or expectations.