如何解决AWS API Gateway Swagger导出不会导出模型
我在API Gateway中已部署了API。我想正确记录该API(包括请求正文,差异响应等)
我添加了以下模型:
{
"$schema" : "http://json-schema.org/draft-04/schema#","title" : "Get User Model","type" : "object","properties" : {
"firstName" : { "type" : "string" },"lastName" : { "type" : "string" },"email" : { "type" : "string" },"id" : {"type": "string"},"phoneNumber" : { "type" : "number" },"birthdayMonth" : { "type" : "number" },"birthdayYear" : { "type" : "number" }
}
}
然后我将此模型添加到GET(Resource-> Method Response。我表明它已被接受:
我的问题是,当我发布文档,然后将其导出到Swagger JSON或YAML时,它不包括该模型。看起来像这样:
'/users/{id}':
get:
description: This endpoint retrieves a specific user.
parameters:
- name: id
in: path
description: The user id
required: true
type: string
responses: {} <-- Why is this empty???
swagger json的末尾也没有模型。
我该怎么做才能正确导出模型?
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。