-
Notifications
You must be signed in to change notification settings - Fork 61
/
_global_parameters.yaml
43 lines (43 loc) · 1.2 KB
/
_global_parameters.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
openapi: 3.1.0
info:
title: ''
version: ''
components:
parameters:
pretty:
name: pretty
in: query
description: Whether to pretty format the returned JSON response.
schema:
type: boolean
default: false
human:
name: human
in: query
description: Whether to return human readable values for statistics.
schema:
type: boolean
default: true
error_trace:
name: error_trace
in: query
description: Whether to include the stack trace of returned errors.
schema:
type: boolean
default: false
source:
name: source
in: query
description: The URL-encoded request definition. Useful for libraries that do not accept a request body for non-POST requests.
schema:
type: string
filter_path:
name: filter_path
in: query
description: Used to reduce the response. This parameter takes a comma-separated list of filters. It supports using wildcards to match any field or part of a field’s name. You can also exclude fields with "-".
schema:
oneOf:
- type: string
- type: array
items:
type: string