-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathswagger.json
359 lines (359 loc) · 10.2 KB
/
swagger.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
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
{
"swagger": "2.0",
"info": {
"title": "Course memo/Kurs-PM API",
"description": "Api to store information about uploaded course memos to be used in course development and course info projects",
"version": "1.0.0"
},
"basePath": "/api/kurs-pm",
"produces": ["application/json"],
"paths": {
"/_checkAPIkey": {
"get": {
"tags": ["system"],
"operationId": "checkAPIkey",
"summary": "Test authentication setup",
"description": "Secured test endpoint which can be used to validate that a client has a working authentication setup\n\n_(System.checkAPIKey)_",
"parameters": [],
"responses": {
"200": {
"description": "The given authentication is **accepted**"
},
"401": {
"description": "This endpoint is secured - **credentials are missing or invalid**."
},
"default": {
"description": "Unexpected response - internal error"
}
},
"security": [{ "api_key": ["read"] }]
}
},
"/v1/courseMemoData/{id}": {
"get": {
"operationId": "getCourseMemoDataById",
"summary": "Get course memo document descriptive data by document unique id ",
"description": "Gets some form of data that only requires read access",
"parameters": [
{
"name": "id",
"in": "path",
"description": "Id of the round.semester.year.x to course memo data",
"required": true,
"type": "string"
}
],
"tags": ["v1"],
"responses": {
"200": {
"description": "The requested data",
"schema": {
"$ref": "#/definitions/MemoData"
}
},
"401": {
"description": "This endpoint is secured - **credentials are missing or invalid**."
},
"default": {
"description": "Unexpected error",
"schema": {
"$ref": "#/definitions/Error"
}
}
},
"security": [
{
"api_key": ["read"]
}
]
},
"post": {
"operationId": "postCourseMemoData",
"summary": "Saves an object of one course memo document descriptive data in the database per course and term",
"description": "Saves a course memo document descriptive data in the database per course and term",
"parameters": [
{
"name": "roundCourseMemoData",
"in": "body",
"description": "Array with memo data objects",
"required": true,
"schema": {
"$ref": "#/definitions/MemoData"
}
}
],
"tags": ["v1"],
"responses": {
"200": {
"description": "A successful save"
},
"401": {
"description": "This endpoint is secured - **credentials are missing or invalid**."
},
"default": {
"description": "Unexpected error",
"schema": {
"$ref": "#/definitions/Error"
}
}
},
"security": [
{
"api_key": ["write"]
}
]
},
"put": {
"operationId": "putCourseMemoDataById",
"summary": "Update an existing object in the database",
"description": "Update an existing object in the database",
"parameters": [
{
"name": "roundCourseMemoData",
"in": "body",
"description": "Course Memo Data for specific term and course round",
"schema": {
"$ref": "#/definitions/MemoData"
}
}
],
"tags": ["v1"],
"responses": {
"200": {
"description": "A successful update"
},
"401": {
"description": "This endpoint is secured - **credentials are missing or invalid**."
},
"default": {
"description": "Unexpected error",
"schema": {
"$ref": "#/definitions/Error"
}
}
},
"security": [
{
"api_key": ["write"]
}
]
},
"delete": {
"operationId": "deleteCourseMemoDataById",
"summary": "Delete a course memo",
"description": "Delete all information for course memo with sent id",
"parameters": [
{
"name": "id",
"in": "path",
"description": "Id of the round.semester.year.x to delete course memo data",
"required": true,
"type": "string"
}
],
"tags": ["v1"],
"responses": {
"200": {
"description": "The analysis was deleted",
"schema": {
"$ref": "#/definitions/MemoData"
}
},
"401": {
"description": "This endpoint is secured - **credentials are missing or invalid**."
},
"default": {
"description": "Unexpected error",
"schema": {
"$ref": "#/definitions/Error"
}
}
},
"security": [
{
"api_key": ["read"]
}
]
}
},
"/v1/usedRoundsForCourse/{courseCode}/semester/{semester}": {
"get": {
"operationId": "getUsedRounds",
"summary": "Gets a list of used round ids for a semester in a course",
"parameters": [
{
"name": "courseCode",
"in": "path",
"description": "Course code, six characters",
"required": true,
"type": "string"
},
{
"name": "semester",
"description": "Semester for rounds",
"in": "path",
"required": true,
"type": "string"
}
],
"tags": ["v1"],
"responses": {
"200": {
"description": "Round ids",
"schema": {
"$ref": "#/definitions/UsedRoundsForCourseAndSemester"
}
},
"401": {
"description": "This endpoint is secured - **credentials are missing or invalid**."
},
"400": {
"description": "Bad Request, something with the request is invalid",
"schema": {
"$ref": "#/definitions/Error"
}
},
"404": {
"description": "No organization or user matched the Ids",
"schema": {
"$ref": "#/definitions/Error"
}
},
"default": {
"description": "Unexpected error",
"schema": {
"$ref": "#/definitions/Error"
}
}
},
"security": [
{
"api_key": ["read"]
}
]
}
}
},
"securityDefinitions": {
"api_key": {
"type": "apiKey",
"name": "api_key",
"in": "header",
"scopes": {
"read": "Read access to data",
"write": "Write access to data"
}
}
},
"definitions": {
"MemoData": {
"properties": {
"_id": {
"type": "string",
"description": "Unique identifier representing some specific data"
},
"courseCode": {
"type": "string",
"description": "Course code for which it is valid"
},
"pdfMemoUploadDate": {
"type": "string",
"description": "When document were published (first)?? time"
},
"changedBy": {
"type": "string",
"description": "Unique KTH id of user who uploaded or changed this document data, f.e., u1iooii,"
},
"semester": {
"type": "string",
"description": "Course start term year (spring(VT)-1, autumn(HT)-2) , f.e. 20182 or 20181 (termin)"
},
"courseMemoFileName": {
"type": "string",
"description": "Uploaded courseMemo file"
},
"lastChangeDate": {
"type": "string",
"description": "Date and time for last change, set by API"
},
"previousFileList": {
"type": "array",
"items": "object",
"description": "Array for object with previous memo files and its upload date",
"properties": {
"courseMemoFileName": {
"type": "string",
"description": "File name of a previous course memo"
},
"lastChangeDate": {
"type": "string",
"description": "Published date of a previous course memo"
},
"version": {
"type": "string",
"description": "Version number of course memo"
}
}
}
}
},
"MemoDataListForCourseCode": {
"properties": {
"_id": {
"type": "string",
"description": "Unique identifier representing some specific data"
},
"courseCode": {
"type": "string",
"description": "Course code for which it is valid"
},
"pdfMemoUploadDate": {
"type": "string",
"description": "When document were published (first)?? time"
},
"courseMemoFileName": {
"type": "string",
"description": "Uploaded courseMemo file"
},
"changedAfterPublishedDate": {
"type": "string",
"description": "Date for changes made after published???"
}
}
},
"UsedRoundsForCourseAndSemester": {
"memoList": {
"type": "string",
"description": "Who made changes to documents"
}
},
"Error": {
"properties": {
"code": {
"type": "integer",
"format": "int32"
},
"message": {
"type": "string"
},
"fields": {
"type": "string"
}
}
},
"UserList": {
"properties": {
"code": {
"type": "integer",
"format": "int32"
},
"message": {
"type": "string"
},
"fields": {
"type": "string"
}
}
}
}
}