github.com/kaptinlin/jsonschema@v0.4.6/testdata/JSON-Schema-Test-Suite/remotes/extendible-dynamic-ref.json (about)

     1  {
     2      "description": "extendible array",
     3      "$id": "http://localhost:1234/extendible-dynamic-ref.json",
     4      "type": "object",
     5      "properties": {
     6          "elements": {
     7              "type": "array",
     8              "items": {
     9                  "$dynamicRef": "#elements"
    10              }
    11          }
    12      },
    13      "required": ["elements"],
    14      "additionalProperties": false,
    15      "$defs": {
    16          "elements": {
    17              "$dynamicAnchor": "elements"
    18          }
    19      }
    20  }