Last active
March 9, 2022 11:24
-
-
Save tommie822/a2f055edac4928743108a3d488fc7761 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.2" | |
info: | |
title: Test | |
version: "1.0.0" | |
servers: | |
- url: https://api.server.test/v1 | |
paths: | |
/recipes: | |
get: | |
parameters: | |
- $ref: "#/components/parameters/Pagination" | |
responses: | |
"200": | |
description: OK | |
components: | |
parameters: | |
Pagination: | |
name: pagination | |
in: query | |
required: true | |
style: form | |
explode: true | |
schema: | |
type: object | |
properties: | |
offset: | |
type: integer | |
example: 0 | |
limit: | |
type: integer | |
example: 25 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment