National Tsing Hua University · Schema
CourseData
A single NTHU course record (課程資料).
EducationHigher EducationUniversityTaiwanOpen DataCampus
Properties
| Name | Type | Description |
|---|---|---|
| id | string | 課號 (course number) |
| chinese_title | string | 課程中文名稱 |
| english_title | string | 課程英文名稱 |
| credit | string | 學分數 |
| size_limit | string | 人限 |
| freshman_reservation | string | 新生保留人數 |
| object | string | 通識對象 |
| ge_type | string | 通識類別 |
| language | string | 授課語言 |
| note | string | 備註 |
| suspend | string | 停開註記 |
| class_room_and_time | string | 教室與上課時間 |
| teacher | string | 授課教師 |
| prerequisite | string | 擋修說明 |
| limit_note | string | 課程限制說明 |
| expertise | string | 第一二專長對應 |
| program | string | 學分學程對應 |
| no_extra_selection | string | 不可加簽說明 |
| required_optional_note | string | 必選修說明 |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://api.nthusa.tw/schemas/course.json",
"title": "CourseData",
"description": "A single NTHU course record (課程資料).",
"type": "object",
"required": [
"id",
"chinese_title",
"english_title",
"credit",
"teacher",
"class_room_and_time"
],
"properties": {
"id": {
"type": "string",
"description": "課號 (course number)"
},
"chinese_title": {
"type": "string",
"description": "課程中文名稱"
},
"english_title": {
"type": "string",
"description": "課程英文名稱"
},
"credit": {
"type": "string",
"description": "學分數"
},
"size_limit": {
"type": "string",
"description": "人限"
},
"freshman_reservation": {
"type": "string",
"description": "新生保留人數"
},
"object": {
"type": "string",
"description": "通識對象"
},
"ge_type": {
"type": "string",
"description": "通識類別"
},
"language": {
"type": "string",
"description": "授課語言",
"enum": [
"中",
"英"
]
},
"note": {
"type": "string",
"description": "備註"
},
"suspend": {
"type": "string",
"description": "停開註記"
},
"class_room_and_time": {
"type": "string",
"description": "教室與上課時間"
},
"teacher": {
"type": "string",
"description": "授課教師"
},
"prerequisite": {
"type": "string",
"description": "擋修說明"
},
"limit_note": {
"type": "string",
"description": "課程限制說明"
},
"expertise": {
"type": "string",
"description": "第一二專長對應"
},
"program": {
"type": "string",
"description": "學分學程對應"
},
"no_extra_selection": {
"type": "string",
"description": "不可加簽說明"
},
"required_optional_note": {
"type": "string",
"description": "必選修說明"
}
}
}