如何为swagger元素添加值?

时间:2015-12-21 10:38:11

标签: rest swagger swagger-editor

您好我试图更新一些api swagger文档,我想为键添加值而不是只显示类型 例如

isGuaranteed: type: boolean value : true name: type: string value :John 无论如何要添加标签值而不是只有类型?

1 个答案:

答案 0 :(得分:1)

您可以通过将example和值添加到属性定义来提供示例值:

      isGuaranteed:
        type: boolean
        example: true
      name:
        type: string
        example :John

在Swagger UI中渲染:

SwaggerUI