I there any way allow the user to select multiple values when using x-ms-dynamic-values for a parameter? May be a dropdown with multi select option or a list box where we can select multiple value. Basically trigger from my custom connector need to send an array of string for subscription. I have tried to set property type as array but its not helping.
"features": {
"description": "features",
"type": "array",
"items": {
"type": "string"
},
"x-ms-dynamic-values": {
"operationId": "getForms",
"value-path": "Id",
"value-title": "title"
}
} Is there some other way to implement this or is it not supported?