{% 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 }} |
{{ param.description }} |
{{ param.schema.type }} |
{% else %}
{{ param }}
|
{% endif %}
{% endfor %}
{% endif %}
- Responses
- {{ method_data.responses}}
{% endfor %}
{% endfor %}