Jira expression field code

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

Example outputfalse
Output data type

Type

Available since






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


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 will return a list of objects.



Read



Returned value

True if the first (fix)version has been archived, false otherwise. If no (fix) version are available, null is returned.

Output data type

Example outputfalse