Skip to content

Variable: StatusCreateSchema

ts
const StatusCreateSchema: ZodObject<{
  description: ZodOptional<ZodString>;
  name: ZodString;
  statusCategory: ZodCustom<string & object | "TODO" | "IN_PROGRESS" | "DONE", string & object | "TODO" | "IN_PROGRESS" | "DONE">;
}, $loose>;

Defined in: src/cloud/models/statusCreate.ts:5

Details of the status being created.