Swagger Editor:如何定义简单的响应字符串和重定向

时间:2016-08-24 20:33:54

标签: api swagger

以宽广的方式定义回答非常简单:

  responses:
    # Response code
    200:
      description: Successful response
      schema:
        title: OK
        type: array
        items:
          title: Person
          type: object
          properties:
            name:
              type: string
            single:
              type: boolean
  1. 如何返回简单字符串而不是数组
  2. 如果API端点进行重定向,实际上在我的情况下重定向是成功的尝试。
      

    让我们跳过在API中重定向是非专业的事实!

  3. 更新:使用字符串进行回复也很简单:

    description: A simple string response
    schema:
      type: string
    

0 个答案:

没有答案