To make a field required, you must configure the proper advanced setting in Ketryx. As the organization owner, navigate to the advanced settings.
For the Approval Workflow field, configure the requiredFieldNames to include the fields that you'd like to make required.
For instance, for a requirement, you may want the Introduced in version field to be required. To do this, copy the following JSON into the Approval Workflow field:
{
"REQUIREMENT": {
"Resolved": {
"isApprovable": true,
"approvalMeaning": "REVIEWED",
"requiredFieldNames": [
"Introduced in version"
],
"approvedTransitionStatus": "Closed",
"invalidatedTransitionStatus": "Resolved",
"shouldTransitionWhenApproved": true
}
}
}
As a result, in Jira, you should see the following message if the Introduced in Version field does not have a value and you try to approve the ticket: "Before you can approve this item, the following required field must be filled out: Introduced in version"
The approval of this ticket will be blocked until the required field is filled out.
Comments
0 comments
Article is closed for comments.