Variable: JiraStatusSchema
ts
const JiraStatusSchema: ZodObject<{
description: ZodOptional<ZodString>;
id: ZodOptional<ZodString>;
name: ZodOptional<ZodString>;
scope: ZodOptional<ZodObject<{
project: ZodOptional<ZodObject<{
id: ZodString;
}, $loose>>;
type: ZodCustom<string & object | "PROJECT" | "GLOBAL", string & object | "PROJECT" | "GLOBAL">;
}, $loose>>;
statusCategory: ZodOptional<ZodCustom<string & object | "TODO" | "IN_PROGRESS" | "DONE", string & object | "TODO" | "IN_PROGRESS" | "DONE">>;
}, $loose>;Defined in: src/cloud/models/jiraStatus.ts:6
Details of a status.