Making entity property searchable

Hi, @abhinav.ojha,

I’m afraid you can’t index properties that are arrays. You property needs to be an object. For example:

{
    "ids": ["xyz", "zyx"],
    "roles": ["dev", "text"],
    "keys": ["admin", "abc"]
}

My advise would be: you can still retain your original properties if you’re using them for purposes other than JQL search, and just add additional properties that you would use only for indexing. However, that would require you to keep both in sync, which could be burdensome; it’s always better to have just one source of truth. Perhaps think about restructuring your original data then.

Hope this helps.

Cheers
Krzysztof

2 Likes