forked from zircote/swagger-php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
example-object.yaml
90 lines (90 loc) · 2.17 KB
/
example-object.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
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
openapi: 3.0.0
info:
title: 'Example for response examples value'
description: 'Example info'
contact:
name: 'Swagger API Team'
version: '1.0'
servers:
-
url: 'https://example.localhost'
description: 'API server'
paths:
'/users/{id}':
put:
tags:
- user
summary: 'Updates a user'
description: 'Updates a user'
operationId: updateUser
parameters:
-
name: id
in: path
description: 'Parameter with mutliple examples'
required: true
schema:
type: string
examples:
int:
summary: 'An int value.'
value: '1'
uuid:
summary: 'An UUID value.'
value: 0006faf6-7a61-426c-9034-579f2cfcfa83
responses:
'200':
description: OK
/users:
post:
tags:
- user
summary: 'Adds a new user - with oneOf examples'
description: 'Adds a new user'
operationId: addUser
requestBody:
content:
application/json:
schema:
properties:
id:
type: string
name:
type: string
phone:
oneOf: [{ type: string }, { type: integer }]
type: object
example:
id: a3fb6
name: 'Jessica Smith'
phone: 12345678
responses:
'200':
description: OK
content:
application/json:
schema:
oneOf:
- { $ref: '#/components/schemas/Result' }
- { type: boolean }
examples:
result:
summary: 'An result object.'
value: { success: true }
bool:
summary: 'A boolean value.'
value: false
components:
schemas:
Result:
title: 'Sample schema for using references'
properties:
status:
type: string
error:
type: string
type: object
tags:
-
name: user
description: 'User related operations'