Swagger 错误 - 应该只有三位数的状态代码

Swagger error - should have only three digit status codes

我正在 Swagger 编辑器中为 API 构建 Swagger 文档,但出现此错误:

should only have three-digit status codes, `default`, and vendor extensions (`x-*`) as properties

这是 swagger 代码:

/stareMesaj:
    post:
      tags:
        - Metode disponibile
      summary: Stare mesaj
      description: Call de upload mesaj. More soon.
      operationId: stareMesaj
      responses:
        '200':
          description: 1.Ultimele 60 zile -  Nu aveti drept de interogare stare pentru
            mesaj/ 2.Mai mult de 60 zile -  Formularul cu id de incarcare= xxx a
            fost depus de mai mult de 60 de zile 3. Id maxim -  Nu aveti drept
            de interogare stare pentru mesaj= max id
          headers:
        X-Rate-Limit:
          description: calls per hour allowed by the user
          schema:
            type: integer
            format: int32

错误出现在这一行:

responses:

就在“200”之前

可能是什么问题?状态码明明是三位码

谢谢

X-Rate-Limit需要在headers右边缩进:

      responses:
        '200':
          description: ...
          headers:
            X-Rate-Limit:
              description: calls per hour allowed by the user
              schema:
                type: integer
                format: int32