{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://api.umd.io/v1/structures/section.json", "name": "Section", "type": "object", "description": "JSON Structure for a section of a University of Maryland course from the umd.io API.", "properties": { "course": { "type": "string", "description": "Associated course id." }, "section_id": { "type": "string", "description": "Unique section id (course_id + four-digit section number)." }, "semester": { "type": "string", "description": "Semester in YYYYMM format." }, "number": { "type": "string", "description": "Four-digit section number." }, "seats": { "type": "string", "description": "Total seats in the section." }, "open_seats": { "type": "string", "description": "Open seats in the section." }, "waitlist": { "type": "string", "description": "Number of people on the waitlist." }, "instructors": { "type": "array", "items": { "type": "string" }, "description": "Professor names for the section." }, "meetings": { "type": "array", "description": "Section meetings.", "items": { "type": "object", "properties": { "days": { "type": "string" }, "room": { "type": "string" }, "building": { "type": "string" }, "classtype": { "type": "string" }, "start_time": { "type": "string" }, "end_time": { "type": "string" } } } } } }