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

Springdoc not producing correct OpenAPI specification for an Iterable of enums in Scala #2594

Open
nils1k opened this issue May 15, 2024 · 0 comments

Comments

@nils1k
Copy link

nils1k commented May 15, 2024

Describe the bug

When I have a field of type Iterable of an enum, e.g. a Set or a Seq, then springdoc is not generating the correct OpenAPI specification.

To Reproduce
Steps to reproduce the behavior:

What version of spring-boot you are using?
Version 3.2.5.

What modules and versions of springdoc-openapi are you using?
Version 2.5.0 and the org.springdoc:springdoc-openapi-starter-webmvc-ui module.

What is the actual and the expected result using OpenAPI Description (yml or json)?
Expected result:

"fareClasses": {
    "type": "array",
    "description": "FareClasses",
    "items": {
        "type": "string"
    }
}

Actual result:

"fareClasses": {
    "type": "array",
    "description": "FareClasses",
    "items": {
        "type": "string",
        "enum": [
            "FIRST_CLASS",
            "SECOND_CLASS",
            "THIRD_CLASS",
            "ECONOMY_CLASS"
        ]
    }
}

Please refer to the sample code that reproduces the issue.

Expected behavior

The fareClasses field should be an enum.

Screenshots
swagger-ui

Additional context
N/A

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

No branches or pull requests

1 participant