EnergyElectricityInfo

Real-time electricity usage for an NTHU power zone (電力使用量).

EducationHigher EducationUniversityTaiwanOpen DataCampus

Properties

Name Type Description
name string 電力名稱
data integer 電力使用量
capacity integer 電力容量
unit string 單位
last_updated string 最後更新時間
View JSON Schema on GitHub

JSON Schema

nthu-energy-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api.nthusa.tw/schemas/energy.json",
  "title": "EnergyElectricityInfo",
  "description": "Real-time electricity usage for an NTHU power zone (電力使用量).",
  "type": "object",
  "required": [
    "name",
    "data",
    "capacity",
    "unit",
    "last_updated"
  ],
  "properties": {
    "name": {
      "type": "string",
      "description": "電力名稱"
    },
    "data": {
      "type": "integer",
      "description": "電力使用量"
    },
    "capacity": {
      "type": "integer",
      "description": "電力容量"
    },
    "unit": {
      "type": "string",
      "description": "單位",
      "examples": [
        "kW"
      ]
    },
    "last_updated": {
      "type": "string",
      "description": "最後更新時間"
    }
  }
}