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