-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathopenapi.yaml
156 lines (156 loc) · 4.38 KB
/
openapi.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
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
openapi: 3.0.1
info:
title: Online Order API
description: A basic API for working with the Swagger tools
contact:
name: The Online Store
email: [email protected]
version: 1.0.0
servers:
- url: /
paths:
/orders:
summary: Get all the orders data
description: This path is used to retrieve all the orders data from the orders.json
file
get:
tags:
- Orders
summary: Gets the order data
description: Retrieve the order information from the orders.json file
operationId: get_orders
responses:
"200":
description: Success
content:
application/json:
examples:
orders:
value: "{\"orders\":[{\"name\":\"Carey Maynard\",\"id\":\"001\"\
,\"state\":\"pending\"},{\"name\":\"Angelo Ayala\",\"id\":\"002\"\
,\"state\":\"canceled\"},{\"name\":\"Regina Yates\",\"id\":\"\
003\",\"state\":\"pending\"},{\"name\":\"Elliott Mcclure\",\"\
id\":\"004\",\"state\":\"pending\"}]}"
x-swagger-router-controller: Orders
/neworder:
summary: Add new orders
description: This path is used to add a new order to the orders.json file
post:
tags:
- New Order
summary: Add a new order
description: Add a new order to the orders.json file
operationId: new_order
requestBody:
description: A new order object
content:
application/json:
schema:
$ref: '#/components/schemas/Order'
required: true
responses:
"200":
description: Success
content:
text/plain; charset=utf-8:
examples:
Message:
value: Success
"400":
description: Invalid Argument Provided
content:
text/plain; charset=utf-8:
examples:
Error:
value: Invalid Argument
x-swagger-router-controller: NewOrder
/update/{id}:
summary: Update the state of an order
description: This path is used to change the status of an order with the matching
id in the orders.json file
put:
tags:
- Update Order
summary: Update the state of an order
description: Update the state of an order with a matching id in the orders.json
file
operationId: update_order
parameters:
- name: id
in: path
description: The id of the order.
required: true
style: simple
explode: false
schema:
type: string
requestBody:
description: A state string
content:
text/plain:
schema:
type: string
responses:
"200":
description: Success
content:
text/plain; charset=utf-8:
examples:
Message:
value: Success
"400":
description: Invalid Argument Provided
content:
text/plain; charset=utf-8:
examples:
Error:
value: Invalid Argument
x-swagger-router-controller: UpdateOrder
/delete/{id}/:
summary: Delete an order
description: This path is used to delete an order with the matching id from the
orders.json file
delete:
tags:
- Delete Order
summary: Deletes an order
description: Delete an order with a matching id from the orders.json file
operationId: delete_order
parameters:
- name: id
in: path
description: The id of the order.
required: true
style: simple
explode: false
schema:
type: string
responses:
"200":
description: Success
content:
text/plain; charset=utf-8:
examples:
Message:
value: Success
"400":
description: Invalid Argument Provided
content:
text/plain; charset=utf-8:
examples:
Error:
value: Invalid Argument
x-swagger-router-controller: DeleteOrder
components:
schemas:
Order:
type: object
properties:
name:
type: string
id:
type: string
state:
type: string
xml:
name: Order