Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[BUG] model not generated when schema only referenced in parameters section #21006

Open
systemdnl opened this issue Apr 1, 2025 · 0 comments

Comments

@systemdnl
Copy link

systemdnl commented Apr 1, 2025

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
---
openapi: 3.0.0
info:
  title: Pet
  version: v1

paths:
  /cats:
    parameters:
      - name: name
        in: query
        schema:
          type: string
      - name: age
        in: query
        schema:
          $ref: "#/components/schemas/age"
    get:
      description: get found cats
      responses:
        '200':
          description: cats
          content:
            application/json:
              schema:
                type: string

components:
  schemas:
    age:
      enum: [ BABY, YOUNGSTER, OLDY ]
Generation Details

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 cats
      responses:
        '200':
          description: cats
          content:
            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.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant