Jira expression field code

issue?.versions[0]?.releaseDate
issue?.fixVersions[0]?.releaseDate

Example output2020-04-28
Output data type

Type

Available since
issue?.versions[0]?.releaseDate
issue?.fixVersions[0]?.releaseDate

Versions are stored in lists. Documentation on how to work with lists can be found here.

You can access the whole version by issue?.versions[0] and issue?.fixVersions[0] which returns a Version object, issue?.versions (and issue?.fixVersions) will return a list of objects.

Read


Returned valueThe release date of the first (fix)version. If no (fix)version is available, null is returned.
Output data type

Example output2020-04-28