forked from instructure/pandarus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
plagiarism_detection_platform_assignments.json
78 lines (77 loc) · 2.31 KB
/
plagiarism_detection_platform_assignments.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
{
"apiVersion": "1.0",
"swaggerVersion": "1.2",
"basePath": "https://canvas.instructure.com/api",
"resourcePath": "/plagiarism_detection_platform_assignments",
"produces": [
"application/json"
],
"apis": [
{
"path": "/lti/assignments/{assignment_id}",
"description": "Get a single Canvas assignment by Canvas id or LTI id. Tool providers may only access\nassignments that are associated with their tool.",
"operations": [
{
"method": "GET",
"summary": "Get a single assignment (lti)",
"notes": "Get a single Canvas assignment by Canvas id or LTI id. Tool providers may only access\nassignments that are associated with their tool.",
"nickname": "get_single_assignment_lti",
"parameters": [
{
"paramType": "path",
"name": "assignment_id",
"description": "ID",
"type": "string",
"format": null,
"required": true
},
{
"paramType": "query",
"name": "user_id",
"description": "The id of the user. Can be a Canvas or LTI id for the user.",
"type": "string",
"format": null,
"required": false
}
],
"type": "LtiAssignment"
}
]
}
],
"models": {
"LtiAssignment": {
"id": "LtiAssignment",
"description": "A Canvas assignment",
"required": [
],
"properties": {
"id": {
"example": 4,
"type": "integer"
},
"name": {
"example": "Midterm Review",
"type": "string"
},
"description": {
"example": "<p>Do the following:</p>...",
"type": "string"
},
"points_possible": {
"example": 10,
"type": "integer"
},
"due_at": {
"description": "The due date for the assignment. If a user id is supplied and an assignment override is in place this field will reflect the due date as it applies to the user.",
"example": "2012-07-01T23:59:00-06:00",
"type": "datetime"
},
"lti_id": {
"example": "86157096483e6b3a50bfedc6bac902c0b20a824f",
"type": "string"
}
}
}
}
}