Hi, In Splunk Classic (Simple XML) dashboards, a delimiter property could be set for a multi-select input to control how the selected values are concatenated into the token (for example , instead of ,). I’m now building a dashboard in Splunk Dashboard Studio (absolute layout) and I need the token values to look like this: "select1", "select2", "select3" Instead of the default: "select1,select2,select3" I tried adding "delimiter": ", " to the multiselect JSON definition, but I get: must NOT have additional properties So my questions are: Is there any supported way in Dashboard Studio to define a custom delimiter with space, or should I handle it only in SPL using mvjoin() or another function? Is there an official reference or documentation where I can see all supported keys and properties for the JSON schema of Dashboard Studio inputs? Example of what I tried: { "type": "input.multiselect", "options": { "items": [...], "delimiter": ", " } } Thanks!
... View more