Variable ApprovalConfigurationSchemaConst
ApprovalConfigurationSchema: ZodObject<
{
active: ZodCustom<
"false"
| "true"
| string & {},
"false" | "true" | string & {},
>;
conditionType: ZodCustom<
"number"
| "percent"
| string & {}
| "numberPerPrincipal",
"number" | "percent" | string & {} | "numberPerPrincipal",
>;
conditionValue: ZodString;
exclude: ZodOptional<
ZodNullable<
ZodArray<
ZodNullable<
ZodCustom<
string & {}
| "assignee"
| "reporter",
string & {} | "assignee" | "reporter",
>,
>,
>,
>,
>;
fieldId: ZodString;
prePopulatedFieldId: ZodOptional<ZodNullable<ZodString>>;
transitionApproved: ZodString;
transitionRejected: ZodString;
},
$loose,
> = ...
The approval configuration of a status within a workflow. Applies only to Jira Service Management approvals.