This JQL function returns users that own a certain user property.

Syntax
usersWithProperty(propertyName) #Output: Text list
Examples
Parser expressionDescription
reporter in usersWithProperty("supervisor")

This example returns all issues where the current reporter has a property called supervisor, ignoring the actual value.

assignee in usersWithProperty("vpnAccess")

This example returns all issues where the current assignee has a property called vpnAccess, ignoring the actual value.

Additional information

Parameters used in this function

ParameterInput (data type)Description
propertyName

TEXT

The name of the user property.
Output

This function returns a TEXT LIST

If you want to search for issues where a user has a specific user property value, have a look the the usersWithTextProperty(), usersWithNumericProperty() or usersWithDateTimeProperty() function.

The result is not what you expected? The number of returned issues feels too low?

By default, the maximum number of issues that will be returned by the JQL subquery, and thus can be processed by the logical expression is 1000.

To ensure the performance of your entire Jira instance, we limit the execution of the JQL function in terms of issue count and execution time. Please refer to your admin if you need to change the configuration.