forked from goldbergyoni/nodejs-testing-best-practices
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathopenapi.json
124 lines (124 loc) · 2.92 KB
/
openapi.json
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
{
"openapi": "3.0.3",
"info": {
"title": "Shop",
"description": "This is the API docs of the shop API.",
"termsOfService": "http://swagger.io/terms/",
"license": {
"name": "Apache 2.0",
"url": "http://www.apache.org/licenses/LICENSE-2.0.html"
},
"version": "1.0.0"
},
"externalDocs": {
"description": "Find out more about Swagger",
"url": "http://swagger.io"
},
"paths": {
"/order/{orderId}": {
"get": {
"summary": "Find an Order by ID",
"description": "Returns a single order",
"operationId": "getOrderById",
"parameters": [
{
"name": "orderId",
"in": "path",
"description": "ID of order to return",
"required": true,
"schema": {
"type": "integer"
}
}
],
"responses": {
"200": {
"description": "successful",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/Order"
}
}
}
},
"400": {
"description": "Invalid ID",
"content": {}
},
"404": {
"description": "Order not found",
"content": {}
}
}
}
},
"/order": {
"post": {
"summary": "Add a new Order",
"description": "Returns a single order",
"operationId": "addOrder",
"requestBody": {
"description": "New Order To Add",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/Order"
}
}
}
},
"responses": {
"200": {
"description": "Successful",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/Order"
}
}
}
},
"400": {
"description": "User Not Found",
"content": {}
},
"404": {
"description": "User Not Found",
"content": {}
},
"500": {
"description": "Unknown error occured",
"content": {}
}
}
}
}
},
"components": {
"schemas": {
"Order": {
"type": "object",
"required": ["productId", "userId", "mode"],
"properties": {
"id": {
"type": "integer",
"format": "int64"
},
"productId": {
"type": "integer",
"format": "int64"
},
"userId": {
"type": "integer",
"format": "int64"
},
"mode": {
"type": "string",
"format": "string"
}
}
}
}
}
}