LibrarySpace

Availability of a library space/zone (圖書館空間剩餘).

EducationHigher EducationUniversityTaiwanOpen DataCampus

Properties

Name Type Description
spacetype integer 空間類型
spacetypename string 空間類型名稱
zoneid string 區域代號
zonename string 區域名稱
count integer 空間剩餘數量
View JSON Schema on GitHub

JSON Schema

nthu-library-space-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api.nthusa.tw/schemas/library-space.json",
  "title": "LibrarySpace",
  "description": "Availability of a library space/zone (圖書館空間剩餘).",
  "type": "object",
  "required": [
    "spacetype",
    "spacetypename",
    "zoneid",
    "zonename",
    "count"
  ],
  "properties": {
    "spacetype": {
      "type": "integer",
      "description": "空間類型"
    },
    "spacetypename": {
      "type": "string",
      "description": "空間類型名稱"
    },
    "zoneid": {
      "type": "string",
      "description": "區域代號"
    },
    "zonename": {
      "type": "string",
      "description": "區域名稱"
    },
    "count": {
      "type": "integer",
      "description": "空間剩餘數量"
    }
  }
}