Skip to end of banner
Go to start of banner

Jira Software supported fields

Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 4 Next »

Power Scripts for Jira enriches the SIL language by allowing users to directly access the custom fields created by Jira Software, just like any other Jira custom fields.

Supported custom fields are:

Custom FieldRead/WriteSIL TypeValueNotes
SprintRead/Writenumber []List of sprint IDsIssues assigned to multiple open/started sprints will show up only one in the Rapid Board. It is recommended that you should not assign an issue to multiple open/started sprints.
RankRead-onlynumberThe rankTo set the rank, use the Jira Software supported fields
Epic StatusRead/WritestringA valid option for the Epic Status. (by default, one of: To Do, In Progress, Done)Requires the issue to be an Epic.
Epic LinkRead/WritestringThe issue key of the epic this issue belongs to.If set to an empty value, will remove the issue from the epic.
Epic NameRead/WritestringThe name of the epicRequires the issue to be an Epic.
Epic ColourRead/WritestringColor code of the epic links that are shown on the child issues.Requires the issue to be an Epic. Accepts any valid CSS value for background-color. (e.g. #EAEBDD, rgb(127, 67, 233), #cab, yellow)
Story PointsRead/WritenumberThe number of story points on the issue.
FlaggedRead/Writestring []A valid option for the Flagged field.
Business ValueRead/WritenumberThe business value of the issue.

Back to basics

 Since most of these custom fields contain a blank space in their name, don't forget to use #{ and } if you'd like to use the name instead of id/alias.

Examples

#{Story Points} = 8;
#{TEST-1.Epic Name} = "Best Epic name ever";
print(Rank);
print(TEST-1.Sprint);
print(#{TEST-1.Sprint});
print(#{TEST-1.Business Value});
  • No labels