You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Fix#5
- Fix bug in `MARKDOWN` view for `servers` (displaying twice the `description`
instead of `description` and `url`).
- Fix bug happening when a `path item` includes properties that are not of kind
`operation item` (Neoteroi/mkdocs-plugins#5).
- Add support for handling `parameters` defined on `path items` (common
parameters for all operation under a certain path).
Refer to the [`Path Item` specification](https://swagger.io/specification/#path-item-object).
* Handle non-str param name property
* Add Python 3.13 to the build matrix
* Update requirements.txt
description: This is a sample server Petstore server. You can find out more about Swagger at [http://swagger.io](http://swagger.io) or on [irc.freenode.net, #swagger](http://swagger.io/irc/).
14
+
parameters:
15
+
- name: X-Country
16
+
in: header
17
+
description: Country code.
18
+
required: false
19
+
schema:
20
+
type: string
21
+
default: PL
22
+
get:
23
+
summary: List all pets
24
+
operationId: listPets
25
+
tags:
26
+
- pets
27
+
parameters:
28
+
- name: limit
29
+
in: query
30
+
description: How many items to return at one time (max 100)
0 commit comments