Example treeNode.json using a self reference to build a tree:
{
"description": "Tree node",
"type": "object",
"properties": {
"children": {
"type": "array",
"items": {
"$ref": "#"
}
}
}
}
Attempting to generate the provided example returns HTTP ERROR: 500 java.lang.StackOverflowError.