gpt4 book ai didi

swagger - Swagger 中 API 查询参数的可能值列表

转载 作者:行者123 更新时间:2023-12-04 17:46:33 28 4
gpt4 key购买 nike

在记录 API 时,有没有办法提供可能值的列表?像这样的东西:

{
"name": "propertyType",
"in": "query",
"description": "Type of home",
"required": false,
"type": "list",
"listValues": ["singleFamilyHome", "condo", "farm", …]
}

最佳答案

在 swagger 2.0 中,您可以使用枚举:

{
"name": "propertyType",
"in": "query",
"description": "Type of home",
"required": false,
"type": "list",
"enum": ["singleFamilyHome", "condo", "farm"]
}

您可以在这里找到更多信息: How to define enum in swagger.io?

关于swagger - Swagger 中 API 查询参数的可能值列表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32870363/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com