Best way to create an input expression that is a list

What is the best way to create an expression which is a list of strings? I can do it using JSON, but is there a better/cleaner way? I’m currently using the Camunda Modeler Inputs fields.

Example: ${S(‘[“name”, “age”]’)}

Hi there, and welcome to the forum.

So, we have some good documentation on the expression language (FEEL) that we use for evaluation. The format as is simple as it really gets [ "mystring", "mystring2", "mystring3" ].

2 Likes