标签: rest swagger swagger-editor
您好我试图更新一些api swagger文档,我想为键添加值而不是只显示类型 例如
isGuaranteed: type: boolean value : true name: type: string value :John 无论如何要添加标签值而不是只有类型?
isGuaranteed: type: boolean value : true name: type: string value :John
答案 0 :(得分:1)
您可以通过将example和值添加到属性定义来提供示例值:
example
isGuaranteed: type: boolean example: true name: type: string example :John
在Swagger UI中渲染: