From b10b3d9c869f4268be4cc5aba4cd364492762cde Mon Sep 17 00:00:00 2001 From: Justin Yoo Date: Mon, 20 Jul 2020 08:36:37 +0900 Subject: [PATCH] Update README.md --- docs/openapi.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/openapi.md b/docs/openapi.md index fde1e4f..bb8925d 100644 --- a/docs/openapi.md +++ b/docs/openapi.md @@ -211,6 +211,8 @@ public static async Task GetSample( * `Description`: is the description of the parameter. * `Type`: defines the parameter type. Default value is `typeof(string)`. * `In`: identifies where the parameter is located – `header`, `path`, `query` or `cookie`. Default value is `path`. +* `CollectionDelimiter`: identifies the delimiter when a query parameter accepts multiple values – `comma`, `space` or `pipe`. Default value is `comma`. +* `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`. * `Required`: indicates whether the parameter is required or not. Default value is `false`. * `Visibility`: indicates how the parameter is visible in Azure Logic Apps – `important`, `advanced` or `internal`. Default value is `undefined`.