Skip to content

Variable: JiraWorkflowStatusSchema

ts
const JiraWorkflowStatusSchema: ZodObject<{
  description: ZodOptional<ZodString>;
  id: ZodOptional<ZodString>;
  name: ZodOptional<ZodString>;
  scope: ZodOptional<ZodObject<{
     project: ZodOptional<ZodObject<{
        id: ZodString;
     }, $loose>>;
     type: ZodOptional<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">>;
  statusReference: ZodOptional<ZodString>;
}, $loose>;

Defined in: src/cloud/models/jiraWorkflowStatus.ts:6

Details of a status.