-
-
Notifications
You must be signed in to change notification settings - Fork 136
Closed
Labels
Description
The SchemaRegistry doesn't handle recursive references, for example the following schema crashes with a RecursionError: maximum recursion depth exceeded while calling a Python object
while trying to parse...
Tree:
properties:
children:
type: array
items:
$ref: '#/components/schemas/Tree'
It looks like support was added to handle recursive properties, but recursive array items is currently not supported.