我的Swagger规范中有一些其他定义:
"action": {
"title": "Action",
"description": "Action to apply to matching requests",
"type": "object",
"enum": [
{"delayAction": {"$ref": "#/definitions/delayAction"}},
{"abortAction": {"$ref": "#/definitions/abortAction"}},
{"traceAction": {"$ref": "#/definitions/traceAction"}}
]
}
和delayAction
,abortAction
和traceAction
都已定义。
但在Swagger UI中,action
的模型为空。
如何修改我的Swagger定义,以便Swagger UI可以在模型中显示action
的定义?