我有一个Response
个对象和一个Response
个"title": "Responses"
个对象数组Responses
。但是,Models
标题文字未显示在Swagger UI的definition
部分中。这是我的摇摆定义的预期或错误吗?
我正在使用https://github.com/swagger-api/swagger-ui
Swagger "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"
}
}
部分:
open
答案 0 :(得分:0)
这似乎是Swagger UI 3.x的一个问题。我有一个类似的API定义。它在Swagger UI 2.x中运行良好,但我在3.x中看到了同样的问题。我还不知道Swagger UI团队是否正在跟踪此问题。
如果您无法等待修复,则可能需要使用the 2.x branch中的最新版本。