是否可以在界面的Swagger中将对象的属性放在单独的字段中,如下面的屏幕快照所示? Swagger 2.0或3.0版本。
重要:这些单独的对象字段必须在请求正文中。
我现在所做的:
1)代码:
requestBody:
content:
application/x-www-form-urlencoded:
schema:
type: object
properties:
example_obj:
type: object
properties:
field1:
type: string
from:
type: object
properties:
field2:
type: string
field3:
type: string
2)我的结果: