summaryrefslogtreecommitdiff
path: root/json/remotes/draft2020-12/tree.json
blob: b07555fb333680cecfe0116311ae16dfa85840cc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{
    "description": "tree schema, extensible",
    "$schema": "https://json-schema.org/draft/2020-12/schema",
    "$id": "http://localhost:1234/draft2020-12/tree.json",
    "$dynamicAnchor": "node",

    "type": "object",
    "properties": {
        "data": true,
        "children": {
            "type": "array",
            "items": {
                "$dynamicRef": "#node"
            }
        }
    }
}