DiningRestaurant

A campus dining restaurant (餐廳資訊).

EducationHigher EducationUniversityTaiwanOpen DataCampus

Properties

Name Type Description
area string 餐廳所在建築
image stringnull 餐廳圖片
name string 餐廳名稱
note string 餐廳備註
phone string 餐廳電話
schedule object 餐廳營業時間
View JSON Schema on GitHub

JSON Schema

nthu-dining-restaurant-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api.nthusa.tw/schemas/dining-restaurant.json",
  "title": "DiningRestaurant",
  "description": "A campus dining restaurant (餐廳資訊).",
  "type": "object",
  "required": [
    "area",
    "name",
    "note",
    "phone",
    "schedule"
  ],
  "properties": {
    "area": {
      "type": "string",
      "description": "餐廳所在建築"
    },
    "image": {
      "type": [
        "string",
        "null"
      ],
      "format": "uri",
      "description": "餐廳圖片"
    },
    "name": {
      "type": "string",
      "description": "餐廳名稱"
    },
    "note": {
      "type": "string",
      "description": "餐廳備註"
    },
    "phone": {
      "type": "string",
      "description": "餐廳電話"
    },
    "schedule": {
      "type": "object",
      "description": "餐廳營業時間",
      "additionalProperties": true
    }
  }
}