We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Currently no more sets are generated if uniqueItems=true is set.
7.4.0/latest
If you post the code inline, please wrap it with
stringSet: type: array uniqueItems: true items: type: string stringDefaultSet: type: array uniqueItems: true default: - A - B items: type: string stringEmptyDefaultSet: type: array uniqueItems: true default: [] items: type: string
Out put is
@Valid private List<String> stringSet = new ArrayList<>(); @Valid private List<String> stringDefaultSet = new ArrayList<>(Arrays.asList("A", "B")); @Valid private List<String> stringEmptyDefaultSet = new ArrayList<>();
Spring Boot Cloud
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Bug Report Checklist
Description
Currently no more sets are generated if uniqueItems=true is set.
openapi-generator version
7.4.0/latest
OpenAPI declaration file content or url
If you post the code inline, please wrap it with
Out put is
Generation Details
Spring Boot Cloud
Steps to reproduce
The text was updated successfully, but these errors were encountered: