-
Notifications
You must be signed in to change notification settings - Fork 1
Open
Description
Suppose you get two POST paths that have the same request body:
"/api/v1/stations/autocomplete" : {
"post" : {
"operationId" : "findStations",
"requestBody" : {
"content" : {
"application/json" : {
"schema" : {
"$ref" : "#/components/schemas/AutocompleteRequest"
}
}
},
"required" : true
...
},&
"/api/v1/localities/autocomplete" : {
"post" : {
"operationId" : "findLocalities",
"requestBody" : {
"content" : {
"application/json" : {
"schema" : {
"$ref" : "#/components/schemas/AutocompleteRequest"
}
}
},
"required" : true
...
},than only one request class is generated... and the client does not compile
Metadata
Metadata
Assignees
Labels
No labels