You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/openapi.md
+2Lines changed: 2 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -211,6 +211,8 @@ public static async Task<IActionResult> GetSample(
211
211
*`Description`: is the description of the parameter.
212
212
*`Type`: defines the parameter type. Default value is `typeof(string)`.
213
213
*`In`: identifies where the parameter is located –`header`, `path`, `query` or `cookie`. Default value is `path`.
214
+
*`CollectionDelimiter`: identifies the delimiter when a query parameter accepts multiple values –`comma`, `space` or `pipe`. Default value is `comma`.
215
+
*`Explode`: indicates whether a query parameter is used multiple times (eg. `foo=bar1&foo=bar2&foo=bar3`) or not (eg. `foo=bar1,bar2,bar3`). Default value is `false`.
214
216
*`Required`: indicates whether the parameter is required or not. Default value is `false`.
215
217
*`Visibility`: indicates how the parameter is visible in Azure Logic Apps –`important`, `advanced` or `internal`. Default value is `undefined`.
0 commit comments