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
We found an issue, that json-schema-ref-parser is not able to reoslve circular dependencies. Here the example:
json-schema-ref-parser
{ "openapi": "3.1.0", "info": { "title": "", "version": "" }, "paths": {...}, "components": { "schemas": { "Item": { "type": "object", "additionalProperties": false, "properties": { "id": { "type": "string" }, "description": { "type": "string", "nullable": true }, "items": { "type": "array", "items": { "$ref": "#/components/schemas/Item" } } }, "example": { "id": "main-menu-id", "description": null, "items": [ { "id": "sub-menu-id", "description": null, "items": [] } ] } } } } }
I think the easiest would be to resolve them and let the user hit the issue if he builds up a memory leak with that.
Maybe I am also missing something. If yes, additional info would be awesome :)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
We found an issue, that
json-schema-ref-parser
is not able to reoslve circular dependencies.Here the example:
I think the easiest would be to resolve them and let the user hit the issue if he builds up a memory leak with that.
Maybe I am also missing something. If yes, additional info would be awesome :)
The text was updated successfully, but these errors were encountered: