summaryrefslogtreecommitdiff
path: root/json/remotes/draft-next/tree.json
blob: cad332ad9a62f7a86287fbbe1d01b59867a628d0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{
    "$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"
            }
        }
    }
}