我正在尝试使用 Swagger 2.0 为端点创建示例响应。
200:
description: Successful response
schema:
type: object
$ref: "#/definitions/User"
examples:
application/vnd.api+json:
- data:
attributes:
full_name: John Appleseed
- data:
attributes:
full_name: Mike Appleseed
我的 api 消费和生产application/vnd.api+json
,但它不会识别它。如果我删除这些示例,我的规范就会起作用。知道如何指定它吗?