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
The OpenAPI 3.0 spec allows to define enums: https://swagger.io/docs/specification/data-models/enums/
An example of such an enum in .json format looks like this:
"Propertyname": { "enum": [ "A", "B" ], "type": "string" },
Currently, if the input swagger.json contains such enums, the generation fails:
...\node_modules\@verizonconnect\ngx-form-generator\dist\generator-lib.js:52 const fields = Object.keys(definition.properties); ^ TypeError: Cannot convert undefined or null to object
It would be nice if the generator could handle .json files with such inputs (for example skip over them).
If you agree, I can maybe submit a PR.
The text was updated successfully, but these errors were encountered:
Yes, please submit a PR for this.
Sorry, something went wrong.
No branches or pull requests
The OpenAPI 3.0 spec allows to define enums: https://swagger.io/docs/specification/data-models/enums/
An example of such an enum in .json format looks like this:
"Propertyname": { "enum": [ "A", "B" ], "type": "string" },
Currently, if the input swagger.json contains such enums, the generation fails:
It would be nice if the generator could handle .json files with such inputs (for example skip over them).
If you agree, I can maybe submit a PR.
The text was updated successfully, but these errors were encountered: