Introduction

The Automation Toolbox for Jira expression parser provides over 200 functions and operators to read, manipulate and filter data from Jira issues, users, groups, projects and more.

Among the long list of functionalities, the parser functions support setting and/or updating field values, issue filtering, date and time calculations, string manipulation and the execution of mathematical operations.

The expression parser has been in constant development since 2009 when it was first introduced in Jira Workflow Toolbox. Since that time, the expression parser has seen constant development, improvement, and extended functionality.

All full list of supported functions can be found here: Expression Parser 201 - All functions


Main Features

The expression parser has two major core functionalities:

Field codes and usage

Virtual fields

All comprehensive overview of all available virtual fields can be found here


Field NameField code

Value

Summary
%{issue.summary}

Issue Summary as 

Description
%{issue.description}

Issue Description as 

Assignee
%{issue.assignee}

User name of the Assignee as 

Parent's assignee
%{parent.assignee}

User name of the parent's Assignee as  

Number of votes received
%{issue.votes}

 of votes received by the issue.



Numeric field codes are only available for number fields, date/time fields and countable virtual fields.


Functions and Operators

Please use one of the following links for detailed descriptions of functions and operators.

Functions

You can find all functions here.


The Expression Parser Syntax Specification

Automation Toolbox for Jira uses a powerful expression parser for interpreting expressions with logical, mathematical, date-time and string-text terms.

This parser is a fundamental part of the app, and is used by various features in the app. The parser offers very similar functionality to the expression parser known to Jira Workflow Toolbox users. There are some differences, mainly in field code usage and the lack of ephemeral fields. 

You can use the provided parser functionality with a number of triggers, conditions, actions and selectors.      


The following is a simple example of parser usage for the Condition → Boolean Condition .

The condition will return true  if the issues Due date is greater than the current date.


The available Selectors, Conditions and Actions depend on the selected Trigger.

The syntax depends on the parser mode and the context of the rule. Therefore the following table explains the different parsing modes.


#basic parsing mode
%{trigger.issue.description}
Last comment:
%{trigger.issue.comment.last}
#advanced parsing mode
%{trigger.issue.description} + "\nLast comment: \n" + %{trigger.issue.comment.last}

Parsing modes

There are multiple parsing modes available in the expression parser. The two most commonly used parsing modes are:

The Expression Parser offers you different modes to provide a flexible usage in certain places. You can calculate an issue due date depending on the current date or filter the issue sub-tasks by status to add a comment to those.

To update issue fields the parsing result will be cast to the expected value e.g. a user name will be cast to a user to update a user field like the assignee field.

ModeSupported featuresReturn typeExample
BasicField codes

String

Object


The basic parsing mode supports the usage of field codes. Field codes can be used to access issue field values.

This is the issue summary: %{trigger.issue.summary}


Advanced

Field codes

Parser Functions

String

Object

The advanced parsing mode has a defined syntax that allows you to write functions to read and manipulate data from any issue in Jira. Field codes are supported as well as clear text, written in quotation marks. 

"This is the issue summary:" + %{trigger.issue.summary} + " and the assignee mail is: " + userEmail(%{trigger.issue.assignee})


Math/date time

Field codes

Parser Functions

Number

Date

Date Time

The mathematical and date time parsing mode works like the advanced mode but expect a number as result instead of a string. The resulting number is used to updated numeric or date time fields. In case of date or date time fields the number will be cast to a date.

{trigger.issue.resolutionDate} - {trigger.issue.createdDate}


Logical

Field codes

Parser Functions

true

false

The logical parsing mode works like the advanced parsing mode but expression result must return true or false.

{trigger.issue.assingee} = {trigger.issue.reporter}


Issue List

Field codes

Parser Functions

issue list


String List

Field codes

Parser Functions

string list
Mixed

Field codes

Parser Functions written in three curly braces

String