我创建了一个patient
组件,并将其用作响应,如下所示。
description: Success get all patients
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/InventoryItem'
但是,响应仅包含患者数据,但我想向响应添加额外属性,如下所示
{
code: 200,
message: "Success get all patients data"
data: [
// Patient data
]
}
实现上述响应的语法是什么?
1条答案
按热度按时间oyxsuwqo1#
通过使用
properties
并添加额外的属性,如下所示。你的回答是