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

Make mock JSON for list of UVic buildings and UVic classrooms #23

Closed markmotet closed 1 year ago

markmotet commented 1 year ago

We need a json so that we can automatically fill out the calendar with the buildings and classrooms like this:

Image

The json should be formatted something like this:

{
    "Engineering & Computer Science": {
        "rooms": [
            { "id": "ECS123" },
            { "id": "ECS125" }
        ]
    },
    "David Turpin": {
        "rooms": [
            { "id": "DTBA102" }
        ]
    }
}