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

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