NUS ModuleCondensed

Condensed module entry as returned in the array from the NUSMods API endpoint /{acadYear}/moduleList.json. Derived from the NUSMods OpenAPI 3.0.1 ModuleCondensed schema.

EducationHigher EducationUniversitySingaporeResearchOpen AccessRepository

Properties

Name Type Description
moduleCode string
title string
semesters array
View JSON Schema on GitHub

JSON Schema

nus-modulecondensed-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/nus/refs/heads/main/json-schema/nus-modulecondensed-schema.json",
  "title": "NUS ModuleCondensed",
  "description": "Condensed module entry as returned in the array from the NUSMods API endpoint /{acadYear}/moduleList.json. Derived from the NUSMods OpenAPI 3.0.1 ModuleCondensed schema.",
  "type": "object",
  "required": ["moduleCode", "title", "semesters"],
  "properties": {
    "moduleCode": { "type": "string", "examples": ["EL1101E"] },
    "title": { "type": "string", "examples": ["The Nature of Language"] },
    "semesters": {
      "type": "array",
      "items": { "type": "number", "enum": [1, 2, 3, 4] },
      "examples": [[1, 2]]
    }
  }
}