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
stack overflow
$ git show commit f49845a5ec744073f7e7cc7e76117fb436147b4a (HEAD -> main, origin/main, origin/HEAD) Merge: 1ac937e afb6949 Author: getsentry-bot <[email protected]> Date: Tue Jun 6 10:15:49 2023 +0000 Merge branch 'release/0.1.7' $ cat schema.json { "$ref": "#/definitions/recursive_array", "definitions": { "recursive_array": { "type": "array", "items": { "$ref": "#/definitions/recursive_array" } } } } $ cargo run --quiet --features build-binary -- schema.json schema.json thread 'main' has overflowed its stack fatal runtime error: stack overflow Aborted
This precludes checking e.g ASTs which look like this:
{ "$ref": "#/definitions/node", "definitions" { "node": { "type": "object", "properties": { "name:": { "type": "string" }, "children": { "type": "array", "items": "#/definitions/node" }, } "required": ["name", "children"] } }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
This precludes checking e.g ASTs which look like this:
The text was updated successfully, but these errors were encountered: