Variable: IssueLayoutItemPayloadSchema
ts
const IssueLayoutItemPayloadSchema: ZodObject<{
itemKey: ZodOptional<ZodObject<{
anID: ZodOptional<ZodBoolean>;
areference: ZodOptional<ZodBoolean>;
entityId: ZodOptional<ZodString>;
entityType: ZodOptional<ZodString>;
id: ZodOptional<ZodString>;
type: ZodOptional<ZodCustom<"id" | "ref" | string & object, "id" | "ref" | string & object>>;
}, $loose>>;
properties: ZodOptional<ZodRecord<ZodString, ZodAny>>;
sectionType: ZodOptional<ZodCustom<"content" | string & object | "primaryContext" | "secondaryContext", "content" | string & object | "primaryContext" | "secondaryContext">>;
type: ZodOptional<ZodCustom<string & object | "FIELD", string & object | "FIELD">>;
}, $loose>;Defined in: src/cloud/models/issueLayoutItemPayload.ts:6
Defines the payload to configure the issue layout item for a project.