Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
aiohttp-swagger / templates / openapi.yaml
Size: Mime:
openapi: 3.0.1
info:
  title: {{ title }}
  description: {{ description }}
  version: "{{ version }}"
  {% if contact %}
  contact:
    name: {{ contact }}
  {% endif %}
servers:
  - url: {{ base_path }}
components:
  {% if definitions %}
  schemas:
{{ definitions|nesteddict2yaml }}
  {% endif %}
  {% if security_definitions %}
  securitySchemes:
{{ security_definitions|nesteddict2yaml }}
  {% endif %}
paths: