Probably there are other cases as well
.get('/test3', (): string => {
return "hello"
})
.get('/test', (): string => {
return "hello"
})
First example, the schema.json will omit responses in api.json. Only operationId is set
"/test3": {
"get": {
"operationId": "getTest3"
}
},
Probably there are other cases as well
First example, the schema.json will omit responses in api.json. Only operationId is set