Initial upload with CI/CD workflow
Some checks failed
CI / test (push) Has been cancelled

This commit is contained in:
2026-02-01 16:20:33 +00:00
parent 03a02de145
commit 718f3d6a13

View File

@@ -0,0 +1,53 @@
# {{ title }}
## API Reference
**Version:** {{ version }}
---
## Endpoints
{% for endpoint in endpoints %}
### {{ endpoint.method }} {{ endpoint.path }}
{% if endpoint.deprecated %}
> **Deprecated**
{% endif %}{% if endpoint.summary %}
**{{ endpoint.summary }}**
{% endif %}{% if endpoint.description %}
{{ endpoint.description }}
{% endif %}{% if endpoint.tags %}
**Tags:** {% for tag in endpoint.tags %}`{{ tag }}` {% endfor %}
{% endif %}
#### Parameters
| Name | Type | Location | Required | Description |
|------|------|----------|----------|-------------|
{% for param in endpoint.parameters %}
| {{ param.name }} | {{ param.schema.type if param.schema else 'any' }} | {{ param.in }} | {{ 'Yes' if param.required else 'No' }} | {{ param.description or '-' }} |
{% endfor %}
#### Responses
| Status | Description |
|--------|-------------|
{% for status, response in endpoint.responses.items() %}
| {{ status }} | {{ response.description }} |
{% endfor %}
{% if endpoint.request_body %}
#### Request Body
```json
{{ endpoint.request_body|tojson }}
```
{% endif %}
---
{% endfor %}