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
When I type the field name entries, I received a message saying: "Unable to render this definition".
paths: /pet: post: summary: "Add a new pet to the store" description: "" parameters: - in: "body" name: "body" schema: $ref: "#/definitions/Pet" responses: "405": description: "Invalid input" definitions: Pet: type: "object" properties: id: type: "integer" entries: type: "array" items: type: "string"
I need to write entries as a field since my API requires this name.
If I change entries to entry, it works as expected.
paths: /pet: post: summary: "Add a new pet to the store" description: "" parameters: - in: "body" name: "body" schema: $ref: "#/definitions/Pet" responses: "405": description: "Invalid input" definitions: Pet: type: "object" properties: id: type: "integer" entry: type: "array" items: type: "string"
Can someone help me with this problem, why it fails when I use entries as a field name?
The text was updated successfully, but these errors were encountered:
Thanks for the report! This issue is tracked in swagger-api/swagger-ui#6016 so I'll close this one as a duplicate.
As a workaround please use editor v. 3.8.2, you can download it from the Releases page.
Sorry, something went wrong.
No branches or pull requests
When I type the field name entries, I received a message saying: "Unable to render this definition".
I need to write entries as a field since my API requires this name.
If I change entries to entry, it works as expected.
Can someone help me with this problem, why it fails when I use entries as a field name?
The text was updated successfully, but these errors were encountered: