Every API here is available over the APIs.io API and to AI agents over MCP.
openapi: 3.2.0
info:
title: Student Web Service (SWS) Schedule API
description: Student Web Service (SWS) provides a RESTful API to access and update central student data. Subscribe to http://mailman.u.washington.edu/mailman/listinfo/sws-client-app-dev to get notifications about planned outages, support and the announcement of new features.
contact:
name: Enterprise Web Services & Events Team
url: https://itconnect.uw.edu/service/enterprise-web-services-and-events/
email: sws-support@uw.edu
version: v5
termsOfService: https://www.washington.edu/online/terms/
servers:
- url: https://ws.admin.washington.edu/student
description: UW-IT Enterprise Web Services production host for the Student Web Service
externalDocs:
description: UW-IT Enterprise Web Services registry
url: https://webservices.washington.edu/sws/
tags:
- name: Schedule
x-operator: institution
x-provenance:
method: derived
source: openapi/_original/university-of-washington-student-web-service.yaml
generated: '2026-08-30'
note: Re-based by the university pipeline on 2026-08-30. refine-openapis had welded the IdCard Web Service title/contact/base onto outputs split from the Student Web Service original; identity restored from the true parent named above and the relative base resolved to the production host published on the EWS registry.
paths:
/v5/schedule/{reg_id}:
get:
tags:
- Schedule
summary: Get the schedules associating a student with registered course sections
description: "<pre>\n {\n \"DisplayTitle\" : \"Student Schedule Search\",\n \"ews_guid\" : \"C473DFA9-17C8-4FF8-8505-4043A7535812\",\n \"LongDescription\" : \"Schedule provides data associating a student with registered course sections \n for the current term\",\n \"ShortDescription\" : \"Search for schedule records for the current term\",\n \"OriginatingSchema\" : [ { \"source\":\"swssdb\" }, { \"source\":\"uweo\" }, { \"source\":\"irws\" } ],\n \"Notes\" : \"This resource requires any of the following ASTRA roles:\n - sws:Support\n - sws:ScheduleReader\n This resource supports the following authentication types:\n - X.509 Certificate\n - NetID \",\n \"Links\" : [ ],\n \"Synonyms\" : []\n }\n </pre>"
operationId: GetCurrentSchedule
parameters:
- name: reg_id
in: path
description: RegIDs are the authoritative unique IDs guaranteed to identify a UW person permanently. RegIDs are assigned to a person by the Identity Registration Service, the authoritative source for person data reconciled from several data sources which may represent multiple records and accounts for a single person. A given RegID will always refer to the same person, regardless of name, status or affiliation changes.
required: true
schema:
maxLength: 32
minLength: 32
type: string
responses:
'400':
description: 'Invalid arg: reg ID'
'404':
description: No schedule found for reg ID
'200':
description: OK
content:
text/html:
schema:
$ref: '#/components/schemas/ScheduleViewModel'
application/xml:
schema:
$ref: '#/components/schemas/ScheduleViewModel'
text/xml:
schema:
$ref: '#/components/schemas/ScheduleViewModel'
text/plain:
schema:
$ref: '#/components/schemas/ScheduleViewModel'
application/json:
schema:
$ref: '#/components/schemas/ScheduleViewModel'
text/json:
schema:
$ref: '#/components/schemas/ScheduleViewModel'
'202':
description: Accepted
'301':
description: MovedPermanently
'302':
description: Found
'304':
description: NotModified
'401':
description: Identity '{identity}' is not authorized to access this resource.
'405':
description: MethodNotAllowed
'500':
description: InternalServerError
'503':
description: ServiceUnavailable
/v5/schedule/{year},{quarter},{reg_id}:
get:
tags:
- Schedule
summary: Get the schedules associating a student with registered course sections for the year/quarter
description: "<pre>\n {\n \"DisplayTitle\" : \"Student Schedule by Term\",\n \"ews_guid\" : \"23B5A449-6A90-4794-8989-9AD28F33F92B\",\n \"LongDescription\" : \"Schedule provides data associating a student with registered course sections for a particular \n year/quarter\",\n \"ShortDescription\" : \"Search for schedule records for a particular year/quarter\",\n \"OriginatingSchema\" : [ { \"source\":\"swssdb\" }, { \"source\":\"uweo\" }, { \"source\":\"irws\" } ],\n \"Notes\" : \"This resource requires any of the following ASTRA roles:\n - sws:Support\n - sws:ScheduleReader\n This resource supports the following authentication types:\n - X.509 Certificate\n - NetID \",\n \"Links\" : [ ],\n \"Synonyms\" : []\n }\n </pre>"
operationId: GetSchedule
parameters:
- name: year
in: path
description: 'The 4 digit year. For example: 2025'
required: true
schema:
type: string
- name: quarter
in: path
description: 'The 1 digit quarter. For example: 0=Default, 1=winter, 2=spring, 3=summer, 4=autumn'
required: true
schema:
type: string
- name: reg_id
in: path
description: RegIDs are the authoritative unique IDs guaranteed to identify a UW person permanently. RegIDs are assigned to a person by the Identity Registration Service, the authoritative source for person data reconciled from several data sources which may represent multiple records and accounts for a single person. A given RegID will always refer to the same person, regardless of name, status or affiliation changes.
required: true
schema:
maxLength: 32
minLength: 32
type: string
responses:
'400':
description: 'Invalid arg: year | Invalid arg: Year/Quarter must be greater than or equal to the current year/quarter. | Invalid arg: quarter | Invalid arg: Year/Quarter must be greater than or equal to the current year/quarter. | Invalid arg: reg ID'
'404':
description: No schedule found for reg ID
'200':
description: OK
content:
text/html:
schema:
$ref: '#/components/schemas/ScheduleViewModel'
application/xml:
schema:
$ref: '#/components/schemas/ScheduleViewModel'
text/xml:
schema:
$ref: '#/components/schemas/ScheduleViewModel'
text/plain:
schema:
$ref: '#/components/schemas/ScheduleViewModel'
application/json:
schema:
$ref: '#/components/schemas/ScheduleViewModel'
text/json:
schema:
$ref: '#/components/schemas/ScheduleViewModel'
'202':
description: Accepted
'301':
description: MovedPermanently
'302':
description: Found
'304':
description: NotModified
'401':
description: Identity '{identity}' is not authorized to access this resource.
'405':
description: MethodNotAllowed
'500':
description: InternalServerError
'503':
description: ServiceUnavailable
components:
schemas:
PersonResourceUri:
type: object
properties:
Name:
type:
- string
- 'null'
description: "<pre>\n {\n \"OriginatingSchema\" : [\n { \"source\":\"IRWS.identity.uwPersonPrefferredName\" },\n { \"source\":\"IRWS.identity.uwPersonRegisteredName\" }\n ],\n \"TechnicalDescription\": \"This field is resource specific\"\n }\n </pre>"
RegID:
type:
- string
- 'null'
description: "<pre>\n {\n \"OriginatingSchema\" : [\n { \"source\":\"IRWS.identity.regid\" }\n ],\n \"TechnicalDescription\": \"UW Registration ID. This field is resource specific\"\n }\n </pre>"
Pronouns:
type:
- string
- 'null'
description: "<pre>\n {\n \"OriginatingSchema\" : [\n { \"source\":\"IRWS.identity.uwPersonPronoun\" }\n ],\n \"TechnicalDescription\": \"\"\n }\n </pre>"
Href:
type:
- string
- 'null'
additionalProperties: false
description: "{\n \"DisplayTitle\" : \"Person Resource URI\",\n \"TargetSchema\" : [{\"target\" : \"SWS.Person\"}],\n \"TargetOperationId\" : [\"GetPerson\"]\n}"
ScheduleTermViewModel:
type: object
properties:
FirstDay:
type:
- string
- 'null'
description: "<pre>\n {\n \"OriginatingSchema\" : [\n { \"source\":\"SDB.SWI701.term.fdy\" }\n ],\n \"TechnicalDescription\": \"First day\"\n }\n </pre>"
BTermFirstDay:
type:
- string
- 'null'
description: "<pre>\n {\n \"OriginatingSchema\" : [\n { \"source\":\"SDB.SWI701.term.fdyb\" }\n ],\n \"TechnicalDescription\": \"B term first day\"\n }\n </pre>"
LastDayOfClasses:
type:
- string
- 'null'
description: "<pre>\n {\n \"OriginatingSchema\" : [\n { \"source\":\"SDB.SWI701.term.ldy\" }\n ],\n \"TechnicalDescription\": \"Last day of classes\"\n }\n </pre>"
ATermLastDay:
type:
- string
- 'null'
description: "<pre>\n {\n \"OriginatingSchema\" : [\n { \"source\":\"SDB.SWI701.term.ldya\" }\n ],\n \"TechnicalDescription\": \"A term last day\"\n }\n </pre>"
Quarter:
type:
- string
- 'null'
description: "<pre>\n {\n \"OriginatingSchema\" : [\n { \"source\":\"SDB.SWI701.term.qtr\" }\n ],\n \"TechnicalDescription\": \"Quarter consists of winter, spring, summer, and autumn.\"\n }\n </pre>"
Year:
type: integer
description: "<pre>\n {\n \"OriginatingSchema\" : [\n { \"source\":\"SDB.SWI701.term.yr\" }\n ],\n \"TechnicalDescription\": \"Year\"\n }\n </pre>"
format: int32
additionalProperties: false
description: "{\n \"DisplayTitle\" : \"Schedule Term Model\",\n \"TargetSchema\" : [{\"target\" : \"SWS.Schedule\"}]\n}"
ScheduleSectionViewModel:
type: object
properties:
Href:
type:
- string
- 'null'
SLN:
type:
- string
- 'null'
description: "<pre>\n {\n \"OriginatingSchema\" : [\n { \"source\":\"SDB.SWI202.sect.sln\" },\n { \"source\":\"UWEO.selSWSCourseSections.SLN\"}\n ],\n \"TechnicalDescription\": \"SLN\"\n }\n </pre>"
Year:
type: integer
description: "<pre>\n {\n \"OriginatingSchema\" : [\n { \"source\":\"SDB.SWI202.trm.yr\" }\n ],\n \"TechnicalDescription\": \"Year\"\n }\n </pre>"
format: int32
Quarter:
type:
- string
- 'null'
description: "<pre>\n {\n \"OriginatingSchema\" : [\n { \"source\":\"SDB.SWI202.trm.qtr\" }\n ],\n \"TechnicalDescription\": \"Quarter\"\n }\n </pre>"
CurriculumAbbreviation:
type:
- string
- 'null'
description: "<pre>\n {\n \"OriginatingSchema\" : [\n { \"source\":\"SDB.SWI202.sect.dept\" }\n ],\n \"TechnicalDescription\": \"Curriculum abbreviation\"\n }\n </pre>"
CourseNumber:
type:
- string
- 'null'
description: "<pre>\n {\n \"OriginatingSchema\" : [\n { \"source\":\"SDB.SWI202.sect.crsn\" }\n ],\n \"TechnicalDescription\": \"Course number\"\n }\n </pre>"
SectionID:
type:
- string
- 'null'
description: "<pre>\n {\n \"OriginatingSchema\" : [\n { \"source\":\"SDB.SWI202.sect.csid\" },\n { \"source\":\"UWEO.selSWSCourseSections.SectionID\"}\n ],\n \"TechnicalDescription\": \"Quarter\"\n }\n </pre>"
CourseTitle:
type:
- string
- 'null'
description: "<pre>\n {\n \"OriginatingSchema\" : [\n { \"source\":\"SWSSDB.sr_course_titles.course_title\" },\n { \"source\":\"UWEO.selSWSCourseSections.CourseTitle\"}\n ],\n \"TechnicalDescription\": \"Course title\"\n }\n </pre>"
CourseTitleLong:
type:
- string
- 'null'
description: "<pre>\n {\n \"OriginatingSchema\" : [\n { \"source\":\"SWSSDB.sr_course_titles.long_course_title\" },\n { \"source\":\"UWEO.selSWSCourseSections.CourseTitle\"}\n ],\n \"TechnicalDescription\": \"Course title long\"\n }\n </pre>"
Meetings:
type:
- array
- 'null'
items:
$ref: '#/components/schemas/MeetingViewModel'
SectionType:
type:
- string
- 'null'
description: "<pre>\n {\n \"OriginatingSchema\" : [\n { \"source\":\"SDB.SWI202.sect.sctp\" }\n ],\n \"TechnicalDescription\": \"Section type\"\n }\n </pre>"
FinalExam:
$ref: '#/components/schemas/FinalExamViewModel'
additionalProperties: false
description: "{\n \"DisplayTitle\" : \"Student Schedule Section Model\",\n \"TargetSchema\" : [{\"target\" : \"SWS.Schedule\"}]\n}"
DaysOfWeekViewModel:
type: object
properties:
Days:
type:
- array
- 'null'
items:
$ref: '#/components/schemas/DayViewModel'
Text:
type:
- string
- 'null'
description: "<pre>\n {\n \"OriginatingSchema\" : [\n { \"source\":\"SDB.SWI202.mt.dys\" },\n { \"source\":\"UWEO.selSWSCourseSections.DaysOfWeek/Text\"}\n ],\n \"TechnicalDescription\": \"Days of the week\"\n }\n </pre>"
additionalProperties: false
description: "{\n \"DisplayTitle\" : \"Days of Week Model\"\n}"
FinalExamViewModel:
type: object
properties:
Building:
type:
- string
- 'null'
description: "<pre>\n {\n \"OriginatingSchema\" : [\n { \"source\":\"SDB.SWI202.femt.bld\" }\n ],\n \"TechnicalDescription\": \"Building\"\n }\n </pre>"
FinalExamBuilding:
$ref: '#/components/schemas/FinalExamBuildingUri'
Date:
type:
- string
- 'null'
description: "<pre>\n {\n \"OriginatingSchema\" : [\n { \"source\":\"SDB.SWI202.femt.fedt\" }\n ],\n \"TechnicalDescription\": \"Date\"\n }\n </pre>"
EndTime:
type:
- string
- 'null'
description: "<pre>\n {\n \"OriginatingSchema\" : [\n { \"source\":\"SDB.SWI202.femt.etm\" }\n ],\n \"TechnicalDescription\": \"End time\"\n }\n </pre>"
MeetingStatus:
type:
- string
- 'null'
description: "<pre>\n {\n \"OriginatingSchema\" : [\n { \"source\":\"SDB.SWI202.femt.sts\" }\n ],\n \"TechnicalDescription\": \"Meeting status\"\n }\n </pre>"
RoomNumber:
type:
- string
- 'null'
description: "<pre>\n {\n \"OriginatingSchema\" : [\n { \"source\":\"SDB.SWI202.femt.rm\" }\n ],\n \"TechnicalDescription\": \"Room number\"\n }\n </pre>"
StartTime:
type:
- string
- 'null'
description: "<pre>\n {\n \"OriginatingSchema\" : [\n { \"source\":\"SDB.SWI202.femt.stm\" }\n ],\n \"TechnicalDescription\": \"Start time\"\n }\n </pre>"
additionalProperties: false
description: "{\n \"DisplayTitle\" : \"Final Exam Model\",\n \"TargetSchema\" : [{\"target\" : \"SWS.Section\"}]\n}"
MeetingBuildingUri:
type: object
properties:
Href:
type:
- string
- 'null'
additionalProperties: false
description: "{\n \"DisplayTitle\" : \"Meeting Building URI\",\n \"TargetSchema\" : [{\"target\" : \"SWS.Section\"}]\n}"
FinalExamBuildingUri:
type: object
properties:
Href:
type:
- string
- 'null'
additionalProperties: false
description: "{\n \"DisplayTitle\" : \"Final Exam Building Uri\",\n \"TargetSchema\" : [{\"target\" : \"SWS.Section\"}]\n}"
ScheduleRegistrationViewModel:
type: object
properties:
Section:
$ref: '#/components/schemas/ScheduleSectionViewModel'
Person:
$ref: '#/components/schemas/PersonResourceUri'
DuplicateCode:
type:
- string
- 'null'
description: "<pre>\n {\n \"OriginatingSchema\" : [\n { \"source\":\"SWSSDB.registration_courses.dup_enroll\" },\n { \"source\":\"url\" }\n ],\n \"TechnicalDescription\": \"Duplicate code. 0 or empty depending on flipyear for EO.\"\n }\n </pre>"
Href:
type:
- string
- 'null'
format: uri
Instructor:
$ref: '#/components/schemas/PersonResourceUri'
RequestStatus:
type:
- string
- 'null'
description: "<pre>\n {\n \"OriginatingSchema\" : [\n { \"source\":\"SWSSDB.registration_courses.request_status\" },\n { \"source\":\"UWEO.selSWSRegistrations.request_status\" }\n ],\n \"TechnicalDescription\": \"Request Status\"\n }\n </pre>"
IsActive:
type: boolean
description: "<pre>\n {\n \"OriginatingSchema\" : [\n { \"source\":\"SWSSDB.registration_courses.request_status\" },\n { \"source\":\"UWEO.selSWSRegistrations.is_active\" }\n ],\n \"TechnicalDescription\": \"Is registration active\"\n }\n </pre>"
RequestDate:
type:
- string
- 'null'
description: "<pre>\n {\n \"OriginatingSchema\" : [\n { \"source\":\"SWSSDB.registration_courses.request_dt\" },\n { \"source\":\"UWEO.selSWSRegistrations.request_date\" }\n ],\n \"TechnicalDescription\": \"Request date\"\n }\n </pre>"
Credits:
type:
- string
- 'null'
description: "<pre>\n {\n \"OriginatingSchema\" : [\n { \"source\":\"SWSSDB.registration_courses.credits\" },\n { \"source\":\"SWSSDB.transcript_courses_taken.course_credits\" },\n { \"source\":\"UWEO.selSWSRegistrations.credits\" }\n ],\n \"TechnicalDescription\": \"Credits\"\n }\n </pre>"
VariableCredit:
type: boolean
description: "<pre>\n {\n \"OriginatingSchema\" : [\n { \"source\":\"SWSSDB.registration_courses.v_cred\" },\n { \"source\":\"UWEO.selSWSRegistrations.variable_credits\" }\n ],\n \"TechnicalDescription\": \"Variable Credits\"\n }\n </pre>"
HonorsCourse:
type: boolean
description: "<pre>\n {\n \"OriginatingSchema\" : [\n { \"source\":\"SWSSDB.registration_courses.honor_course\" },\n { \"source\":\"SWSSDB.transcript_courses_taken.honor_course\" }\n ],\n \"TechnicalDescription\": \"Honors course\"\n }\n </pre>"
WritingCourse:
type: boolean
description: "<pre>\n {\n \"OriginatingSchema\" : [\n { \"source\":\"SWSSDB.registration_courses.writing_ind\" },\n { \"source\":\"SWSSDB.transcript_courses_taken.writing\" }\n ],\n \"TechnicalDescription\": \"Writing course\"\n }\n </pre>"
Auditor:
type: boolean
description: "<pre>\n {\n \"OriginatingSchema\" : [\n { \"source\":\"SWSSDB.registration_courses.grading_system\" },\n { \"source\":\"SWSSDB.transcript_courses_taken.grade_system\" },\n { \"source\":\"UWEO.selSWSRegistrations.auditor\" }\n ],\n \"TechnicalDescription\": \"Auditor\"\n }\n </pre>"
FeeBaseType:
type:
- string
- 'null'
description: "<pre>\n {\n \"OriginatingSchema\" : [\n { \"source\":\"SWSSDB.registration_courses.self_sust_type\" }\n ],\n \"TechnicalDescription\": \"Fee base type\"\n }\n </pre>"
RepeatCourse:
type: boolean
description: "<pre>\n {\n \"OriginatingSchema\" : [\n { \"source\":\"SWSSDB.transcript_courses_taken.grade\" }\n ],\n \"TechnicalDescription\": \"Repeat course\"\n }\n </pre>"
SourceDateString:
type:
- string
- 'null'
Metadata:
type:
- string
- 'null'
AccessDateRangeStart:
type:
- string
- 'null'
description: "<pre>\n {\n \"OriginatingSchema\" : [\n { \"source\":\"UWEO.selSWSRegistrations.access_start_date\" }\n ],\n \"TechnicalDescription\": \"Access date range start EO only\"\n }\n </pre>"
AccessDateRangeEnd:
type:
- string
- 'null'
description: "<pre>\n {\n \"OriginatingSchema\" : [\n { \"source\":\"UWEO.selSWSRegistrations.access_end_date\" }\n ],\n \"TechnicalDescription\": \"Access date range end EO only\"\n }\n </pre>"
IsCredit:
type: boolean
description: "<pre>\n {\n \"OriginatingSchema\" : [\n { \"source\":\"UWEO.selSWSRegistrations.is_credit\" }\n ],\n \"TechnicalDescription\": \"Is credit EO only\"\n }\n </pre>"
StartDate:
type:
- string
- 'null'
description: "<pre>\n {\n \"OriginatingSchema\" : [\n { \"source\":\"UWEO.selSWSRegistrations.start_date\" }\n ],\n \"TechnicalDescription\": \"Start date EO only\"\n }\n </pre>"
EndDate:
type:
- string
- 'null'
description: "<pre>\n {\n \"OriginatingSchema\" : [\n { \"source\":\"UWEO.selSWSRegistrations.end_date\" }\n ],\n \"TechnicalDescription\": \"Access date range start EO only\"\n }\n </pre>"
EducationUnitType:
type:
- string
- 'null'
description: "<pre>\n {\n \"OriginatingSchema\" : [\n { \"source\":\"UWEO.selSWSRegistrations.educational_unit_type\" }\n ],\n \"TechnicalDescription\": \"Education unit type EO only\"\n }\n </pre>"
IsIndependentStart:
type: boolean
description: "<pre>\n {\n \"OriginatingSchema\" : [\n { \"source\":\"UWEO.selSWSRegistrations.IsIndependentStart\" }\n ],\n \"TechnicalDescription\": \"Is independent start EO only\"\n }\n </pre>"
additionalProperties: false
description: "{\n \"DisplayTitle\" : \"Student Schedule Registration Model\",\n \"TargetSchema\" : [{\"target\" : \"SWS.Schedule\"}]\n}"
FacultyViewModel:
type: object
properties:
FacultySequenceNumber:
type:
- string
- 'null'
description: "<pre>\n {\n \"OriginatingSchema\" : [\n { \"source\":\"SDB.SWI202.fac.fsqn\" },\n { \"source\":\"UWEO.selSWSCourseSections.InstructorIndex\"}\n ],\n \"TechnicalDescription\": \"Faculty sequence number\"\n }\n </pre>"
TSPrint:
type: boolean
description: "<pre>\n {\n \"OriginatingSchema\" : [\n { \"source\":\"SDB.SWI202.fac.tspr\" }\n ],\n \"TechnicalDescription\": \"TS print\"\n }\n </pre>"
PercentInvolve:
type:
- string
- 'null'
description: "<pre>\n {\n \"OriginatingSchema\" : [\n { \"source\":\"SDB.SWI202.fac.fpct\" }\n ],\n \"TechnicalDescription\": \"Percent Involve\"\n }\n </pre>"
Person:
$ref: '#/components/schemas/PersonResourceUri'
GradeRoster:
type:
- string
- 'null'
additionalProperties: false
description: "{\n \"DisplayTitle\" : \"Faculty Model\",\n \"TargetSchema\" : [{\"target\" : \"SWS.Section\"}]\n}"
MeetingViewModel:
type: object
properties:
MeetingIndex:
type:
- string
- 'null'
description: "<pre>\n {\n \"OriginatingSchema\" : [\n { \"source\":\"SDB.SWI202.mt.ndx\" },\n { \"source\":\"UWEO.selSWSCourseSections.MeetingIndex\"}\n ],\n \"TechnicalDescription\": \"Meeting number\"\n }\n </pre>"
MeetingType:
type:
- string
- 'null'
description: "<pre>\n {\n \"OriginatingSchema\" : [\n { \"source\":\"SDB.SWI202.mt.tp\" },\n { \"source\":\"UWEO.selSWSCourseSections.MeetingType\"}\n ],\n \"TechnicalDescription\": \"Meeting type\"\n }\n </pre>"
DaysOfWeek:
$ref: '#/components/schemas/DaysOfWeekViewModel'
DaysOfWeekToBeArranged:
type: boolean
description: "<pre>\n {\n \"OriginatingSchema\" : [\n { \"source\":\"SDB.SWI202.mt.dys\" },\n { \"source\":\"UWEO.selSWSCourseSections.DaysOfWeekToBeArranged\"}\n ],\n \"TechnicalDescription\": \"Calculated field that represents if days are to still be arranged\"\n }\n </pre>"
StartTime:
type:
- string
- 'null'
description: "<pre>\n {\n \"OriginatingSchema\" : [\n { \"source\":\"SDB.SWI202.mt.stm\" },\n { \"source\":\"UWEO.selSWSCourseSections.StartTime\"}\n ],\n \"TechnicalDescription\": \"Start Time\"\n }\n </pre>"
EndTime:
type:
- string
- 'null'
description: "<pre>\n {\n \"OriginatingSchema\" : [\n { \"source\":\"SDB.SWI202.mt.etm\" },\n { \"source\":\"UWEO.selSWSCourseSections.EndTime\"}\n ],\n \"TechnicalDescription\": \"End time\"\n }\n </pre>"
BuildingToBeArranged:
type: boolean
description: "<pre>\n {\n \"OriginatingSchema\" : [\n { \"source\":\"SDB.SWI202.mt.bld\" },\n { \"source\":\"UWEO.selSWSCourseSections.BuildingToBeArranged\"}\n ],\n \"TechnicalDescription\": \"Calculated flag that represents if building to be arranged\"\n }\n </pre>"
Building:
type:
- string
- 'null'
description: "<pre>\n {\n \"OriginatingSchema\" : [\n { \"source\":\"SDB.SWI202.mt.bld\" },\n { \"source\":\"UWEO.selSWSCourseSections.Building\"}\n ],\n \"TechnicalDescription\": \"Building\"\n }\n </pre>"
Meeting:
$ref: '#/components/schemas/MeetingBuildingUri'
RoomToBeArranged:
type: boolean
description: "<pre>\n {\n \"OriginatingSchema\" : [\n { \"source\":\"SDB.SWI202.mt.rm\" },\n { \"source\":\"UWEO.selSWSCourseSections.DaysOfWeekToBeArranged\"}\n ],\n \"TechnicalDescription\": \"C
# --- truncated at 32 KB (34 KB total) ---
# Full source: https://raw.githubusercontent.com/api-evangelist/university-of-washington/refs/heads/main/openapi/university-of-washington-schedule-api-openapi.yml