Created
September 23, 2021 23:34
-
-
Save mathis-m/322c3fedfc9717bb3629b38079648aec 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
openapi: 3.0.0 | |
info: | |
title: test | |
version: 0.0.0 | |
paths: | |
/something/{id}: | |
parameters: | |
- in: path | |
name: id | |
required: true | |
schema: | |
type: string | |
get: | |
parameters: | |
- in: query | |
name: foo | |
schema: | |
type: string | |
responses: | |
'200': | |
description: ok |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment