I have a field in my Jira Issue which has nested parameters. These nested parameters have metadata while others give insight into whether particular feature is enabled or not.
Field A: "applicationId":ABC123,"microserviceName":loanprocessingservice,"javaVersion":11,"cluster":apz09,""ropc":true,observabiltiy":false,"istioAdvSettings":true
Using the 'Search for Issues' feature, I want to know how many issues were created where ropc is true. After I get this search, I want to create a widget to use in a Jira Dashboard.
However, the ropc field is encased with double quotes which is a restricted character.
Tried below queries and none seem to be working:
- Field A ~ "ropc*true"
- Field A ~ "\"ropc\":true"
Is JQL not powerful enough to do this kind of search? Or is it a syntax issue? If the latter, can you provide the query for which I can use?