SwaggerUI/YAML - 映射条目的解析器错误错误缩进

SwaggerUI/YAML - Parser error bad indentation of a mapping entry

Screenshot of Swagger Editor & code 嗨,我是 API 测试和 Swagger 的新手,我在 Swagger 编辑器中收到此解析器错误消息,我在定位问题时遇到问题。

下面是代码的复制粘贴。

错误信息是 "bad indentation of a mapping entry" 并且显示在 --> in: "path".

我遵循了这个 YouTube 教程 --> https://www.youtube.com/watch?v=CoUl9_NWdqQ

swagger: '2.0'
info:
  version: 'v1.0'
  title: 'Random'

# Added by API Auto Mocking Plugin
host: virtserver.swaggerhub.com
basePath: /GroovySalmon/DOITNOW/v1.0
schemes:
  - https

paths:
  /vehicles/{id}/data_request/drive_state:
    get:
      operationId: "drive_state"
      description: "Returns the driving and position state of the vehicle"
      parameters:
      **-name: "id"**
          in: "path"
          description: "The ID number of the car"
          required: true
          type: "String"
      responses:
        200:
          description: "Success"
          schema:
            properties:
              shift_state:
                type: "String"
                example: "sport"
              speed:
                type: "number"
                format: "double"
                example: 94.5
              latitude:
                description: "degrees north of the equator"
                type: "number"
                format: "double"
                example: 37.345
              longitude:
                description: "degrees west of the prime meridian"
                type: "number"
                format: "double"
                example: 122.1243
              heading:
                description: "integer compass heading"
                type: "integer"
                format: "int32"
                minimum: 0
                maximum: 359
                example: 4
              gps_as_of:
                description: "unix timestamp of gps fix"
                example: "1234934991232"

改变

type: "String"

type: "string"

注意 "string" 中的小写 "s"。

所有 OpenAPI type 值均为小写且区分大小写。


另外,确保在参数定义(以及一般的 YAML 列表)中 - 之后有空格,并且缩进是正确的:

- name: "id"
  in: "path"
  ...