如何在OpenAPI 3.0.0的securitySchemes中使用“输入”?

时间:2019-06-10 07:39:17

标签: swagger schema openapi

in中使用securitySchemes参数时,

openapi: 3.0.0
servers:
  - url: http://hello-world.com
info:
  description: |-
    Hello World!
  version: "4"
  title: Hello World

components:
  securitySchemes:
    Token:
      description: Secret Token
      type: http
      name: Token
      in: header
      scheme: Token

    Tenant:
      description: Tenant ID
      type: http
      name: Tenant
      in: header
      scheme: Tenant

editor.swagger.io引发结构错误:

  

components.securitySchemes.Token上的结构错误不应包含   其他属性AdditionalProperty:名称,在

如何将“ in”用于OpenAPI 3.0.0的securitySchemes?

如果将定义更改为openapi: 2.0.0,则会出现结构错误。

0 个答案:

没有答案