{{#each securityDefinitions}}
### {{@key}}
{{#this}}
{{#ifeq type "oauth2"}}
type |
{{type}} |
{{#if description}}
description |
{{description}} |
{{/if}}
{{#if authorizationUrl}}
authorizationUrl |
{{authorizationUrl}} |
{{/if}}
{{#if flow}}
flow |
{{flow}} |
{{/if}}
{{#if tokenUrl}}
tokenUrl |
{{tokenUrl}} |
{{/if}}
{{#if scopes}}
scopes |
{{#each scopes}}
{{@key}} |
{{this}} |
{{/each}}
{{/if}}
{{/ifeq}}
{{#ifeq type "apiKey"}}
type |
{{type}} |
{{#if description}}
description |
{{description}} |
{{/if}}
{{#if name}}
name |
{{name}} |
{{/if}}
{{#if in}}
in |
{{in}} |
{{/if}}
{{/ifeq}}
{{#ifeq type "basic"}}
type |
{{type}} |
{{#if description}}
description |
{{description}} |
{{/if}}
{{/ifeq}}
{{/this}}
{{/each}}