new Course()
Properties:
Name | Type | Description | |||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
name |
string | ||||||||||||||||
courseNumber |
string | ||||||||||||||||
teacher |
string | ||||||||||||||||
roomName |
string | ||||||||||||||||
_id |
string | unique id for the course |
|||||||||||||||
grades |
object | grades for the course Properties
|
|||||||||||||||
placement |
object | when the class takes place Properties
|
Example
{
"name": "2 English II",
"courseNumber": "000703",
"teacher": "John Doe",
"roomName": "205B",
"_id": "6278079",
"grades": {
"score": "A-",
"percent": 89.76,
"totalPoints": 227,
"pointsEarned": 207
},
"placement": {
"periodName": "6",
"periodSeq": 7,
"startTime": "14:00:00",
"endTime": "15:00:00"
}
}