{% for path, path_info in paths %}
                   {% for method, method_data in path_info %}
                   
                   
                       
                         
                             - OperationId
- {{ method_data.operationId }}
                             
- Tags
- {{ method_data.tags }}
                             
- Description
- {{ method_data.description }}{% if existsIn(method_data, "parameters") %}
- Parameters
- 
                                 
                                   
                                       
                                          | Name | Description | Type |  {% for param in method_data.parameters %}
                                     {% if existsIn(param, "name") %}
                                       | {{ param.name }} | {{ nl2br( param.description ) }} | {{ param.schema.type }} |  {% else %}
                                    {% for comp_param in component_parameter( param ) %}
                                      | {{ comp_param.name }} | {{ nl2br( comp_param.description ) }} | {{ comp_param.schema.type }} |  {% endfor %}
                                    {% endif %}
                                    {% endfor %}
 {% endif %}
- Responses
- {{ method_data.responses}}
 
                    
                   {% endfor %}
               {% endfor %}