Is it possible to define json like that below in Create JSON module but using ‘map’ option instead of inserting items manually? It is helpful for testing to define quickly JSON input, but it seems that structure with comma fails when switching toggle 'Map"
is there any way to define json input containing array of text with commas than adding it item by item?
Do I need to define external data source and import it as first step?
“topics”: [
“item 1, ab”,
“item 2, bc”,
“item 3, ef”
]
I will simplify it.
How to define static input containing array of strings containing commas. I want to select random element from this each time I run workflow.
I don’t want to insert item by item, it may contain 100 elements.
I tried Create JSON or Set a variable, but none is able to handle strings with commas inside array.
[
“input string no 1, with comma”,
“input string no 2, with comma”,
“input string no 3, with comma”,
“input string no 4, with comma”
]