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
export default [ | |
{ | |
_id: "123", | |
username: "iron_man", | |
password: "stark123", | |
firstName: "Tony", | |
lastName: "Stark", | |
email: "tony@stark.com", | |
dob: "1970-05-29T00:00:00.000Z", | |
role: "FACULTY", |
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
[ | |
{ | |
"_id": "A101", | |
"title": "Propulsion Assignment", | |
"description": "Design a propulsion system for a spacecraft.", | |
"course": "RS101", | |
"due": "2016-03-01", | |
"available": "2016-02-01", | |
"points": 100 | |
}, |
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
[ | |
{ | |
"username": "iron_man", | |
"password": "stark123", | |
"firstName": "Tony", | |
"lastName": "Stark", | |
"email": "tony@stark.com", | |
"dob": "1970-05-29", | |
"role": "STUDENT", | |
"loginId": "001234561S", |
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
[ | |
{ | |
"title": "Propulsion Assignment", | |
"course": "RS101" | |
}, | |
{ | |
"title": "Combustion Analysis", | |
"course": "RS101" | |
}, | |
{ |
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
[ | |
{ | |
"name": "Introduction to Rocket Propulsion", | |
"description": "Basic principles of rocket propulsion and rocket engines.", | |
"course": "RS101", | |
"lessons": [ | |
{ | |
"id": "L101", | |
"name": "History of Rocketry", | |
"description": "A brief history of rocketry and space exploration.", |
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
[ | |
{ | |
"number": "RS101", | |
"name": "Rocket Propulsion", | |
"startDate": "2023-01-10", | |
"endDate": "2023-05-15", | |
"department": "D123", | |
"credits": 4, | |
"description": "This course provides an in-depth study of the fundamentals of rocket propulsion, covering topics such as propulsion theory, engine types, fuel chemistry, and the practical applications of rocket technology. Designed for students with a strong background in physics and engineering, the course includes both theoretical instruction and hands-on laboratory work" | |
}, |
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
export default [ | |
{ | |
_id: "1", | |
user: "121", | |
course: "RS101", | |
}, | |
{ | |
_id: "2", | |
user: "122", | |
course: "RS101", |
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
export default [ | |
{ | |
_id: "1", | |
student: "121", | |
assignment: "A101", | |
grade: "90", | |
}, | |
{ | |
_id: "2", | |
student: "122", |
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
export default [ | |
{ | |
_id: "121", | |
username: "iron_man", | |
password: "stark123", | |
firstName: "Tony", | |
lastName: "Stark", | |
email: "tony@stark.com", | |
dob: "1970-05-29", | |
role: "STUDENT", |
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
export default [ | |
{ | |
_id: "M101", | |
name: "Introduction to Rocket Propulsion", | |
description: "Basic principles of rocket propulsion and rocket engines.", | |
course: "RS101", | |
lessons: [ | |
{ | |
_id: "L101", | |
name: "History of Rocketry", |
NewerOlder