作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在开发一个 API,它也生成 swagger 文档。问题是由于某些原因,请求模型/架构未显示在 swagger UI 中,但我也没有收到任何错误。
我需要表示映射到字符串数组。例如 map [字符串][]字符串。定义对象定义如下。
{
"definitions": {
"versions": {
"type": "string",
"additionalProperties": {
"type": "array",
"items": {
"type": "string"
}
}
}
}
}
最佳答案
UI 中仍然不支持 map - https://github.com/swagger-api/swagger-ui/issues/913 .
你还想像这样改变你的定义:
{
"definitions": {
"versions": {
"type": "object",
"additionalProperties": {
"type": "array",
"items": {
"type": "string"
}
}
}
}
}
关于swagger - 如何在swagger中定义 map ?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28644595/
我是一名优秀的程序员,十分优秀!