I am trying to create a list variable that I create myself and is not pulled from any fields in Jira. The idea is to be able to iterate through this list in a for loop in Jira Automation to help create multiple epics with different epic names. I know this is incorrect syntax but this is what I am trying to go for:
customList =
{{#list}}{{This is my epic name 1}}{{This is my epic name 2}}...{{This is my epic name n}}{{/}}
and then in a for loop be able to access each element in the costomList object to efficiently create many epics.
The error I get when I try to create a smart value like I did above is: "The provided smart value was unable to be resolved to an object."