Swagger创建API文档:Swagger Editor



我正在使用Swagger记录我的REST API服务。我有一个为服务提供的特定输入。我正在使用Swagger编辑器自己创建YAML代码。我面临的问题是,我无法将输入类型作为XML,默认情况下为JSON。我的YAML代码中是否有任何问题。代码如下:

swagger: "2.0"
info:
title: Order Update to Dealers
 description: API description in Markdown.
 version: 1.0.0
host: #Host name cannot be specified here
basePath: /api/OrderUpdate
schemes:
  - http
paths:
/GetFullOrderAcknowlegement:
post:
  summary: Returns a list of users.
  consumes: 
    - application/xml 
  produces:
    - text/plain
  parameters:
    - in: body
      name: DealerInput
      description: Optional extended description in Markdown.
      schema:
        properties:
          DealerID:
            type: string
          PONumber:
            type: string
  responses:
    201:
      description: Created
    200:
      schema: {}
      description: OK
    401:
      schema: {}
      description: Authorization information is missing or invalid.

这是Swagger Editor 3.3.0和Swagger UI 3.11.0中的错误。它已修复在编辑器3.3.1和UI 3.12.0(2018年3月4日发布(中。

作为解决方法,您可以下载编辑器v3.2.9并通过在浏览器中打开index.html文件在本地运行。

相关内容

  • 没有找到相关文章

最新更新