mirror of
https://github.com/LukeHagar/api-specs.git
synced 2025-12-10 12:27:48 +00:00
23 lines
374 B
YAML
23 lines
374 B
YAML
name: query
|
|
in: query
|
|
description: Allows for pagination and sorting.
|
|
required: false
|
|
schema:
|
|
type: object
|
|
properties:
|
|
limit:
|
|
type: integer
|
|
example: 100
|
|
offset:
|
|
type: integer
|
|
example: 50
|
|
order:
|
|
type: string
|
|
example: created_at
|
|
example:
|
|
limit: 100
|
|
offset: 50
|
|
order: created_at
|
|
style: deepObject
|
|
explode: true
|