firt of all, I want to apologyze for my english. It's not my fault but Spanish education system :D.
I've just started with a openapi's migration and I need your help. I like to use different paths which refer the same operationId. I explained it with an example:
paths:
"/my-path/my-resource":
get:
tags:
- my-api
operationId: getMyResource
responses:
...
[omitted]
...
"/another-path/another-resource":
get:
tags:
- my-api
operationId: getMyResource
responses:
...
[omitted]
...
Is it possible?
Thank very much for your time.
Your question is tagged
openapi-generator
, but appears to be a general question about the OpenAPI Specification.Operation IDs must be unique per operation. The Operation object section of the spec defines operationId as:
The bolded "case-sensitive" is taken directly from the spec, but emphasizes an excellent point about passing these specifications through tooling (which is why they must be unique). In openapi-generator, we use operationId to define method or function names in generated output. Many languages don't support overloaded methods and some don't even support non-standard casing (e.g. Go). Our tooling will convert operationId according to the output language, and is therefore more strict in this case than the specification. You can create a custom generator and extend the logic which processes operations if you absolutely need duplicate method names and if your target output supports it.