Skip to content

Instantly share code, notes, and snippets.

@tommie822
Last active March 9, 2022 11:24
Show Gist options
  • Save tommie822/a2f055edac4928743108a3d488fc7761 to your computer and use it in GitHub Desktop.
Save tommie822/a2f055edac4928743108a3d488fc7761 to your computer and use it in GitHub Desktop.
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