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
I am using swagger-codegen-clie version 2.1.2. For a given json schema that contains nested array the model property is generated as follows
private List<List<Descriptor>> chains = new ArrayList<List>() ;
Above doesn't compile. The swagger spec is 2.0 and a sample snippet is as follows which represent the nested array
how should we get past this issue ?
generated json snippet from service end point using swagger spec 2.0
"chains": { "type": "array", "description": "Ordered descriptor chains", "items": { "type": "array", "items": { "$ref": "#/definitions/Descriptor" } } }
The text was updated successfully, but these errors were encountered:
issue is same as #989
Sorry, something went wrong.
Closing this as it's the same as #989 (closed)
No branches or pull requests
I am using swagger-codegen-clie version 2.1.2. For a given json schema that contains nested array the model property is generated as follows
Above doesn't compile. The swagger spec is 2.0 and a sample snippet is as follows which represent the nested array
how should we get past this issue ?
generated json snippet from service end point using swagger spec 2.0
The text was updated successfully, but these errors were encountered: