github.com/kaptinlin/jsonschema@v0.4.6/testdata/JSON-Schema-Test-Suite/remotes/draft2020-12/tree.json (about)

     1  {
     2      "description": "tree schema, extensible",
     3      "$schema": "https://json-schema.org/draft/2020-12/schema",
     4      "$id": "http://localhost:1234/draft2020-12/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  }