/
Schema

Schema

  • Note: All the following tables have accompanying tables called tableName_aggregate for aggregation queries, and tableName_by_pk for querying individual rows by primary key optimally

Buildings

Information about buildings at UNSW Kensington Campus.

Field

Type

Description

Example

Field

Type

Description

Example

id

String

Primary key. Building ID, in the format {campus}-{grid reference}.

"K-E19"

name

String

Building name.

"Patricia O'Shane"

aliases

String[]

List of alternative names (if any).

["Central Lecture Block"]

lat

Float

Latitude of the building.

-33.917177

long

Float

Longitude of the building.

151.232511

rooms

Room[]

List of rooms inside this building.

See Rooms section

Rooms

Information about rooms at UNSW Kensington Campus.

Field

Type

Description

Example

Field

Type

Description

Example

id

String

Primary key. Room ID, in the format {campus}-{grid reference}-{room number}.

"K-D16-G01"

name

String

Room name.

"Goldstein G01"

abbr

String

Abbreviated room name (as seen on myUNSW timetables).

"Gold G01"

usage

String

Type of room (e.g. lecture room vs computer lab).

"TUSM"

capacity

Integer

Number of people that the room is designed to fit.

38

school

Float

Abbreviation of the school that manages the building, or " " if the room is a CATS room.

" "

floor

String

Type of floor, one of: Flat, Tiered, Other, NULL (no data)

"Flat"

seating

String

Type of seating, one of: Movable, Fixed, NULL (no data)

"Movable"

microphone

String[]

Types of microphones available in the room

["Lectern (fixed)", "Neck (lavalier)"]

accessibility

String[]

Accessibility features.

["Ventilation - Air conditioning", "Power at seat"]

audiovisual

String[]

Audio-visual features.

["Document camera"]

infotechnology

String[]

IT features.

["IT laptop connection"]

writingMedia

String[]

Writing media available.

["Blackboard", "Blackboard, wide", "Whiteboard"]

service

String[]

Service amenities.

["Demonstration gas taps and sinks"]

building

Building

Building this room is in.

 

bookings

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

Field

Type

Description

Example

name

String

Name of the bookings.

"LAWS1052 LEC"

bookingType

String

Booking type, one of: 'LIB', 'CLASS', 'BLOCK', 'SOCIETY', 'MISC', 'INTERNAL'.

"CLASS"

start

String

Start time of booking, as an ISO datetime string.

"2024-02-29T05:00:00+00:00"

end

String

End time of booking, as an ISO datetime string.

"2024-02-29T03:00:00+00:00"

room

Room

The room this booking is for.

See Rooms section

Courses

Information about courses at UNSW.

Field

Type

Description

Example

Field

Type

Description

Example

course_code

String

Primary key. The course code.

"ACCT2511"

course_name

String

Course name.

"Financial Accounting Fundamentals"

uoc

Integer

Units of credit.

6

faculty

String

Faculty that manages the course.

"UNSW Business School"

school

String

School that manages the course.

"School of Acctng, Audit & Tax"

campus

String

Campus that the course is delivered at.

"Sydney"

career

String

Level of student that can enrol in the course.

"Undergraduate"

terms

String

Terms the course runs, as a comma-separated, curly-bracket delimited string.

"{T1,T3}"

modes

String[]

Modes in which the course is delivered.

["Online", "In Person"]

Classes

Information about a specific class (e.g. lecture, tutorial) of a course.

Field

Type

Description

Example

Field

Type

Description

Example

class_id

String

Primary key. ID of the class, in the format {course code}-{class number}.

"ACCT2101-1025"

course

Course

The course that this class is for.

 

section

String

Human-readable class section name.

"T13A"

term

Term

Term that the class runs in.

"T1"

status

String

Status of enrolment, one of: 'Open', 'Closed', 'Full', 'On Hold'

"Open"

course_enrolment

String

Class enrolment numbers - {num enrolled}/{capacity}

"23/24"

offering_period

String

Start and end dates that the class runs between.

"12/02/2024 - 12/05/2024"

meeting_dates

String

Details of any exceptions to the class dates.

"Standard dates"

census_date

String

Census date (deadline to drop the course without financial penalty)

"10/03/2024"

consent

String

Whether faculty consent is required to enrol in the class.

"Consent not required"

mode

String

Mode in which the class is delivered.

"In Person"

class_notes

String

Any additional notes.

 

Times

Information about a specific time of a class (e.g. two separate lecture times).

Field

Type

Description

Example

Field

Type

Description

Example

course

Course

The course that this class time is for.

 

class

Class

The class this time is for.

 

day

Term

The day of this class time.

"Wed"

instructor

String

Teacher/tutor running the class.

"Dr J Renzella"

location

String

Room the class is held in, in the format "{room name} ({room id})"

"Wallace Wurth G06 (K-C27-G06)"

time

String

Start and end time.

"10:00 - 11:00"

weeks

String

String describing the weeks in which the class runs.

"1,2,4-5,8-10"

Handbook

UNSW course handbook information.

 

Related content