Schema
Note: All the following tables have accompanying tables called
tableName_aggregate
for aggregation queries, andtableName_by_pk
for querying individual rows by primary key optimally
Buildings
Information about buildings at UNSW Kensington Campus.
Field | Type | Description | Example |
---|---|---|---|
| String | Primary key. Building ID, in the format |
|
| String | Building name. |
|
| String[] | List of alternative names (if any). |
|
| Float | Latitude of the building. |
|
| Float | Longitude of the building. |
|
| Room[] | List of rooms inside this building. | See Rooms section |
Rooms
Information about rooms at UNSW Kensington Campus.
Field | Type | Description | Example |
---|---|---|---|
| String | Primary key. Room ID, in the format |
|
| String | Room name. |
|
| String | Abbreviated room name (as seen on myUNSW timetables). |
|
| String | Type of room (e.g. lecture room vs computer lab). |
|
| Integer | Number of people that the room is designed to fit. |
|
| Float | Abbreviation of the school that manages the building, or |
|
| String | Type of floor, one of: Flat, Tiered, Other, |
|
| String | Type of seating, one of: Movable, Fixed, |
|
| String[] | Types of microphones available in the room |
|
| String[] | Accessibility features. |
|
| String[] | Audio-visual features. |
|
| String[] | IT features. |
|
| String[] | Writing media available. |
|
| String[] | Service amenities. |
|
| Building | Building this room is in. |
|
| Booking[] | Bookings for this room. |
|
Bookings
Bookings for rooms at UNSW Kensington Campus. Primary key is the combination of (name, start, end)
.
Field | Type | Description | Example |
---|---|---|---|
| String | Name of the bookings. |
|
| String | Booking type, one of: 'LIB', 'CLASS', 'BLOCK', 'SOCIETY', 'MISC', 'INTERNAL'. |
|
| String | Start time of booking, as an ISO datetime string. |
|
| String | End time of booking, as an ISO datetime string. |
|
| Room | The room this booking is for. | See Rooms section |
Courses
Information about courses at UNSW.
Field | Type | Description | Example |
---|---|---|---|
| String | Primary key. The course code. |
|
| String | Course name. |
|
| Integer | Units of credit. |
|
| String | Faculty that manages the course. |
|
| String | School that manages the course. |
|
| String | Campus that the course is delivered at. |
|
| String | Level of student that can enrol in the course. |
|
| String | Terms the course runs, as a comma-separated, curly-bracket delimited string. |
|
| String[] | Modes in which the course is delivered. |
|
Classes
Information about a specific class (e.g. lecture, tutorial) of a course.
Field | Type | Description | Example |
---|---|---|---|
| String | Primary key. ID of the class, in the format |
|
| Course | The course that this class is for. |
|
| String | Human-readable class section name. |
|
| Term | Term that the class runs in. |
|
| String | Status of enrolment, one of: 'Open', 'Closed', 'Full', 'On Hold' |
|
| String | Class enrolment numbers - |
|
| String | Start and end dates that the class runs between. |
|
| String | Details of any exceptions to the class dates. |
|
| String | Census date (deadline to drop the course without financial penalty) |
|
| String | Whether faculty consent is required to enrol in the class. |
|
| String | Mode in which the class is delivered. |
|
| String | Any additional notes. |
|
Times
Information about a specific time of a class (e.g. two separate lecture times).
Field | Type | Description | Example |
---|---|---|---|
| Course | The course that this class time is for. |
|
| Class | The class this time is for. |
|
| Term | The day of this class time. |
|
| String | Teacher/tutor running the class. |
|
| String | Room the class is held in, in the format |
|
| String | Start and end time. |
|
| String | String describing the weeks in which the class runs. |
|
Handbook
UNSW course handbook information.