Skip to content

Commit 0bfe8b3

Browse files
specify how query parameters are added to the URL
..and remove example that is specific to a particular style, explode and schema type configuration
1 parent 86e1b44 commit 0bfe8b3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/oas.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1134,7 +1134,7 @@ See [Appendix E](#appendix-e-percent-encoding-and-form-media-types) for a detail
11341134
There are four possible parameter locations specified by the `in` field:
11351135

11361136
* path - Used together with [Path Templating](#path-templating), where the parameter value is actually part of the operation's URL. This does not include the host or base path of the API. For example, in `/items/{itemId}`, the path parameter is `itemId`.
1137-
* query - Parameters that are appended to the URL. For example, in `/items?id=###`, the query parameter is `id`.
1137+
* query - Parameters that are appended to the URL with the `?` character (or for subsequent query parameters, with the `&` character).
11381138
* header - Custom headers that are expected as part of the request. Note that [RFC7230](https://tools.ietf.org/html/rfc7230#section-3.2) states header names are case insensitive.
11391139
* cookie - Used to pass a specific cookie value to the API.
11401140

0 commit comments

Comments
 (0)