We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 701d460 commit 524cc6fCopy full SHA for 524cc6f
1 file changed
tests/schema/pass/path-item-object-example.yaml
@@ -32,4 +32,24 @@ paths:
32
type: array
33
items:
34
type: string
35
- style: simple
+ style: simple
36
+ additionalOperations:
37
+ query:
38
+ description: Returns pets based on ID
39
+ summary: Find pets by ID
40
+ operationId: queryPetsById
41
+ responses:
42
+ '200':
43
+ description: pet response
44
+ content:
45
+ '*/*':
46
+ schema:
47
+ type: array
48
+ items:
49
+ $ref: '#/components/schemas/Pet'
50
+ default:
51
+ description: error payload
52
53
+ text/html:
54
55
+ $ref: '#/components/schemas/ErrorModel'
0 commit comments