NKUST-ITC / NKUST-AP-API

NKUST-AP-v3-完善計畫
MIT License
7 stars 5 forks source link

bus 部分格式錯誤 #14

Closed takidog closed 5 years ago

takidog commented 5 years ago

/bus/violation-records

{
  "reservation": [
    {
      "time": "2019-03-17T16:51:57Z",
      "startStation": "建工",
      "homeCharteredBus": false,
      "amountend": 30,
      "isPayment": ""
    }
  ]
}

isPayment 應為 boolean

/bus/timetables

    {
      "endEnrollDateTime": "2019-03-17T16:51:57Z",
      "departureTime": "2019-03-17T16:51:57Z",
      "startStation": "建工",
      "busId": "42705",
      "reserveCount": 2,
      "limitCount": 999,
      "isReserve": true,
      "specialTrain": "0",
      "discription": "",
      "cancelKey": 0,
      "homeCharteredBus": false
    }

timetable 無法查詢到cancelKey,應移除

20190901 @abc873693 補充 discription 應該為 description

takidog commented 5 years ago

cancelKey 透過/bus/reservations 混合進 /bus/timetables

cancelKey的swagger 範例應為string 不應該為0

takidog commented 5 years ago

17