我的Swagger文件中有以下定义(根据Swagger规范):
definitions:
ErrorItem:
type: object
properties:
code:
type: string
message:
type: string
field:
type: string
description: field
Error:
description: "List of errors"
type: array
items:
$ref: '#/definitions/ErrorItem'
这是对的吗?错误数组在模型部分中看不到任何其他内容?