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 718f3d6a13
commit dbcc738bba

View File

@@ -0,0 +1,19 @@
{
"title": "{{ title }}",
"version": "{{ version }}",
"description": "{{ description }}",
"endpoints": [
{% for endpoint in endpoints %}
{
"path": "{{ endpoint.path }}",
"method": "{{ endpoint.method }}",
"summary": "{{ endpoint.summary }}",
"description": "{{ endpoint.description }}",
"tags": {{ endpoint.tags|tojson }},
"parameters": {{ endpoint.parameters|tojson }},
"requestBody": {{ endpoint.request_body|tojson }},
"responses": {{ endpoint.responses|tojson }}
}{% if not loop.last %},{% endif %}
{% endfor %}
]
}