Documentation
Property Index
Defines an entity property to be indexed by JIRA. An entity property is a reference to a JSON object, which also defines it's type.
Example
Properties
objectName
Type
stringRequired
Yes
Description
The objectName to the JSON data which is supposed to be indexed. The objectName will be the key of a flatten JSON object with '.' as the delimiter.
For instance, for JSON "{"label": {"color": "red", "text":"connect"}} the valid objectName
referencing the color is label.color.
Currently, specifying of index for JSON arrays is not supported.
type
Type
stringRequired
Yes
Allowed values
numbertextstringdateDescription
The type of the referenced value.
The type can be one of the following values:
number, which is indexed as a number and allows the range ordering and searching on this field.text, which is tokenized before indexing and allows searching for particular words.stringwhich is indexed as is and allows searching for the exact phase only.date, which is indexed as a date and allows date range searching and ordering. The expected date format is [YYYY]-[MM]-[DD]. The expected date time format is [YYYY]-[MM]-[DD]T[hh]:[mm] with optional offset from UTC: +/-[hh]:[mm] orZfor no offset. For reference, please see ISO_8601 standard.