Variable CustomFieldPayloadSchemaConst
CustomFieldPayloadSchema: ZodObject<
{
cfType: ZodOptional<ZodString>;
description: ZodOptional<ZodString>;
name: ZodOptional<ZodString>;
onConflict: ZodOptional<
ZodCustom<
string & {}
| "FAIL"
| "USE"
| "NEW",
string & {} | "FAIL" | "USE" | "NEW",
>,
>;
pcri: 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,
>,
>;
scope: ZodOptional<
ZodCustom<
string & {}
| "PROJECT"
| "TEMPLATE"
| "GLOBAL",
string & {} | "PROJECT" | "TEMPLATE" | "GLOBAL",
>,
>;
searcherKey: ZodOptional<ZodString>;
},
$loose,
> = ...
Defines the payload for the custom field definitions. See https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-issue-fields/#api-rest-api-3-field-post