Last active
January 15, 2025 14:30
-
-
Save HristoKolev/d6ff4c2b6cb435e8d28b39ed48358c29 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/api/bla: | |
get: | |
operationId: some_operation | |
parameters: | |
- name: param_name | |
required: true | |
in: query | |
schema: | |
$ref: '#/components/schemas/SomeModel' | |
content: | |
application/json: | |
schema: | |
$ref: '#/components/schemas/SomeModel' | |
responses: | |
'200': | |
description: '' | |
content: | |
application/json: | |
schema: | |
$ref: '#/components/schemas/SomeOtherModel' | |
tags: | |
- SomeTag |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment