-
Notifications
You must be signed in to change notification settings - Fork 0
/
courses.html
119 lines (94 loc) · 3.45 KB
/
courses.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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
<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>courses</h1>
<h2>Description</h2>
<p>
The list of Coursera's courses on the Phoenix platform, including info on its important dates (e.g. when it was launched)
</p>
<h2> Columns </h2>
<table>
<tr><th>Name</th><th>Description</th></tr>
<tr>
<td>course_id</td><td>22 character unique string identifying an individual course</td>
</tr>
<tr>
<td>course_slug</td><td>The shortname of a course. This can be found in the course url, in the piece immediately following "coursera.org/learn/".</td>
</tr>
<tr>
<td>course_name</td><td>The name of a course. </td>
</tr>
<tr>
<td>course_launch_ts</td><td>The timestamp of when a course was made available to learners. </td>
</tr>
<tr>
<td>course_update_ts</td><td>The timestamp of when a course was last updated. </td>
</tr>
<tr>
<td>course_deleted</td><td>The timestamp of when a course was deleted. </td>
</tr>
<tr>
<td>course_graded</td><td>Indicates whether a course contains graded items: 0 (no graded items), 1 (has graded items)</td>
</tr>
<tr>
<td>course_desc</td><td>The course description which appears on the landing page</td>
</tr>
<tr>
<td>course_restricted</td><td>Indicates whether enroll access to the course is open or restricted only to eligible participants. All courses are unrestricted with the exception of deprecated courses: 0 (unrestricted), 1 (restricted)</td>
</tr>
<tr>
<td>course_verification_enabled_at_ts</td><td>The timestamp of when Course Certificates were enabled for a course. </td>
</tr>
<tr>
<td>primary_translation_equivalent_course_id</td><td>The course id for the primary translation of a course. </td>
</tr>
<tr>
<td>course_preenrollment_ts</td><td>The timestamp of when pre-enrollment was opened for a course. </td>
</tr>
<tr>
<td>course_workload</td><td>The estimated workload of a course as shown on the course description page. </td>
</tr>
<tr>
<td>course_session_enabled_ts</td><td>The timestamp of when this course used sessions (instead of on-demand)</td>
</tr>
</table>
<h2>SQL create statement</h2>
<pre>
CREATE TABLE courses (
course_id VARCHAR(50)
,course_slug VARCHAR(2000)
,course_name VARCHAR(2000)
,course_launch_ts TIMESTAMP
,course_update_ts TIMESTAMP
,course_deleted BOOL
,course_graded BOOL
,course_desc VARCHAR(10000)
,course_restricted BOOL
,course_verification_enabled_at_ts TIMESTAMP
,primary_translation_equivalent_course_id VARCHAR(50)
,course_preenrollment_ts TIMESTAMP
,course_workload VARCHAR(100)
,course_session_enabled_ts TIMESTAMP
,PRIMARY KEY (course_id)
);
</pre>
</div>