OpenAPITools / OpenAPITools/openapi-generator
[BUG] [Java/Spring] Inline ENUMs in parameters not generated and resolved as plain type
Open
Nobody has claimed this yet.
Issue: Bug
- Dominant language
- Java
- Stars
- 26.8k
- Forks
- 7.7k
- PR merge metrics
- PR metrics pending
Description
Bug Report Checklist
- Have you provided a full/minimal spec to reproduce the issue?
- Have you validated the input using an OpenAPI validator (example)?
- Have you tested with the latest master to confirm the issue still exists?
- Have you searched for related issues/PRs?
- What's the actual output vs expected output?
- [Optional] Sponsorship to speed up the bug fix or feature request (example)
Description
Enums defined inline in the parameters section of a spec is resolved as primitive type and not an enum.
openapi-generator version
6.6.0 , 7.3.0
OpenAPI declaration file content or url
"parameters": [
{
"name": "inline-enum",
"description": "There can be only some!",
"in": "query",
"schema": {
"type": "array",
"items": {
"type": "integer",
"format": "int32",
"enum": [
3,
4,
7,
9
],
"default": 4
}
}
}
]
Generation Details
java -jar openapi-generator-cli-7.3.0.jar generate -i openapi.json -g spring --library spring-boot -o ./tes
Contributor guide
First steps
- Read the whole issue, then the project's contributing guide.
- Comment on the issue to say you are picking it up — it saves two people doing the same work.
- Fork the repository and make your change on a branch.
- Open a pull request that references the issue number.
Research direction
Start with the supplied OpenAPI declaration and run the documented openapi-generator-cli command using the spring generator and spring-boot library. Compare the generated output with the expected enum behavior for the inline array parameter; done means the inline enum is generated and resolved as an enum rather than a plain primitive type.
Written by the indexing model from the issue text.
Assessment
- Tech stack
- java, openapi, spring, spring-boot
- Domain
- api, backend, tooling
- Issue type
- Bug
- Difficulty
- 4/5
- Estimated time
- 3-5 days
- Activity status
- Stale
- Clarity
- Mostly clear
- Newbie friendliness
- 35/100