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

时间:2018-09-13 13:14:57

标签: swagger swagger-2.0 swagger-editor

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

下面是代码的复制粘贴。

错误消息是“映射条目缩进不良”,并显示在-> 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"

1 个答案:

答案 0 :(得分:0)

更改

type: "String"

type: "string"

请注意“字符串”中的小写字母“ s”。

所有OpenAPI type值都是小写且区分大小写。


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

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