• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1{
2    "$schema": "https://json-schema.org/draft/next/schema",
3    "description": "tree schema, extensible",
4    "$id": "http://localhost:1234/draft-next/tree.json",
5    "$dynamicAnchor": "node",
6
7    "type": "object",
8    "properties": {
9        "data": true,
10        "children": {
11            "type": "array",
12            "items": {
13                "$dynamicRef": "#node"
14            }
15        }
16    }
17}
18