-
Notifications
You must be signed in to change notification settings - Fork 307
Expand file tree
/
Copy pathparamSerialization.yaml
More file actions
462 lines (450 loc) · 10.2 KB
/
paramSerialization.yaml
File metadata and controls
462 lines (450 loc) · 10.2 KB
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
openapi: 3.0.0
info:
title: Parameter Serialization Demo API
version: 1.0.0
description: An API to demonstrate various parameter serialization options in OpenAPI 3.0
tags:
- name: params
description: Parameter Serialization Tests
paths:
/users/{userId}:
get:
tags:
- params
summary: Get user by ID
description: |
Schema:
```yaml
userId:
in: path
required: true
schema:
type: integer
style: simple
explode: false
```
Example:
```
{userId} = 123
Result: /users/123
```
parameters:
- name: userId
in: path
required: true
schema:
type: integer
style: simple
explode: false
responses:
"200":
description: Successful response
/items/{itemId}:
get:
tags:
- params
summary: Get item by ID (label style)
description: |
Schema:
```yaml
itemId:
in: path
required: true
schema:
type: array
items:
type: integer
style: label
explode: false
```
Example:
```
{itemId} = [1, 2, 3]
Result: /items/.1.2.3
```
parameters:
- name: itemId
in: path
required: true
schema:
type: array
items:
type: integer
style: label
explode: false
responses:
"200":
description: Successful response
/products/{productCode}:
get:
tags:
- params
summary: Get product by code (matrix style)
description: |
Schema:
```yaml
productCode:
in: path
required: true
schema:
type: object
properties:
category:
type: string
id:
type: integer
style: matrix
explode: true
```
Example:
```
{productCode} = {"category": "electronics", "id": 123}
Result: /products;category=electronics;id=123
```
parameters:
- name: productCode
in: path
required: true
schema:
type: object
properties:
category:
type: string
id:
type: integer
style: matrix
explode: true
responses:
"200":
description: Successful response
/api/resource:customVerb:
post:
tags:
- params
summary: Custom verb endpoint in path
description: |
Demonstrates a literal custom verb suffix in the path segment.
Example:
```
Result: /api/resource:customVerb
```
responses:
"200":
description: Successful response
/files/{name}.{ext}:
get:
tags:
- params
summary: Path parameters in the same segment
description: |
Demonstrates multiple path parameters in a single path segment.
Example:
```
{name} = "report"
{ext} = "pdf"
Result: /files/report.pdf
```
parameters:
- name: name
in: path
required: true
schema:
type: string
- name: ext
in: path
required: true
schema:
type: string
responses:
"200":
description: Successful response
/jobs/{id}:cancel:
post:
tags:
- params
summary: Path template combined with custom verb
description: |
Demonstrates a path parameter with a verb-like suffix in the same segment.
Example:
```
{id} = "123"
Result: /jobs/123:cancel
```
parameters:
- name: id
in: path
required: true
schema:
type: string
responses:
"200":
description: Successful response
/search:
get:
tags:
- params
summary: Search with various query parameter styles
description: |
Schema:
```yaml
q:
in: query
schema:
type: string
tags:
in: query
schema:
type: array
items:
type: string
style: form
explode: true
filters:
in: query
schema:
type: object
properties:
minPrice:
type: number
maxPrice:
type: number
style: deepObject
explode: true
sort:
in: query
schema:
type: array
items:
type: string
style: spaceDelimited
explode: false
fields:
in: query
schema:
type: array
items:
type: string
style: pipeDelimited
explode: false
```
Example:
```
q = "openapi"
tags = ["api", "docs"]
filters = {"minPrice": 10, "maxPrice": 100}
sort = ["name", "price"]
fields = ["id", "name", "description"]
Result: /search?q=openapi&tags=api&tags=docs&filters[minPrice]=10&filters[maxPrice]=100&sort=name%20price&fields=id|name|description
```
parameters:
- name: q
in: query
schema:
type: string
- name: tags
in: query
schema:
type: array
items:
type: string
style: form
explode: true
- name: filters
in: query
schema:
type: object
properties:
minPrice:
type: number
maxPrice:
type: number
style: deepObject
explode: true
- name: sort
in: query
schema:
type: array
items:
type: string
style: spaceDelimited
explode: false
- name: fields
in: query
schema:
type: array
items:
type: string
style: pipeDelimited
explode: false
responses:
"200":
description: Successful response
/documents/{docId}:
get:
tags:
- params
summary: Get document with header parameter
description: |
Schema:
```yaml
docId:
in: path
required: true
schema:
type: string
X-API-Version:
in: header
schema:
type: array
items:
type: string
style: simple
explode: false
```
Example:
```
{docId} = "doc123"
X-API-Version: ["v1", "v2"]
Result URL: /documents/doc123
Header: X-API-Version: v1,v2
```
parameters:
- name: docId
in: path
required: true
schema:
type: string
- name: X-API-Version
in: header
schema:
type: array
items:
type: string
style: simple
explode: false
responses:
"200":
description: Successful response
/preferences:
get:
tags:
- params
summary: Get user preferences with cookie parameter
description: |
Schema:
```yaml
userSettings:
in: cookie
schema:
type: object
properties:
theme:
type: string
language:
type: string
style: form
explode: true
```
Example:
```
userSettings = {"theme": "dark", "language": "en"}
Result URL: /preferences
Cookie: theme=dark; language=en
```
parameters:
- name: userSettings
in: cookie
schema:
type: object
properties:
theme:
type: string
language:
type: string
style: form
explode: true
responses:
"200":
description: Successful response
/headers:
get:
tags:
- params
summary: Get with header parameters
description: |
Schema:
```yaml
X-Custom-Header:
in: header
schema:
type: object
properties:
key1:
type: string
key2:
type: string
style: simple
explode: true
```
Example:
```
X-Custom-Header = {"key1": "value1", "key2": "value2"}
Result:
X-Custom-Header: key1=value1
X-Custom-Header: key2=value2
```
parameters:
- name: X-Custom-Header
in: header
schema:
type: object
properties:
key1:
type: string
key2:
type: string
style: simple
explode: true
responses:
"200":
description: Successful response
/cookies:
get:
tags:
- params
summary: Get with cookie parameters
description: |
Schema:
```yaml
userSettings:
in: cookie
schema:
type: object
properties:
theme:
type: string
language:
type: string
style: form
explode: false
```
Example:
```
userSettings = {"theme": "dark", "language": "en"}
Result: userSettings=theme,dark,language,en
```
parameters:
- name: userSettings
in: cookie
schema:
type: object
properties:
theme:
type: string
language:
type: string
style: form
explode: false
responses:
"200":
description: Successful response