-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathv3.1-lms.yml
More file actions
624 lines (624 loc) · 14 KB
/
v3.1-lms.yml
File metadata and controls
624 lines (624 loc) · 14 KB
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
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
basePath: /v3.1
definitions:
AssigneeMode:
enum:
- all
- individuals
type: string
Assignment:
properties:
assignee_ids:
items:
type: string
type: array
x-omitempty: true
assignee_mode:
$ref: '#/definitions/AssigneeMode'
x-nullable: true
attachments:
items:
$ref: '#/definitions/Attachment'
type: array
x-omitempty: true
category_id:
type: string
x-nullable: true
created:
format: datetime
type: string
x-nullable: true
description:
type: string
description_plaintext:
type: string
x-nullable: true
display_date:
format: datetime
type: string
x-nullable: true
due_date:
format: datetime
type: string
x-nullable: true
end_date:
format: datetime
type: string
x-nullable: true
grading_scale:
items:
$ref: '#/definitions/GradingScale'
type: array
x-omitempty: true
grading_type:
$ref: '#/definitions/GradingType'
id:
type: string
last_modified:
format: datetime
type: string
x-nullable: true
max_attempts:
type: integer
x-omitempty: true
points_possible:
format: float
type: number
x-nullable: true
start_date:
format: datetime
type: string
x-nullable: true
state:
$ref: '#/definitions/AssignmentState'
submission_types:
items:
$ref: '#/definitions/SubmissionType'
type: array
x-omitempty: true
term_id:
type: string
x-nullable: true
title:
type: string
type: object
AssignmentRequest:
properties:
assignee_ids:
items:
type: string
type: array
x-omitempty: true
assignee_mode:
$ref: '#/definitions/AssigneeMode'
x-nullable: true
attachments:
items:
$ref: '#/definitions/AttachmentRequest'
type: array
x-omitempty: true
description:
type: string
x-nullable: true
description_plaintext:
type: string
x-nullable: true
display_date:
format: datetime
type: string
x-nullable: true
due_date:
format: datetime
type: string
x-nullable: true
end_date:
format: datetime
type: string
x-nullable: true
grading_type:
$ref: '#/definitions/GradingType'
x-nullable: true
max_attempts:
type: integer
x-omitempty: true
points_possible:
format: float
type: number
x-nullable: true
start_date:
format: datetime
type: string
x-nullable: true
submission_types:
items:
$ref: '#/definitions/SubmissionType'
type: array
x-omitempty: true
term_id:
type: string
x-nullable: true
title:
type: string
x-nullable: true
type: object
AssignmentResponse:
properties:
data:
$ref: '#/definitions/Assignment'
type: object
AssignmentState:
enum:
- draft
- scheduled
- open
- locked
type: string
Attachment:
properties:
description:
type: string
x-nullable: true
file_external_id:
type: string
x-nullable: true
size:
format: float
type: number
x-omitempty: true
thumbnail_url:
type: string
x-nullable: true
title:
type: string
x-nullable: true
type:
type: string
url:
type: string
x-nullable: true
type: object
AttachmentRequest:
properties:
description:
type: string
x-nullable: true
title:
type: string
x-nullable: true
type:
enum:
- file
type: string
url:
type: string
x-nullable: true
type: object
BadRequest:
properties:
message:
type: string
type: object
GradingScale:
properties:
entries:
items:
$ref: '#/definitions/GradingScaleEntry'
type: array
x-nullable: true
name:
type: string
type: object
GradingScaleEntry:
properties:
name:
type: string
value:
type: string
type: object
GradingType:
enum:
- points
- percent
- pass_fail
- letter_grade
type: string
InternalError:
properties:
message:
type: string
type: object
NotFound:
properties:
message:
type: string
type: object
Submission:
properties:
assignment_id:
type: string
attachments:
items:
$ref: '#/definitions/Attachment'
type: array
x-omitempty: true
created:
format: datetime
type: string
x-nullable: true
extra_attempts:
type: integer
x-omitempty: true
flags:
items:
$ref: '#/definitions/SubmissionFlag'
type: array
x-omitempty: true
grade:
type: string
x-nullable: true
grade_comment:
type: string
x-nullable: true
grade_points:
format: float
type: number
x-omitempty: true
grader_id:
type: string
x-nullable: true
id:
description: |
Deprecated. The Clever unique identifier of the submission. Will always be empty if the
upstream LMS provider is Google Classroom; it is currently still present for Canvas and
Schoology LMSs but will be removed in the near future.
type: string
last_modified:
format: datetime
type: string
x-nullable: true
override_due_date:
format: datetime
type: string
x-nullable: true
state:
$ref: '#/definitions/SubmissionState'
user_id:
type: string
type: object
SubmissionFlag:
enum:
- excused
- late
- missing
type: string
SubmissionRequest:
properties:
attachments:
items:
$ref: '#/definitions/AttachmentRequest'
type: array
x-omitempty: true
extra_attempts:
type: integer
x-omitempty: true
flags:
items:
$ref: '#/definitions/SubmissionFlag'
type: array
x-omitempty: true
grade:
type: string
x-nullable: true
grade_comment:
type: string
x-nullable: true
grade_points:
format: float
type: number
x-omitempty: true
grader_id:
type: string
x-nullable: true
override_due_date:
format: datetime
type: string
x-nullable: true
state:
$ref: '#/definitions/SubmissionState'
x-nullable: true
type: object
SubmissionResponse:
properties:
data:
$ref: '#/definitions/Submission'
type: object
SubmissionState:
enum:
- created
- submitted
- returned
- reclaimed
type: string
SubmissionType:
enum:
- link
- file
- text
- discussion
type: string
SubmissionsLink:
properties:
rel:
enum:
- next
type: string
uri:
type: string
type: object
SubmissionsResponse:
properties:
data:
items:
$ref: '#/definitions/Submission'
type: array
links:
items:
$ref: '#/definitions/SubmissionsLink'
type: array
x-omitempty: true
type: object
Unauthorized:
properties:
message:
type: string
type: object
host: api.clever.com
info:
description: The Clever LMS Connect API
title: LMS Connect API
version: 3.1.0
paths:
/sections/{section_id}/assignments:
post:
description: Creates a new assignment in the specified section
operationId: createAssignmentForSection
parameters:
- format: mongo-id
in: path
name: section_id
required: true
type: string
- in: body
name: assignmentRequestBody
required: true
schema:
$ref: '#/definitions/AssignmentRequest'
responses:
"200":
description: OK Response
schema:
$ref: '#/definitions/AssignmentResponse'
"400":
$ref: '#/responses/BadRequest'
"401":
$ref: '#/responses/Unauthorized'
tags:
- Assignments
/sections/{section_id}/assignments/{assignment_id}:
delete:
description: Deletes an existing assignment in the specified section
operationId: deleteAssignmentForSection
parameters:
- format: mongo-id
in: path
name: section_id
required: true
type: string
- in: path
name: assignment_id
required: true
type: string
responses:
"200":
description: OK Response
"401":
$ref: '#/responses/Unauthorized'
"404":
$ref: '#/responses/NotFound'
tags:
- Assignments
get:
description: Returns a specific assignment for a section
operationId: getAssignmentForSection
parameters:
- format: mongo-id
in: path
name: section_id
required: true
type: string
- in: path
name: assignment_id
required: true
type: string
responses:
"200":
description: OK Response
schema:
$ref: '#/definitions/AssignmentResponse'
"401":
$ref: '#/responses/Unauthorized'
"404":
$ref: '#/responses/NotFound'
tags:
- Assignments
patch:
description: Updates an existing assignment in the specified section
operationId: updateAssignmentForSection
parameters:
- format: mongo-id
in: path
name: section_id
required: true
type: string
- in: path
name: assignment_id
required: true
type: string
- in: body
name: assignmentRequestBody
required: true
schema:
$ref: '#/definitions/AssignmentRequest'
responses:
"200":
description: OK Response
schema:
$ref: '#/definitions/AssignmentResponse'
"400":
$ref: '#/responses/BadRequest'
"401":
$ref: '#/responses/Unauthorized'
"404":
$ref: '#/responses/NotFound'
"500":
$ref: '#/responses/InternalError'
tags:
- Assignments
/sections/{section_id}/assignments/{assignment_id}/submissions:
get:
description: Returns the submissions for an assignment.
operationId: getSubmissionsForAssignment
parameters:
- format: mongo-id
in: path
name: section_id
required: true
type: string
- in: path
name: assignment_id
required: true
type: string
- in: query
name: cursor
type: string
- in: query
maximum: 100
minimum: 1
name: limit
type: integer
responses:
"200":
description: OK Response
schema:
$ref: '#/definitions/SubmissionsResponse'
"401":
$ref: '#/responses/Unauthorized'
"404":
$ref: '#/responses/NotFound'
tags:
- Assignments
/sections/{section_id}/assignments/{assignment_id}/submissions/{user_id}:
get:
description: Returns a specific user's submission for an assignment.
operationId: getSubmissionForAssignment
parameters:
- format: mongo-id
in: path
name: section_id
required: true
type: string
- in: path
name: assignment_id
required: true
type: string
- format: mongo-id
in: path
name: user_id
required: true
type: string
responses:
"200":
description: OK Response
schema:
$ref: '#/definitions/SubmissionResponse'
"401":
$ref: '#/responses/Unauthorized'
"404":
$ref: '#/responses/NotFound'
tags:
- Submissions
patch:
description: Updates an existing submission in the specified assignment for a user.
operationId: updateSubmissionForAssignment
parameters:
- format: mongo-id
in: path
name: section_id
required: true
type: string
- in: path
name: assignment_id
required: true
type: string
- format: mongo-id
in: path
name: user_id
required: true
type: string
- in: body
name: submissionRequestBody
required: true
schema:
$ref: '#/definitions/SubmissionRequest'
responses:
"200":
description: OK Response
schema:
$ref: '#/definitions/SubmissionResponse'
"400":
$ref: '#/responses/BadRequest'
"401":
$ref: '#/responses/Unauthorized'
"404":
$ref: '#/responses/NotFound'
"500":
$ref: '#/responses/InternalError'
tags:
- Submissions
produces:
- application/json
responses:
BadRequest:
description: Bad Request
schema:
$ref: '#/definitions/BadRequest'
InternalError:
description: Internal Error
schema:
$ref: '#/definitions/InternalError'
NotFound:
description: Entity Not Found
schema:
$ref: '#/definitions/NotFound'
Unauthorized:
description: Not authorized
schema:
$ref: '#/definitions/Unauthorized'
schemes:
- https
security:
- oauth: []
securityDefinitions:
oauth:
authorizationUrl: https://clever.com/oauth/authorize
flow: accessCode
tokenUrl: https://clever.com/oauth/tokens
type: oauth2
swagger: "2.0"
x-samples-languages:
- curl
- node
- ruby
- python
- php
- java
- go