Skip to content

Variable: IssueFieldOptionSchema

ts
const IssueFieldOptionSchema: ZodObject<{
  config: ZodOptional<ZodObject<{
     attributes: ZodOptional<ZodArray<ZodCustom<string & object | "defaultValue" | "notSelectable", string & object | "defaultValue" | "notSelectable">>>;
     scope: ZodOptional<ZodObject<{
        global: ZodOptional<ZodObject<{
           attributes: ...;
        }, $loose>>;
        projects: ZodOptional<ZodArray<ZodNumber>>;
        projects2: ZodOptional<ZodArray<ZodObject<..., ...>>>;
     }, $loose>>;
  }, $loose>>;
  id: ZodNumber;
  properties: ZodOptional<ZodRecord<ZodString, ZodAny>>;
  value: ZodString;
}, $loose>;

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

Details of the options for a select list issue field.