University Of Maryland College Park Section Structure

JSON Structure for a section of a University of Maryland course from the umd.io API.

Type: object Properties: 9
EducationHigher EducationUniversityUnited StatesOpen DataCoursesStudent Run

Section is a JSON Structure definition published by University of Maryland College Park, describing 9 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

course section_id semester number seats open_seats waitlist instructors meetings

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$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" }
        }
      }
    }
  }
}