Closed richcarl closed 2 years ago
The entries of a path are typically methods like "get": {...} but can also be path-global things such as "parameters": [...] Example:
"get": {...}
"parameters": [...]
"/users/{id}": { "parameters": [ { "in": "path", "name": "id", "required": "true", "type": "string", "description": "The user ID" } ], "get": { ... }, "post": { ... } }
Please merge from master to avoid CI issues.
The entries of a path are typically methods like
"get": {...}
but can also be path-global things such as"parameters": [...]
Example: