在下面的OpenAPI定义中,参数定义导致解析器错误"映射条目的错误缩进"。有什么问题?
paths:
/users/{username}:
get:
tags:
- users
summary: "Get the users profile"
parameters:
-in: path
name: username
description: "get user by name"
type: string
required: true
responses:
200:
description: OK
schema:
$ref: "#/definitions/users"
答案 0 :(得分:0)
在YAML序列(列表)中,-
指示符后需要空格。你需要替换
-in: path
与
- in: path
(并适当调整后续关键字)。