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
I was wondering if it would be possible to filter out specific "path" methods using the tags options.
Example
paths:
/pet:
post:
tags:
- pet
summary: Add a new pet to the store
description: ""
operationId: addPet
responses:
"405":
description: Invalid input
security:
- petstore_auth:
- write:pets
- read:pets
requestBody:
$ref: "#/components/requestBodies/Pet"
put:
tags:
- pet
summary: Update an existing pet
description: ""
operationId: updatePet
responses:
"400":
description: Invalid ID supplied
"404":
description: Pet not found
"405":
description: Validation exception
security:
- petstore_auth:
- write:pets
- read:pets
requestBody:
$ref: "#/components/requestBodies/Pet"
I want to filter out the /pet but on the the PUT.
The only option that I have right now, is to add a specific flag (like x-visibility) to the put method .
Or is there an option to specific target a path & method?
if there is not, I'll try to create a PR to support this filtering option.
The text was updated successfully, but these errors were encountered:
I was wondering if it would be possible to filter out specific "path" methods using the tags options.
Example
I want to filter out the
/pet
but on the thePUT
.The only option that I have right now, is to add a specific flag (like
x-visibility
) to the put method .Or is there an option to specific target a path & method?
if there is not, I'll try to create a PR to support this filtering option.
The text was updated successfully, but these errors were encountered: