Created
August 18, 2016 10:17
-
-
Save excalliburbd/91cf2c57c9eee8f98a10f219b09d4dc5 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| semester: String, | |
| student:{ | |
| name: String, | |
| id: String, | |
| adviser: String, | |
| creditCompleted: Number, | |
| creditAttempted: Number, | |
| }, | |
| courseList:[ | |
| { | |
| name: String, | |
| id: String, | |
| slots: [ | |
| { | |
| faculty: String, | |
| time: Date, | |
| isLab: boolean, | |
| exam: String | |
| }, | |
| { | |
| ... | |
| } | |
| ] | |
| }, | |
| { | |
| ... | |
| } | |
| ], | |
| selected:[ | |
| { | |
| name: String, | |
| id: String, | |
| slot:{ | |
| faculty: String, | |
| time: Date, | |
| isLab: boolean, | |
| exam: String | |
| } | |
| }, | |
| { | |
| ... | |
| } | |
| ] | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment