1
[{xx:xx,xx1:xx1},{},...]
這裏的GET請求的模型JSON,它直接返回一個數組,而不是一個正式的JSON,如何寫一個模式?
/hsseventwebapi/v1/walking/events/{eventcd}/livecomments:
get:
operationId: イベント実況を返す
summary: 個人に関連するランキングを返す
description: "イベント実況を返す(取得したい実況一覧の開始日時を指定取得できる一覧は最大30件"
tags:
- Walking
parameters:
- name: eventcd
in: path
description: eventcd
required: true
type: integer
responses:
200:
description: OK
schema:
$ref: '#/definitions/LiveListModel'
這裏的模型:
LiveListModel:
type: array
description: live list
items:
type: object
description: live item
properties:
eventNo:
type: string
description: eventNo
liveCommentYmdhms:
type: string
description: liveCommentYmdhms
liveComment:
type: string
description: liveComment
liveCommentSeq:
type: string
description: liveCommentSeq
targetAppUserNo:
type: string
description: targetAppUserNo
required:
- eventNo
- liveCommentYmdhms
- liveComment
- liveCommentSeq
- targetAppUserNo
有兩個liveListModel,我不能解析它。
好的謝謝, 我已經解決了這個問題。 是這樣的: ''' 迴應: 200: 描述:OK 模式: 類型:數組 項目: $ REF: '#/定義/ LiveListItemModel' LiveListItemModel: 類型:對象 屬性: xx: ''' – Jafir