-
Notifications
You must be signed in to change notification settings - Fork 0
/
peer_assignments.html
101 lines (80 loc) · 2.89 KB
/
peer_assignments.html
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
<head>
<style>
div {
font-family: monospace;
}
table, th, td {
border: 1px solid black;
border-collapse: collapse;
}
tr:nth-child(odd) {
background-color: #FFFFFF;
}
tr:nth-child(even) {
background-color: #EBF2F2;
}
th, td {
text-align: left;
padding: 5px 10px 5px 5px;
}
</style>
</head>
<div>
<h1>peer_assignments</h1>
<h2>Description</h2>
<p>
Metadata of peer assignments
</p>
<h2> Columns </h2>
<table>
<tr><th>Name</th><th>Description</th></tr>
<tr>
<td>peer_assignment_id</td><td>This is a 'course_content_id', and is versioned. (e.g ABC@1 is version 1)</td>
</tr>
<tr>
<td>peer_assignment_base_id</td><td>The unversioned id</td>
</tr>
<tr>
<td>peer_assignment_type</td><td>The type ("standard", "graded", "closed")</td>
</tr>
<tr>
<td>peer_assignment_required_review_count</td><td>The number of reviews a submitter needs to do (of others' submissions) to get credit.</td>
</tr>
<tr>
<td>peer_assignment_passing_fraction</td><td>Fraction of the maximum possible score that a submitter must achieve in order to pass. This only exists for assignments that generate scores</td>
</tr>
<tr>
<td>peer_assignment_required_reviewer_count_for_score</td><td>The number of reviews a submission must receive to get a score.</td>
</tr>
<tr>
<td>peer_assignment_required_wait_for_score_ms</td><td>Amount of time that must elapse since a submission has been submitted before it may have a score. This only exists for assignments that generate scores.
</td>
</tr>
<tr>
<td>peer_assignment_maximum_score</td><td>Maximum score for this assignment. This is nullable because not all assignments generate scores.
</td>
</tr>
<tr>
<td>peer_assignment_update_ts</td><td>When this version of the assignment was created</td>
</tr>
<tr>
<td>peer_assignment_is_mentor_graded</td><td>No column description available</td>
</tr>
</table>
<h2>SQL create statement</h2>
<pre>
CREATE TABLE peer_assignments (
peer_assignment_id VARCHAR(50)
,peer_assignment_base_id VARCHAR(50)
,peer_assignment_type VARCHAR(50)
,peer_assignment_required_review_count INT4
,peer_assignment_passing_fraction FLOAT8
,peer_assignment_required_reviewer_count_for_score INT4
,peer_assignment_required_wait_for_score_ms INT8
,peer_assignment_maximum_score FLOAT8
,peer_assignment_update_ts TIMESTAMP
,peer_assignment_is_mentor_graded BOOL
,PRIMARY KEY (peer_assignment_id)
);
</pre>
</div>