From a97eb1fbbb190da68d3020ead1f54251105b56d4 Mon Sep 17 00:00:00 2001 From: Lorna Jane Mitchell Date: Sun, 1 Jun 2025 10:43:38 +0100 Subject: [PATCH] Tiny copyedit fix --- src/oas.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/oas.md b/src/oas.md index 547c82f42c..3df5572368 100644 --- a/src/oas.md +++ b/src/oas.md @@ -947,7 +947,7 @@ See [Appendix E](#appendix-e-percent-encoding-and-form-media-types) for a detail ##### Parameter Locations -There are four possible parameter locations specified by the `in` field: +There are five possible parameter locations specified by the `in` field: * 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`. * query - Parameters that are appended to the URL. For example, in `/items?id=###`, the query parameter is `id`; MUST NOT appear in the same operation as an `in: "querystring"` parameter.