How to define an empty or blank string as action or command option value?

I cannot find any way to send an empty or blank string value by either an action or command option definition like e.g. in

actionOptions: Netflix,Prime Video,""

Here, the last value should be an empty (or alternatively blank) string, I’ve tried several options (no/single/double quotes). But either I’m getting a Communication failure when the option is selected (no quotes), or the quotes become part of the command string. I observe the same behavior for command options defintion like (last line is blank)

Netflix
Prime Video

Any hint would be highly appreciated!

To be honest, between the way yaml is parsed, and the command options are processed, I doubt that you can do this.

Have you tried

actionOptions: Netflix,Prime Video,

Thanks for the responses.

I’ve tried actionOptions: Netflix,Prime Video, without success. Following the other response and my own unsuccessful attempts, I’ve also come to the conclusion that this cannot be done.