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