{
"$schema": "https://json-schema.org/draft/next/schema",
"description": "tree schema, extensible",
"$id": "http://localhost:1234/draft-next/tree.json",
"$dynamicAnchor": "node",
"type": "object",
"properties": {
"data": true,
"children": {
"type": "array",
"items": {
"$dynamicRef": "#node"
}
}
}
}