这是我的 yaml 架构的一部分:
paths:
'/testing/all':
get:
summary: Get list of open items
tags:
- Items
description: |
Returns an array of json objects items
responses:
'200':
description: Array of open items
schema:
type: array
$ref: '#/definitions/itemList'
default:
description: Unexpected error
schema:
$ref: '#/definitions/Error'
我知道缩进,但在包含“响应”的行上仍然存在错误:
YAMLException: can not read a block mapping entry; a multiline key may not be an implicit key at line 20, column 13:
responses:
我使用 webstorm 2016 和 windows 7 如何解决这个错误?