This repository was archived by the owner on Mar 16, 2025. It is now read-only.
This repository was archived by the owner on Mar 16, 2025. It is now read-only.
Lost API #35
Closed
Description
If I use the following YAML:
openapi: 3.0.2
info:
title: name me
version: 1.0.0
paths:
/api/test1:
get:
summary: Test.
operationId: test_1
tags:
- test_api
responses:
200:
description: Test
/api/test2:
get:
summary: Test.
operationId: test_2
tags:
- test-api
responses:
200:
description: Test
The difference of the apis are the tag (test_api and test-api).
One api of the two is lost in the result. I had excepted, that I get...
- 2 Interfaces,
- 1 Interface with both apis or
- an error
But currently one api is lost.