0
Response
オブジェクトとResponse
オブジェクトの配列が"title": "Responses"
です。しかし、Responses
Swagger UIのModels
セクションにタイトルテキストが表示されません。これは私のぼんやりした定義に間違っていると思われますか? 私はhttps://github.com/swagger-api/swagger-uiスワッガーのUIモデルで配列タイトルが表示されない
闊歩definition
セクションからmasterブランチを使用しています:これが闊歩UI 3.xのに問題があるように思われる
"Response": {
"type": "object",
"title": "Response",
"description": "Response to query.",
"properties": {
"Query": {
"$ref": "#/definitions/Query"
},
"Result": {
"$ref": "#/definitions/Result"
}
}
},
"Responses": {
"type": "array",
"title": "Responses",
"description": "Array of responses.",
"items": {
"$ref": "#/definitions/Response"
}
}