You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Using the maven plugin to generate the code from the above definition
Steps to reproduce
When using the above yaml,
it leads to a warning:
[WARNING] #/components/schemas/age is not defined
the model file is written as an import in the pet.service.ts:
import{Age}from'../model/age';
but no model file for the enum age is generated
leading to compile time issues pointing to a referenced model that is not present.
The "workaround" is to adjust the definition slightly, ("type: string" to the "$ref: ..."):
get:
description: get found catsresponses:
'200':
description: catscontent:
application/json:
schema:
$ref: "#/components/schemas/age"
Which has the effect that the age enum is referenced now also from beyond the parameters schema, and then:
no warning is shown
the import statement is still there
the model file for age is generated
Then it works. But not in all cases in my definition the schema is referenced from other places then the parameters - so this workaround is not feasible in all cases.
I've seen this happening for generators typescript-angular as well as the jaxrs-spec - I've not tried out others - so I suspect it is not related to the generators themselves.
Related issues/PRs
Both #4710 and #1123 point to a probable cause where definitions are split over files, but I could also imagine that both of these issues are there because there is only a reference from the parameters, and not from anywhere else.
The text was updated successfully, but these errors were encountered:
When a schema is referenced only in the parameters section, that referenced model is not generated.
openapi-generator version
7.12.0
I am not sure it is a regression, I've not been following the releases closely.
OpenAPI declaration file content or url
Generation Details
Using the maven plugin to generate the code from the above definition
Steps to reproduce
When using the above yaml,
leading to compile time issues pointing to a referenced model that is not present.
The "workaround" is to adjust the definition slightly, ("type: string" to the "$ref: ..."):
Which has the effect that the age enum is referenced now also from beyond the parameters schema, and then:
Then it works. But not in all cases in my definition the schema is referenced from other places then the parameters - so this workaround is not feasible in all cases.
I've seen this happening for generators typescript-angular as well as the jaxrs-spec - I've not tried out others - so I suspect it is not related to the generators themselves.
Related issues/PRs
Both #4710 and #1123 point to a probable cause where definitions are split over files, but I could also imagine that both of these issues are there because there is only a reference from the parameters, and not from anywhere else.
The text was updated successfully, but these errors were encountered: