SENG499-COMPANY4 / frontend

A course scheduler created for the University of Victoria Software Engineering department.
http://seng-scheduler.web.app
3 stars 3 forks source link

Create Dummy JSON For Calendar Testing #17

Open markmotet opened 1 year ago

markmotet commented 1 year ago

We should make a fake json that we can parse while the backend works on sending us the real one.

Algorithm 1 suggested this format:

{"schedule": [ { "timeslot": 0830, "day": ["Monday", "Thursday"], "coursename": "SENG499", "room": "ECS123", "professor": "Navneet Popli", "type": "lecture" }, { "timeslot": 0830, "day": ["Tuesday", "Wednesday", "Friday"], "coursename": "SENG440", "room": "ECS125", "professor": "Mihai SIMA", "type": "lecture" },

]

}