-
Notifications
You must be signed in to change notification settings - Fork 0
/
openapi.json
172 lines (172 loc) · 4.05 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
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
{
"openapi": "3.0.1",
"info": {
"title": "API Service",
"version": "1.0.0",
"description": "Aleno Pricing Tables",
"contact": {
"email": "[email protected]",
"name": "Fadi Nasr"
}
},
"servers": [
{
"url": "http://localhost:3030/"
}
],
"tags": [
{
"name": "Aleno",
"description": "Aleno Pricing API"
}
],
"paths": {
"/api/all": {
"get": {
"tags": [
"Pricing Items"
],
"summary": "Get all Pricing Items parsed from CSV file into the database",
"parameters": [],
"operationId": "pricing-all",
"responses": {
"200": {
"description": "Success",
"content": {
"application/json": {
"schema": {
"properties": {
"items": {
"type": "array",
"items": {
"$ref": "#/components/schemas/PricingItem"
}
}
}
}
}
}
},
"500": {
"description": "Internal Server error",
"content": {
"application/json": {
"schema": {
"properties": {
"error": {
"type": "object",
"items": {
"$ref": "#/components/schemas/Error"
}
}
}
}
}
}
}
}
}
},
"/api/uploads/csv": {
"post": {
"tags": [
"Pricing file"
],
"requestBody": {
"content": {
"multipart/form-data": {
"schema": {
"type": "object",
"properties": {
"file": {
"type": "string",
"format": "base64"
}
}
},
"encoding": {
"file": {
"contentType": "text/csv"
}
}
}
}
},
"summary": "Upload a CSV file to fill-up the Database",
"operationId": "pricing-upload",
"responses": {
"200": {
"description": "Success",
"content": {
"application/json": {
"schema": {
"properties": {
"message": {
"type": "string",
"example": "Uploaded Successfully!"
}
}
}
}
}
},
"500": {
"description": "Internal Server error",
"content": {
"application/json": {
"schema": {
"properties": {
"error": {
"type": "object",
"items": {
"$ref": "#/components/schemas/Error"
}
}
}
}
}
}
}
}
}
}
},
"components": {
"schemas": {
"PricingItem": {
"type": "object",
"properties": {
"tiers": {
"type": "string",
"example": "Create your own reports"
},
"starter": {
"type": "string",
"example": "3"
},
"advanced": {
"type": "string",
"example": "10"
},
"enterprise": {
"type": "string",
"example": "15"
},
"_id": {
"type": "string",
"example": "5d7224d3b40b1a1a046697dd"
}
}
},
"Error": {
"type": "object",
"properties": {
"message": {
"type": "string",
"example": "Internal Server Error"
}
}
}
}
}
}