projectPropertyExists()

This function returns true if there is a project property with a given name in the current issue's project.


Bash
projectPropertyExists(propertyName) #Output: Boolean


Examples

Parser expression

Description

Bash
projectPropertyExists("maxNumberOfReopenings")

This example returns:

true 

if there is a project property like {maxNumberOfReopenings=x} in the description of the current issue's project.

Additional information

Parameters used in this function

Parameter

Input (data type)

Description

propertyName

text

Text containing a valid project property. Learn more about 

JWT project properties

.

Output

This function returns a boolean


Variant where you can additionally define project key.


Bash
projectPropertyExists(propertyName, projectKey) #Output: Boolean


Examples

Parser expression

Description

Bash
projectPropertyExists("maxNumberOfReopenings", "CRM")

This example returns

 true 

if there is a project property like {maxNumberOfReopenings=x} in the description of the project with key CRM.

Additional information

Parameters used in this function

Parameter

Input (data type)

Description

propertyName

text

Text containing a valid project property. Learn more about 

JWT project properties

.

projectKey

text

Text containing a valid project key.

Output

This function returns a boolean


📚 Use cases and examples