Variable IssueLayoutItemPayloadSchemaConst
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 & {}, "id" | "ref" | string & {}>,
>;
},
$loose,
>,
>;
properties: ZodOptional<ZodRecord<ZodString, ZodAny>>;
sectionType: ZodOptional<
ZodCustom<
"content"
| string & {}
| "primaryContext"
| "secondaryContext",
"content" | string & {} | "primaryContext" | "secondaryContext",
>,
>;
type: ZodOptional<ZodCustom<string & {} | "FIELD", string & {} | "FIELD">>;
},
$loose,
> = ...
Defines the payload to configure the issue layout item for a project.