Last updated Mar 22, 2024

Entity properties

Available:

Jira 6.2 and later.

This page provides an overview of Jira entity properties.

For the Atlassian Cloud documentation on Jira Entity Properties, go to: Storing data without a database.

What are entity properties?

Entity properties allow plugins to add key/value stores to Jira entities, such as issues or projects. These values can be indexed by Jira and queried via REST API or JQL.

How do I store data against an entity using REST?

The curl examples below show you how you can store data against an issue and retrieve the data from an issue using REST.

To modify, add, or remove the properties, the user who executes the request must have permission to edit the entity. For example, to add new property to issue ENPR-4, you need permission to edit the issue. To retrieve a property, the user must have read permissions for the entity.

Example 1: Storing data

The following example will store the JSON object {"content":"Test if works on Jira Cloud", "completed" : 1}  against issue ENPR-4 with the key tasks.

1
2
curl -X PUT \
  -H "Content-type: application/json" \
  -d '{"content":"Test if works on Jira Cloud", "completed" : 1}' \
  https://jira-instance1.net/rest/api/2/issue/ENPR-4/properties/tasks

Note the following:

  • The key has a maximum length of 255 characters. 
  • The value must be a valid JSON Object and have a maximum size of 32 KB.

Example 2: Retrieving data

The following example shows how to get all of the properties stored against an issue:

1
2
curl -X GET https://jira-instance1.net/rest/api/2/issue/ENPR-4/properties/

The response from server will contain keys and URLs of all properties of the issue ENPR-4. 

1
2
{
   "keys" : [
      {
         "key" : "tasks",
         "self" : "https://jira-instance1.net/rest/api/2/issue/ENPR-4/properties/tasks"
      }
   ]
}

Example 3: Removing a property

The following example shows how to remove a property from an issue:

1
2
curl -X DELETE https://jira-instance1.net/rest/api/2/issue/ENPR-4/properties/tasks

How do I make the properties of an entity searchable?

Jira Data Center apps can provide a module descriptor that will make the issue properties searchable using JQL. For example, to index the data from the first example, Jira Data Center apps can provide the following module descriptor:

1
2
<index-document-configuration 
  entity-key="IssueProperty" 
  key="jira-issue-tasklist-indexing">
  <key property-key="tasks">
    <extract path="content" type="text" />
  </key>
</index-document-configuration>

The descriptors shown above will make Jira index the object content of the issue property tasks as a text.

The available index data types are:

The indexed data is available for a JQL search. The result of the JQL query — issue.property\[tasks\].completed = 1 AND issue.property\[tasks\].content ~ "works" — is shown in the screenshot below. 

For detailed explanations on how to use the module descriptors, see the Index document configuration.

Rate this page: