University of Pennsylvania · JSON Structure

University Of Pennsylvania Course Structure

A Penn course as returned by the Penn Courses API course detail endpoint.

Type: object Properties: 11
EducationHigher EducationUniversityOpen DataCoursesLibraryUnited StatesIvy League

Course is a JSON Structure definition published by University of Pennsylvania, describing 11 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

id title description semester prerequisites course_quality instructor_quality difficulty work_required credits sections

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

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/university-of-pennsylvania/main/json-structure/university-of-pennsylvania-course-structure.json",
  "name": "Course",
  "type": "object",
  "description": "A Penn course as returned by the Penn Courses API course detail endpoint.",
  "properties": {
    "id": {
      "type": "string",
      "description": "Full course code, e.g. CIS-120."
    },
    "title": {
      "type": "string"
    },
    "description": {
      "type": "string"
    },
    "semester": {
      "type": "string",
      "description": "Form YYYYx (A=spring, B=summer, C=fall)."
    },
    "prerequisites": {
      "type": "string"
    },
    "course_quality": {
      "type": "number"
    },
    "instructor_quality": {
      "type": "number"
    },
    "difficulty": {
      "type": "number"
    },
    "work_required": {
      "type": "number"
    },
    "credits": {
      "type": "number"
    },
    "sections": {
      "type": "array",
      "items": {
        "type": "string",
        "description": "Section codes such as CIS-120-001."
      }
    }
  }
}