Details
-
Bug
-
Status: Candidate
-
Major
-
Resolution: Unresolved
-
None
-
-
All
-
Small
Description
Path variable is always required in OAS2/OAS3 even if option "required" is unchecked
--- openapi: "3.0.1" info: title: "test" description: "No description" version: "1.0.0" paths: /test/{test}: parameters: - name: "test" in: "path" required: true schema: type: "string"
--- swagger: "2.0" info: description: "No description" version: "1.0.0" title: "test" consumes: - "application/json" produces: - "application/json" paths: /test/{test}: parameters: - name: "test" in: "path" required: true type: "string"