1

为了改进我们的 api 文档,我想在响应正文的字段中添加描述

作为示例,请参阅此处的默认 petstore 规范: https ://editor.swagger.io/

在宠物响应中的 POST /pet 中,状态具有描述“商店中的宠物状态”

如何从代码库中的注释角度执行此操作?

(招摇v3)

4

2 回答 2

1

kotlin 中的解决方案:

data class Pet(
        @field:Schema(description = "Pet status in the store")
        val status: String
     )
于 2021-01-20T20:23:10.250 回答
0

import io.swagger.v3.oas.annotations.media.Schema;

public class Pet {
    @Schema(description = "Pet status in the store")
    private String status;
}

谢谢@viktor-baert

于 2022-02-22T10:19:32.290 回答