| { | |
| "description": "extendible array", | |
| "$schema": "https://json-schema.org/draft/2020-12/schema", | |
| "$id": "http://localhost:1234/draft2020-12/extendible-dynamic-ref.json", | |
| "type": "object", | |
| "properties": { | |
| "elements": { | |
| "type": "array", | |
| "items": { | |
| "$dynamicRef": "#elements" | |
| } | |
| } | |
| }, | |
| "required": ["elements"], | |
| "additionalProperties": false, | |
| "$defs": { | |
| "elements": { | |
| "$dynamicAnchor": "elements" | |
| } | |
| } | |
| } |