您的API定义中有重复的路径,例如:
"path": "api/v2/nodes/{id}","description": "Get a node",..."path": "api/v2/nodes/{id}","description": "Get a virtual folder","path": "api/v2/nodes/actions","description": "Get actions for the selected node IDs",..."path": "api/v2/nodes/actions","description": "Get actions for the selected node IDs",Swagger 1.2规范不允许重复路径:
在
apis数组中,每个只能有一个API对象path。
解析器只是忽略重复项。



