在回复中添加新列(Swagger-ui)

时间:2016-01-26 13:02:15

标签: json swagger swagger-ui swagger-2.0

我正在使用Swagger-ui作为api文档,当我来回复时我想在每个响应中添加任意名称的新列,附加enter image description here屏幕截图,突出显示的文本没问题,我想在圆圈的位置添加一个新列。 我的回复JSON是

 "responses" : {
           "400" : {
              "description" : "Invalid ID Supplied"
           },
           "404" : {
              "description" : "Order not found"
           }
        }
  

如何在其中添加新列?

是否为Swagger-ui JSON提供了Intellisense的任何类型?

1 个答案:

答案 0 :(得分:3)

您只能扩展API终结点的API响应对象as far as the specification goes。但是,为了在UI中显示,您必须分叉UI project并按照您的要求进行操作。目前,此处的UI does not seem to be extensible(在文件中查找表头)。