Department

An NTHU academic department/unit (系所).

EducationHigher EducationUniversityTaiwanOpen DataCampus

Properties

Name Type Description
index string 系所代碼
name string 系所名稱
parent_name stringnull 上層系所名稱
url stringnull 系所網站
View JSON Schema on GitHub

JSON Schema

nthu-department-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api.nthusa.tw/schemas/department.json",
  "title": "Department",
  "description": "An NTHU academic department/unit (系所).",
  "type": "object",
  "required": [
    "index",
    "name"
  ],
  "properties": {
    "index": {
      "type": "string",
      "description": "系所代碼"
    },
    "name": {
      "type": "string",
      "description": "系所名稱"
    },
    "parent_name": {
      "type": [
        "string",
        "null"
      ],
      "description": "上層系所名稱"
    },
    "url": {
      "type": [
        "string",
        "null"
      ],
      "format": "uri",
      "description": "系所網站"
    }
  }
}