Variable: ClassificationLevelSchema
ts
const ClassificationLevelSchema: ZodObject<{
color: ZodOptional<ZodCustom<
| string & object
| "RED"
| "RED_BOLD"
| "ORANGE"
| "YELLOW"
| "GREEN"
| "BLUE"
| "NAVY"
| "TEAL"
| "PURPLE"
| "GREY"
| "LIME",
| string & object
| "RED"
| "RED_BOLD"
| "ORANGE"
| "YELLOW"
| "GREEN"
| "BLUE"
| "NAVY"
| "TEAL"
| "PURPLE"
| "GREY"
| "LIME">>;
description: ZodOptional<ZodString>;
guideline: ZodOptional<ZodString>;
id: ZodOptional<ZodString>;
name: ZodOptional<ZodString>;
order: ZodOptional<ZodNumber>;
status: ZodOptional<ZodCustom<string & object | "DRAFT" | "PUBLISHED" | "ARCHIVED", string & object | "DRAFT" | "PUBLISHED" | "ARCHIVED">>;
}, $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.